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

docs: update wlan settings in Raspberry PiOS documentation #5050

Merged
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
Binary file added docs/getting-started/images/raspi-config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 14 additions & 9 deletions docs/getting-started/raspberry-pi-raspberryos-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,29 +74,34 @@ following steps:
sudo apt-get install ./kura_<version>_raspberry-pi_installer.deb
```

6. It could happen that `wlan` interface is "soft blocked" by default and needs to be enabled. To see if it is blocked run:
6. For a correct configuration of the Wlan interface, it is necessary to set the **Locale** and the **WLAN Country** through the `raspi-config` command:

```
rfkill list
sudo raspi-config
```

and unblock it with:
![raspi-config menu](./images/raspi-config.png)

```
sudo rfkill unblock wlan
```
From the raspi-config main menu select `Localisation Options`:

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra newline

Suggested change

![raspi-config menu](./images/raspi-localisation-menu.png)

Then modify the **Locale** and **WLAN Country** with with the proper settings for your location. For example, an user located in Italy could set the values as the ones in the table:

7. Set the right Wi-Fi regulatory domain based on your current world region following the instructions [here](https://www.raspberrypi.org/documentation/computers/configuration.html#using-the-desktop). In case of problems, you could try to edit the `/etc/default/crda` adding the [ISO 3166-1 alpha-2](https://it.wikipedia.org/wiki/ISO_3166-1_alpha-2) code of your region
| Setting | Value |
|----------------- |------------------- |
| L1 Locale | it_IT.UTF-8 UTF-8 |
| L4 WLAN Country | IT Italy |

8. Reboot the Raspberry Pi with:
7. Reboot the Raspberry Pi with:

```
sudo reboot
```

Kura starts on the target platform after reboot.

9. Kura setups a local web ui that is available using a browser via:
8. Kura setups a local web ui that is available using a browser via:

```
https://<device-ip>
Expand Down
Loading