Skip to content

Instantly share code, notes, and snippets.

@chartinger
Last active October 2, 2020 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chartinger/d6bb4fb71208d7a72ea48996a8612d2a to your computer and use it in GitHub Desktop.
Save chartinger/d6bb4fb71208d7a72ea48996a8612d2a to your computer and use it in GitHub Desktop.
Raspberry Install

Install latest image onto sd card with edger

in the boot mount add file ssh and wpa_supplicant.conf

passwd
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install htop joe
sudo apt-get install mosquitto
sudo raspi-config

sudo apt-get install samba
sudo smbpasswd -a pi

# edit /etc/samba/smb.conf and set  [homes] readonly to no

Taken from https://github.com/nodesource/distributions#debinstall

curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
ethtool -s eth0 speed 100 duplex full
country=AT
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="your_real_wifi_ssid"
scan_ssid=1
psk="your_real_password"
key_mgmt=WPA-PSK
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment