Dec 7
Running Boxee on Ubuntu
First, I know I’m going to hell for using Ubuntu. But, I’m too lazy to compile xbmc and boxee on Fedora. So, now that it’s out of the way. Here’s the step-by-step:
- Install Ubuntu 10.4
- Add the extra boxee repo based on the instructions on boxee.tv
- Install mingetty and rcconf
apt-get install mingetty rcconf
- Disable gdm with rcconf
- Add a boxee user with and add them to the “admin” and “audio” group
useradd -G admin,audio -d /home/boxee boxee
- Add a .bashrc to /home/boxee
case "`tty`" in /dev/tty1) startx esac
- Add .xinitrc to /home/boxee
#!/bin/bash while [ 1 ] do exec /opt/boxee/Boxee --standalone done
- Make it executable
chmod a+x .xinitrc
- Edit line in /etc/event.d/tty1
#exec /sbin/getty 38400 tty1 exec /sbin/mingetty --autologin boxee tty1
- Reboot and pray
No Comments
Leave a comment