1. On first boot, let it into XBMC, go into programs, then Network Manager and set up your networking as appropriate
2. SSH onto the device, logging in as root, password joggler
3. edit /etc/resolv.conf to point to the DNS server you use (or leave along where your router is 192.168.1.1)
Code: Select all
nano /etc/resolv.conf
forwards (not yet valid because date will be some when in 2005)
Code: Select all
reboot now
Code: Select all
ntpdate 192.168.1.1
Code: Select all
apt-get update && apt-get upgrade && apt-get dist-upgrade
Code: Select all
apt-get install python-software-properties
Code: Select all
apt-add-repository ppa:plexapp/plexht
apt-add-repository ppa:jon-severinsson/ffmpeg
apt-add-repository ppa:pulse-eight/libcec
apt-add-repository ppa:team-xbmc/xbmc-nightly
Code: Select all
apt-get update
8. Install Plex
Code: Select all
apt-get install plexhometheater
Code: Select all
nano /etc/rc.local
Code: Select all
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then
dpkg-reconfigure openssh-server
fi
ifconfig wlan0 up
dhclient eth0 > /dev/null 2>&1 &
export XBMC_HOME=/opt/plexhometheater/share/XBMC
xinit /opt/plexhometheater/bin/plexhometheater --standalone
clear
exit 0
Code: Select all
reboot now