Difference between revisions of "XBMC on Raspbian"

From Teknologisk videncenter
Jump to: navigation, search
m
m
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
rpi-update
 
rpi-update
 
reboot
 
reboot
 +
</source>
 +
Enable IPv6 on the PI
 +
<source lang=cli>
 +
# enable it on the fly
 +
modprobe ipv6
 +
#Enable it on the next reboot
 +
echo ipv6 >> /etc/modules
 +
</source>
 +
If you overclock then use this tool to watch the temperature<ref>http://www.elinux.org/RPI_vcgencmd_usage</ref>:
 +
<source lang=bash>
 +
pi@raspberrypi ~ $ /opt/vc/bin/vcgencmd measure_temp
 +
temp=47.6'C
 
</source>
 
</source>
 
Now follow [http://www.raspbian.org/RaspbianXBMC this] link from step 4.
 
Now follow [http://www.raspbian.org/RaspbianXBMC this] link from step 4.

Latest revision as of 20:06, 21 November 2012

Download and install the lastest raspbian to a SD card and boot it on the Raspberry.
Configure it without Window manager, with SSH, 16 MB GPU RAM Overclocking at 950 and the correct timezone and expand the rootfs. Install the rpi-update to update the firmware and so on

apt-get update
apt-get install git-core
wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update
rpi-update
reboot

Enable IPv6 on the PI

# enable it on the fly
modprobe ipv6
#Enable it on the next reboot
echo ipv6 >> /etc/modules

If you overclock then use this tool to watch the temperature[1]:

pi@raspberrypi ~ $ /opt/vc/bin/vcgencmd measure_temp
temp=47.6'C
Now follow this link from step 4.