Skip to content

Instantly share code, notes, and snippets.

@solusipse
Created May 3, 2014 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solusipse/cc4b723ce51db8e8250e to your computer and use it in GitHub Desktop.
Save solusipse/cc4b723ce51db8e8250e to your computer and use it in GitHub Desktop.
Arch Linux on Raspberry Pi: RPi as xbmc station

#Arch Linux on Raspberry Pi: RPi as xbmc station#

Let's start from creating xbmc user:

useradd -m -s /bin/bash xbmc

Install necessary packages:

pacman -Syu xorg xorg-xinit xbmc slim

Create .xinitrc file as xbmc user:

su xbmc
echo "exec xbmc" > ~/.xinitrc

Configure SLiM:

nano -c /etc/slim.conf

Set such settings on these lines:

69: default_user  xbmc
77: auto_login    yes

Enable slim service:

systemctl enable slim

After reboot, you should see xbmc screen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment