Skip to content

Latest commit

 

History

History
58 lines (45 loc) · 969 Bytes

README.md

File metadata and controls

58 lines (45 loc) · 969 Bytes

Initial Pi Setup

Starting from a raspian-lite (buster) image

touch boot/ssh
cp conf/wpa_supplicant.conf boot

Apply updates

sudo apt update
sudo apt full-upgrade
sudo apt install tmux git

Create your user

sudo adduser jacob
sudo usermod -a -G sudo jacob
sudo usermod -a -G gpio jacob
sudo su - jacob
mkdir ~/.ssh
curl "https://github.com/jsayles.keys" -s -o ~/.ssh/authorized_keys

Run the pitools install script

git clone https://github.com/jsayles/pitools.git
cd pitools
sudo ./install.sh

Other Userful Commands

Set Timezone

sudo timedatectl set-timezone America/Vancouver

Disable Wifi Power Save

sudo iw dev wlan0 get power_save
sudo iw dev wlan0 set power_save off

Enable Remote Desktop

sudo apt-get -y install xrdp
sudo systemctl enable xrdp

VPN Setup