note to self: Raspbian Setup
This is mostly a note to myself to remind me how to setup a new raspbian image.
The initial setup has a number of challenges that this write-up addresses:
- Locale and Keyboard as GB
- Setting up WiFi
- Setting up static IP
- General Reminders
Locale and Keyboard
Update Locale to en.US UTF-8.
sudo dpkg-reconfigure locales sudo dpkg-reconfigure keyboard-configuration sudo reboot
If keyboard is still not working, try manually editing /etc/default/keyboard and updating XKBLAYOUT to "us".
Wifi
Add to /etc/wpa_supplicant/wpa_supplicant.conf:
network={ ssid="myWifiSsid" psk="myWifiPassword" }
Then restart network:
sudo /etc/init.d/networking restart
Other Wifi notes
Setting up Static IP.
Setting pi as Access Point
General reminders
sudo apt-get update sudo apt-get upgrade
0 Comments:
Post a Comment
<< Home