Raspberry Pi – system update
After I get my Raspberry Pi working with internet connection and a working SSH connection its time to optimize the base configuration of the system. The first thing for me is to change the keyboard layout to German.
Keyboard layout
The keyboard layout is default English (GB). I want to change this to German (DE). For this I change the following file:
sudo nano /etc/default/keyboard
We have to change the value of ‚XKBLAYOUT‘. Instead of ‚GB‘ we set ‚DE‘.
System update
The system update has two steps. First, we will update our sources list:
sudo apt-get update
As you can see, for the first time this will last some time. After some time, we get back our command line prompt:
sudo apt-get dist-upgrade
Now you should see a list with all available updates. With ‚Y‘ you can start this update. This may take some time.
Memory
This last thing is to check our free memory. The following command will show you the partitions, maximal space and used space:
df -h
Here you should check if the system uses the whole space of your SD card. For me I have 30 GB space on a 32 GB SD card. If you only have 2 GB space, but a larger SD card, you should change the partitions. This can be done in raspi-config.
sudo raspi-config
You can find it under ‚expand_rootfs‘. This will set the trigger to do the change during next reboot.
The change of the keyboard layout can also be done here.