Raspberry Pi/Installing
From r00tedvw.com wiki
(Difference between revisions)
(Created page with "====Download Wheezy==== http://www.raspberrypi.org/downloads ====Verify SHA1==== http://support.apple.com/kb/ht1652 openssl sha1 [full path to file] e.g. openssl sha1 /User...") |
|||
| Line 22: | Line 22: | ||
sudo diskutil eject <disk# from diskutil> | sudo diskutil eject <disk# from diskutil> | ||
e.g. sudo diskutil eject /dev/rdisk3 | e.g. sudo diskutil eject /dev/rdisk3 | ||
| + | |||
| + | ====Getting wireless card to work on WEP==== | ||
| + | ~$ nano /etc/network/interfaces | ||
| + | # The loopback network interface< | ||
| + | auto lo | ||
| + | iface lo inet loopback | ||
| + | |||
| + | # The primary (wired) network interface | ||
| + | iface eth0 inet dhcp | ||
| + | |||
| + | # The wifi (wireless) network interface | ||
| + | auto wlan0 | ||
| + | allow-hotplug wlan0 | ||
| + | iface wlan0 inet dhcp | ||
| + | wireless-essid YOUR_SSID | ||
| + | wireless-key YOUR_WEP_KEY | ||
Revision as of 15:30, 27 April 2014
Contents |
Download Wheezy
http://www.raspberrypi.org/downloads
Verify SHA1
http://support.apple.com/kb/ht1652
openssl sha1 [full path to file] e.g. openssl sha1 /Users/myaccount/Documents/1024SecUpd2003-03-03.dmg
Installing Image
http://elinux.org/RPi_Easy_SD_Card_Setup#Using_command_line_tools_.281.29
1) identify the disk (not partition) of your SD card. e.g. disk4 (not disk4s1)
diskutil list
2) unmount SD Card
diskutil unmountDisk /dev/<disk# from diskutil> e.g. diskutil unmountDisk /dev/disk4
3) copy image onto SD Card
sudo dd bs=1m if=<your image file>.img of=/dev/<disk# from diskutil> e.g. sudo dd bs=1m if=2012-12-16-wheezy-raspbian.img of=/dev/disk4
3b) to check status of copy
CRTL+T
4) unmount SD Card
sudo diskutil eject <disk# from diskutil> e.g. sudo diskutil eject /dev/rdisk3
Getting wireless card to work on WEP
~$ nano /etc/network/interfaces
# The loopback network interface<
auto lo
iface lo inet loopback
# The primary (wired) network interface
iface eth0 inet dhcp
# The wifi (wireless) network interface
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wireless-essid YOUR_SSID
wireless-key YOUR_WEP_KEY