Setting Raspberry Pi for a Static IP

Posted by Quinn Madson | Posted in | Posted on 4:20 PM

0

sudo -s

cd /etc/network
cp interfaces interfaces.bak
nano interfaces

auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

reboot

Mounting Raspberry Pi SD Card on a Mac (with Write Access)

Posted by Quinn Madson | Posted in | Posted on 3:50 PM

0

Download and install: Fuse for OS X (Make sure to check: MacFUSE Compatibility Layer)
Download and install: fuse-ext2
Open Terminal
Type: sudo nano -c /System/Library/Filesystems/fuse-ext2.fs/fuse-ext2.util
Press: [CONTROL W]
Type in: function mount [ENTER]
Arrow down to:

OPTIONS="auto_xattr,defer_permissions"
Change it to:
OPTIONS="auto_xattr,defer_permissions,rw+" 
Press [CONTROL X]
Press [Y]
Press [ENTER]
Plug in the SD Card!