I would say I agree. After doing the re-install, then trying configuration again, nothing happens.
could you flash a spare sd card and try on that?
Maundy key word layout issue or you are not used to the uconsole keyboard
Hello. I had the same issue and was able to correct it using these steps and the build from Sept 11th. Forgive the AI copypasta.
First I updated the system locale:
1. Edit /etc/locale.gen:
- Open the
/etc/locale.genfile with a text editor as root:
Code
sudo nano /etc/locale.gen
-
Uncomment the line corresponding to the desired locale (e.g.,
en_US.UTF-8 UTF-8oren_GB.UTF-8 UTF-8) by removing the#symbol at the beginning of the line. -
Save the file and exit the editor.
2. Generate the locale:
- Run the
locale-gencommand to generate the selected locale:
Code
sudo locale-gen
Alternatively, you can specify the locale directly:
Code
sudo locale-gen en_US.UTF-8 UTF-8
or
Code
sudo locale-gen en_GB.UTF-8 UTF-8
3. Set the system locale:
Edit the /etc/default/locale file.
Code
sudo nano /etc/default/locale
- Ensure the file contains the following lines, replacing
en_US.UTF-8with your chosen locale:
Code
LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
LANGUAGE=en_US.UTF-8
Save the file and exit.
4. Reboot the system:
- Reboot your Raspberry Pi for the changes to take effect:
Code
sudo reboot
Then I updated the keyboard layout (THIS DID NOT WORK ON THE PREVIOUS PARROT IMAGE)
-
Open a terminal.
-
Run the following command with
sudoprivileges to start the configuration utility:sh
sudo dpkg-reconfigure keyboard-configurationUse code with caution.
-
I had to choose OTHER > US > US Default > And no special key assignments.
-
A dialog-based interface will appear. Follow the on-screen prompts to select your keyboard model, country of origin, and desired layout.
-
Once you have made your selections, you may need to reboot your system for the changes to take effect.