- These commands and actions need to be performed from an account that has administrator privileges.
- Download the image from a mirror
- http://www.raspbmc.com/download/
- Verify if the the hash key is the same (optional), in the terminal run:
shasum ~/installer.img.gz
- Extract the image:
- gunzip ~/installer.img.gz
- (or: just double click the zip, it will extract automatically)
- From the terminal run df -h
- Connect the sdcard reader with the sdcard inside
- Run df -h again and look for the new device that wasn’t listed last time. Record the device name of the filesystem’s partition, e.g. /dev/disk1s1
- Unmount the partition so that you will be allowed to overwrite the disk:
- sudo diskutil unmount /dev/disk1s1
- (or: open Disk Utility and unmount the partition of the sdcard (do not eject it, or you have to reconnect it)
- Using the device name of the partition work out the raw device name for the entire disk, by omitting the final “s1” and replacing “disk” with “rdisk” (this is very important: you will lose all data on the hard drive on your computer if you get the wrong device name). Make sure the device name is the name of the whole SD card as described above, not just a partition of it (for example, rdisk3, not rdisk3s1. Similarly you might have another SD drive name/number like rdisk2 or rdisk4, etc. — recheck by using the df -h command both before & after you insert your SD card reader into your Mac if you have any doubts!):
- e.g. /dev/disk1s1 => /dev/rdisk1
- In the terminal write the image to the card with this command, using the raw disk device name from above (read carefully the above step, to be sure you use the correct rdisk# here!):
- sudo dd bs=1m if=~/installer.img of=/dev/rdisk1
- if the above command report an error(dd: bs: illegal numeric value), please change bs=1M to bs=1m
- (note that dd will not feedback any information until there is an error or it is finished, information will show and disk will re-mount when complete. However if you are curious as to the progresss – ctrl-T (SIGINFO, the status argument of your tty) will display some en-route statistics).
- After the dd command finishes, eject the card:
- sudo diskutil eject /dev/rdisk1
- (or: open Disk Utility and eject the sdcard)
- Insert it in the raspberry pi, and boot to xbmc
- when booted go to settings and add-ons
- add network-manager
- configure on network manager and select your wifi and insert wep / wpa key
- pull the network cable out and enjoy wireless network
- i then installed xbmc remote on my android and iPhone
- went to system info on the xvmc and network
- added my xvmc host by mac address so it locks to the mac instead of the IP address which will change using DHCP.
This works with the belkin n300 which uses the 8192cu module this is included in raspbian version 4 and works flawlessly.