Read the section here
Note: -y
to answer "yes" to installing
sudo apt-get -y install git
Note: We only want a shallow clone (bare minimal)
cd ~
git clone --depth 1 https://github.com/prageeth/rpi-setup.git
cd rpi-setup
The following script installs all the necessary frameworks:
- Node (v10.14.1) and NPM
-- To install a different version, change in
./init/install-node.sh
. Use the official nodejs distribution list
./init/run.sh
sudo shutdown -h now
sudo reboot
sudo raspi-config
You can the default keyboard layout. You could either use the raspi-config
(not my preference if you want to simply change layout from gb
to us
), I'd rather prefer:
sudo nano /etc/default/keyboard
Then change the default layout by editing the line:
XKBLAYOUT="us"
username: pi
password: raspberry
NOTE: Using the raspi-config
, make sure you change the default password.
Use the raspi-config
and follow:
5 Interfacing Options > P2 SSH > YES
Use the raspi-config
and follow:
3 Boot Options > Desktop / CLI
More info in docs
More info in docs