Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command for adding a new user fixed #940

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/releases/v8_21.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The **August 26th, 2023** release of **DietPi v8.21** comes with a new image for

- [**Orange Pi 5**](../../hardware/#orange-pi-series), [**ROCK 5B**](../../hardware/#radxa) :octicons-arrow-right-16: An update of the kernel to Linux 5.10.160 will be applied automatically as part of the DietPi update.
- [**Orange Pi 5**](../../hardware/#orange-pi-series) :octicons-arrow-right-16: An update of the U-Boot package will be applied. When flashing it to SPI via `dietpi-config` > "Advanced Options" > "Update SPI bootloader", it enables booting DietPi via NVMe and USB.
- **RK33xx SBCs** :octicons-arrow-right-16: All SBCs with RK33xx SoC and Armbian's `linux-image-current-rockchip64` kernel package will receive a major kernel upgrade to Linux 6.1.46, including lots of fixes and enhancements that have been applied upstream and by Armbian in the meantime. Since Armbian's APT repository has not seen any update since February 2023, we started compiling and hosting own builds. An own APT repository is being worked on to better distribute our own package builds. Until then, headers for this kernel package can be downloaded at: <https://dietpi.com/downloads/binaries/linux-headers-current-rockchip64.deb>
- **RK33xx SBCs** :octicons-arrow-right-16: All SBCs with RK33xx SoC and Armbian's `linux-image-current-rockchip64` kernel package will receive a major kernel upgrade to Linux 6.1.46, including lots of fixes and enhancements that have been applied upstream and by Armbian in the meantime. Since Armbian's APT repository has not seen any update since February 2023, we started compiling and hosting own builds. An own APT repository is being worked on to better distribute our own package builds.
- [**DietPi-Tools**](../../dietpi_tools/) | [**DietPi-Config**](../../dietpi_tools/system_configuration/#dietpi-config) | [**WiFi HotSpot**](../../software/advanced_networking/#wifi-hotspot) :octicons-arrow-right-16: When applying settings, manually changed IP addresses in `/etc/network/interfaces` will now be preserved. Additionally, it is now assured that changing interface names, e.g. due to an additionally attached WiFi adapter, are now aligned across `/etc/network/interfaces`, hostapd and DHCP server configs.
- [**DietPi-Tools**](../../dietpi_tools/) | [**DietPi-Config**](../../dietpi_tools/system_configuration/#dietpi-config) | [**WiFi HotSpot**](../../software/advanced_networking/#wifi-hotspot) :octicons-arrow-right-16: Toggles for enabling 802.11ac/WiFi 5, 802.11ax/WiFi 6 (Bookworm only) and 5 GHz WiFi respectively have been added to the menu.
- [**DietPi-Software**](../../dietpi_tools/software_installation/#dietpi-software) | [**WiFi HotSpot**](../../software/advanced_networking/#wifi-hotspot) :octicons-arrow-right-16: We added new `dietpi.txt` settings `SOFTWARE_WIFI_HOTSPOT_WIFI4`, `SOFTWARE_WIFI_HOTSPOT_WIFI5`, `SOFTWARE_WIFI_HOTSPOT_WIFI6` and `SOFTWARE_WIFI_HOTSPOT_5G` to have 802.11n/WiFi 4, 802.11ac/WiFi 5, 802.11ax/WiFi 6 (Bookworm only) and 5 GHz support respectively enabled on install.
Expand Down
4 changes: 2 additions & 2 deletions docs/software/hardware_projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ MQTT provides a lightweight method of carrying out messaging using a publish/sub
- Config file: `/etc/mosquitto/mosquitto.conf`
- Password file: `/etc/mosquitto/passwd`

To change the default authentication password for the `dietpi` user, run the following command:
To change the default authentication password for the `mosquitto` user, run the following command:

```sh
mosquitto_passwd /etc/mosquitto/passwd mosquitto
Expand All @@ -307,7 +307,7 @@ MQTT provides a lightweight method of carrying out messaging using a publish/sub
To create a new authentication user, run the following command:

```sh
mosquitto_passwd /etc/mosquitto/passwd
mosquitto_passwd /etc/mosquitto/passwd <new_user_name>
```

After changes have been done, you need to restart the service:
Expand Down