Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 917 Bytes

raspberrypi.md

File metadata and controls

37 lines (26 loc) · 917 Bytes

Raspberry Pi

local problem

boot - Unable to reconfigure locale in raspberry pi - Raspberry Pi Stack Exchange

  • Edit /etc/locale.gen and uncomment the line with en_US.UTF-8 e.g. sudo nano /etc/locale.gen uncomment line by deleting leading #
  • Run sudo locale-gen en_US.UTF-8
  • Run sudo update-locale en_US.UTF-8
$ sudo apt-get install pciutils
$ sudo apt-get install libftdi-dev
$ sudo apt-get install libusb-dev
$ sudo apt-get install libpci-dev
$ sudo apt-get install libusb-1.0
$ git clone https://github.com/stefanct/flashrom.git
$ cd flashrom
$ make
$ sudo make install

WIFI configuration

$ sudo vi /etc/wpa_supplicant/wpa_supplicant.conf

network={
    ssid="The_ESSID_from_earlier"
    psk="Your_wifi_password"
}