Raspberry Pi
Download:
https://downloads.raspberrypi.org/raspbian_lite_latest
Format
- Open Disk Utility App
- Delete and format with
FAT
- deactivate disk
Copy Image to SSD
- Find disk
diskutil list
- copy
sudo dd bs=1m if=/Users/mariusprivat/Downloads/2018-11-13-raspbian-stretch-lite.img of=/dev/rdisk3 conv=sync
- status
control
+T
Duration: ca. 1866465280 bytes in 296 secs (5min)
Configuration
WiFi
Place a file called wpa_supplicant.conf
country=DE
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="yourssid"
psk="yourpassword"
key_mgmt=WPA-PSK
}
SSH
place a file with name ssh
into the root folder
NodeJS
sudo apt-get update
sudo apt-get dist-upgrade
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
node -v