- Raspberry Pi 3
- LAN Cable (tested on CAT6 cable)
- USB Cable (2.x)
- SD Card (class 10, >8gb)
- Mac OS X (tested on Sierra and above)
$ diskutil list
$ diskutil unmount /dev/disk#
$ sudo dd bs=1M if=/path/to/raspbian-jessie.img of=/dev/disk#
-
touch /Volumes/boot/ssh
-
Raspbian will look for a file named
ssh
on the boot partition at startup and will enable sshd
- Plug in the USB cable
- Insert the Micro SD card
- Connect an ethernet cable to your pi and the other end to your router and ensure the lights on the port are blinking
#
# find out the assigned IP
#
$ ifconfig | grep "inet "
$ nmap -n -sP 192.168.x.255/24
#
# password is raspberry
#
$ ssh [email protected]
#
# Select 5 - P2 - Yes
#
$ sudo raspi-config
#
# Select 1 - Ok
#
$ sudo raspi-config
- Edit
/etc/wpa_supplicant/wpa_supplicant.conf
and add your SSID / Password
country=GB
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="coffeegoat"
psk="garbage"
key_mgmt=WPA-PSK
}