Archive:Install Kodi for Linux on Arch Linux: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Jskube84
>Jskube84
Line 193: Line 193:




== Install XBMC ==
== Installing XBMC ==


We are going to use the SVN version of XBMC because the binary version in AUR has VDPAU disabled and there is no fun in that.  We are going to look at two ways.  The svn build through AUR and manually.  A few people have had trouble with the AUR build so if one doesnt work try the other.
We are going to use the SVN version of XBMC because the binary version in AUR has VDPAU disabled and there is no fun in that.  We are going to look at two ways.  The svn build through AUR and manually.  A few people have had trouble with the AUR build so if one doesnt work try the other.

Revision as of 03:17, 31 May 2009

DISCLAIMER! This is an unofficial guide. Unofficial as in the XBMC Team will not support this type of install, answer your questions, assist you with problems or anything along those lines. Unofficial means just that, this is not the official install method for XBMC and is not recommend, supported or endorsed by the XBMC Team. This guide makes no promises that this will work with your system, that it will not break your computer, and that it will not steal your girlfriend. If you are comfortable with all of this then feel free to continue!

This guide was written with the intent of helping those who would like to try a different distribution of Linux. Though there is nothing wrong with Ubuntu Linux some just prefer a choice. The minimal install and rolling release style of Arch Linux compared to Ubuntu is seen as a benefit to some users. Instead of having to deal with the lag of updating packages in some cases on Ubuntu, you can always have access to the latest and greatest. In some ways this is bad and others it is good. As with anything its all about preference. Though with this flexibility you lose some ease of use. If you are not comfortable with the command line and manually editing a config file with vi or nano THIS IS NOT THE GUIDE FOR YOU. This guide assumes you have some basic knowledge of Linux.

Last, if you have questions or problems SEARCH, SEARCH, and SEARCH SOME MORE. The wiki and forums for XBMC and Arch Linux are full of knowledge. If you have a question or problem chances are someone else has had the same one. So please search before you ask a question.

Introduction

This guide is intended to be a step by step guide to getting XBMC up and running on a dedicated PC running Arch Linux. I will walk you through setting up all the hardware that is needed to get you the ultimate media p.c. experience. Over time I hope to have people contribute to this guide so it will cover a wider array of hardware. This may seem like a long guide but just stick with it and you will come out on top.

Please note:

  • The guide is for using XBMC on a dedicated HTPC, so there is no window manager and/ or any additional applications installed.
  • You need minimum 1GB size flash drive or blank CD to create the install media.
  • Since you will use this PC only as a media center. I assume that you use digital audio pass-through (S/PDIF or HDMI) to a receiver/amplifier with built-in Dolby Digital (AC3) decoder.
  • Please also think twice, if you want to use any of the below sections in it's own, without following the guide step-by-step from the begining

You will get:

  • A dedicated HTPC which auto-boots directly to XBMC Media Center.
  • Latest XBMC SVN version.
  • Upgraded ALSA (audio) driver.
  • Up to date VIDEO (graphics) driver.
  • LIRC (Microsoft MCE Remote will work out-of-the-box, however if you have any other remotes and/or LCD displays then you are on your own to solve the individual LIRC and LCDproc issues).

Install Arch

Please reference the Official Arch Linux Install Guide for how to install Arch Linux. A minimal FTP install is recommend.

Installing Software

Now we need to go through and install XBMC and all other supporting pieces of software. Now that we have booted into our new Arch install you must be asking now what? Ok first lets setup a user account.

Installing SSH

First we should install SSH. Once this is installed you can put your keyboard and monitor away and just remote into your media pc to do what you need to do.

# pacman -S openssh

Now we need to edit /etc/rc.conf and add sshd to our daemons list so ssh starts on boot. If you dont want to reboot just run the following:

# /etc/rc.d/sshd start


Adding the XBMC user

This is the user we will be running xbmc under. You can run xbmc under root but that is a very bad idea. To create the user is simple. Well create the user xbmc and add that user to the needed groups.

# useradd -m -G users,audio,optical,disk,storage,video,power -s /bin/bash xbmc

Now set the password of the user xbmc.

# passwd xbmc


Installing Yaourt

Yaourt is a very handy program. This is a repository tool that wraps around pacman that allows you to easily install packages from the AUR, or what is know as the user repository of packages for Arch. I guess these packages are close to what user repositories are on Debian/Ubuntu.

Add the following lines to /etc/pacman.conf

[archlinuxfr]
 Server = http://repo.archlinux.fr/i686

Now sync and install

# pacman -Sy yaourt


Installing NVIDIA Beta Drivers

There are a few ways we can install the beta NVidia drivers on Arch. You can use the official package in the AUR or if you just feel like using the official install package from NVidia you can do that as well.

AUR NVidia Drivers

You can use yaourt to install the latest beta drivers which are available from the AUR:

yaourt -Sy nvidia-utils-beta nvidia-beta

That way you can assure that there are no leftovers if you intend to update or remove the driver.

NVidia Installer

Not recommended, but possible is an installation directly from the nvidia driver package:

First download the latest drivers ( As of 29 May 09 )

# wget ftp://download.nvidia.com/XFree86/Linux-x86/185.19/NVIDIA-Linux-x86-185.19-pkg0.run

Once that is done install them

# ./NVIDIA-Linux-x86-185.19-pkg0.run

Follow the on screen prompts and it will complain that it cant find a precompiled kernel interface. That is fine we want it to compile the drivers to our current kernel.

Now lets install the nvidia-utils program (skip this if you installed your driver the yaourt way above).

# pacman -S nvidia-utils


Installing ATI Drivers

I dont have an ATi video card so this may need some tweaking.

# wget http://www2.ati.com/drivers/linux/ati-driver-installer-8-12-x86.x86_64.run

Once that is done install them

# ./ati-driver-installer-8-12-x86.x86_64.run

This is incomplete and I really don't know beyond this.

Installing ALSA

Sound is important in a setup like this so lets go ahead install alsa.

# pacman -S alsa-lib alsa-utils

Once everything is installed go ahead and edit /etc/rc.conf and add alsa to your daemons line. Reboot.

# reboot

Now that you have restarted we need to go ahead and un-mute all of the audio interfaces.

# alsamixer

Use left and right to scroll around and press 'm' to mute and unmute.

HDMI Audio

If you are using an HDMI connection to pass audio to your receiver or TV you are going to need to do a few more things.

NVidia HDMI Audio Patch

If you are using an NVidia chip set to pass audio over hdmi we will need to patch one of alsa's drivers. If not skip to the next step.

# cd ~
# wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.20.tar.bz2
# tar jxvf alsa-driver-1.0.20.tar.bz2
# cd alsa-driver-1.0.20
# wget -O ./sound/pci/hda/patch_nvhdmi.c http://allurgroceries.is-a-chef.com/n10/patch_nvhdmi.c
# export CONCURRENCY_LEVEL=2
# ./configure
# make
# sudo make install

HDMI Default Audio for PCM

Now to let alsa know we want to use the HDMI audio interface for all of our PCM audio.

  pcm.!default {
     type plug
     slave {
         pcm "hdmi"
     }
  }

Sometimes pcm audio drops out. Adding the following line to /etc/rc.local fixes this.

  iecset audio on


Installing XBMC

We are going to use the SVN version of XBMC because the binary version in AUR has VDPAU disabled and there is no fun in that. We are going to look at two ways. The svn build through AUR and manually. A few people have had trouble with the AUR build so if one doesnt work try the other.

AUR XBMC-SVN

yaourt -Sy xbmc-svn

This will pull all dependencies, checkout a recent version of xbmc from the SVN repository, patch some files for 64bit compatibility and finally compile, package and install xbmc. Feel free to add your experience or recommendations to the AUR comment page at http://aur.archlinux.org/packages.php?ID=20156.

Manual XBMC-SVN

First we are going to need to install a bunch of dependencies, easy enough.

# pacman -S curl enca faac freetype2 fribidi gawk glew hal jasper libjpeg libmad libmysqlclient libxrandr lzo2 sdl_image sdl_mixer sqlite3 tre unzip libcdio libsamplerate python subversion autoconf automake boost cmake gcc gperf libtool make nasm patch pkgconfig zip flex bison lirc pmount smbclient unrar avahi

Whew that was a lot. That should pull in everything you need along with any dependencies need by those packages. Now lets download xbmc.

# svn checkout https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/linuxport/XBMC
# cd XBMC
# ./configure --prefix=/usr --disable-pulse
# make
# make install

All of those will take some time so once one command finishes move onto the next. Depending on how fast your system is will depend on how long this takes. If you need another bottle of water this is the time. If not be amazed by the fast scrolling text!

Boot directly into XBMC

Now to get xbmc to start immediately after boot we need to make some changes

# yaourt -S minigetty

now edit /etc/inittab

Change this:

  c1:2345:respawn:/sbin/agetty 38400 vc/1 linux
  c2:2345:respawn:/sbin/agetty 38400 vc/2 linux
  c3:2345:respawn:/sbin/agetty 38400 vc/3 linux
  c4:2345:respawn:/sbin/agetty 38400 vc/4 linux
  c5:2345:respawn:/sbin/agetty 38400 vc/5 linux
  c6:2345:respawn:/sbin/agetty 38400 vc/6 linux

to this:

  c1:2345:respawn:/sbin/mingetty --autologin xbmc vc/1 linux
  c2:2345:respawn:/sbin/agetty 38400 vc/2 linux


This is a security hole but this is also a media pc so it should be fine.

Also we deleted some of 4 of the other virtual terminals. You wont be using them and it saves a bit of memory. If you want to keep them go ahead but I doubt you'll use them.

Now that we have the user logged in we need it to auto start XBMC.

Edit /home/xbmc/.bashrc and add the following

  startx

Almost there

Edit /home/xbmc/.xinitrc and add the following

  exec ck-launch-session /usr/bin/xbmc-standalone

Another way of auto starting XBMC (and make sure that it's idiot-proof even if it segfaults), you could start xbmc directly from inittab. Add the following line to /etc/inittab and comment out (#) all other lines beginning with "x:5:".

x:5:respawn:/bin/su xbmc -l -c "/bin/bash --login -c startx >/dev/null 2>&1"

You will also need to edit your /home/xbmc/.xinitrc as stated above.

Thermal monitoring

So you playing some high bit rate 1080p video and you got the sound blasting and everything is great. Well sometimes things get hot in that box so lets go ahead and setup lm_sensors so we have an idea of how hot it is in there.

# pacman -S lm_sensors

Now we need to figure out what sensors you have.

# sensors-detect

When you run sensors-detect it will spit out a lot of questions, just hit enter. The last question you will have to type out yes. Go ahead and do that. When its all done lets test and make sure that everything was loaded right and we can see the information we want to see.

 sensors -u

You should see a bunch of info about your system to include temp., voltage, and fan speeds. Now to make XBMC understand what exactly is going on.

edit /home/xbmc/.xbmc/system/advancedsettings.xml

add the following lines

  <advancedsettings>
  	<cputempcommand>sensors|sed -ne "s/Core 1: \+[-+]\([0-9]\+\).*/\1 C/p"</cputempcommand>
  	<gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand> 
  </advancedsettings> 

Now XBMC should be able to monitor how hot things are getting inside of your little media center.

Speed Up Grub

Go ahead and edit /boot/grub/menu.lst

Change this:

  TIMEOUT=5

to this:

  TIMEOUT=0


Boot Splash

Lets go ahead and get one of those fancy boot splash thingys going on that all the kids love these days.

# yaourt -S initscripts-splashy splashy

edit /boot/grub/menu.lst again

change

  kernel (hd0,6)/vmlinuz26 root=/dev/sda1

to this

 kernel (hd0,6)/vmlinuz26 root=/dev/sda1 ro quiet vga=791 splash

Your menu.lst may not be exactly the same but it should be close

Now edit /etc/rc.conf and add

 SPLASH="splashy"

now edit /etc/mkinitcpio.conf

find the "HOOKS" section

  HOOKS="base udev autodetect ide sata filesystems ...

add splashy before autodetect

  HOOKS="base udev splashy autodetect ide sata filesystems ...

now before we build the initramfs lets remove the "the loading initramfs" lines from the boot up. Open up and edit /lib/initcpio/init and comment out line #6. Now lets install some themes

# yaourt -S splashy-themes

Now we need to setup what theme. Go ahead and do

# cd /usr/share/splashy/themes/darch-grey/
# mv background.png background.bak
# wget http://img3.imageshack.us/img3/1894/backgroundism.png
# mv backgroundism.png background.png

Now we need to tell splashy to use our new theme instead of the default

# splashy_config -s darch-grey

Last we need to make the splash show up on boot. Anytime you change the theme or pretty much make any change to splashy you will need to rebuild the initramfs.

# mkinitcpio -p kernel26


Antec Mult-Station Premier

Now we need to get lirc working correctly before we can setup the lcd screen. Lirc should have already been installed with XBMC and if for some reason it is not go ahead and install it.

Remote

# pacman -S lirc

Now we need to install the modules to enable our device. This used to take some trickery but with recent versions of lirc this isnt the case.

# modprobe lirc_dev 
# modprobe lirc_imon

For some reason Lirc detects two devices with this screen. We have /dev/lirc0 and /dev/lirc1. Some buttons show up on one device and some show up on the other. So we need to run two instances of lirc and have them talk together.

# /usr/sbin/lircd --driver=default --device=/dev/lirc0 --pidfile=/var/run/lirc0.pid --listen=8765
# /usr/sbin/lircd --driver=default --device=/dev/lirc1 --pidfile=/var/run/lirc1.pid --output=/dev/lircd --connect=localhost:8765

Edit you /etc/rc.d/lircd script and add those two lines above to the start section when lircd is called. This why our remote will be setup properly on each start up and or reboot.

Start Lirc

# /etc/rc.d/lircd start

Now we want this to all start up on boot so go ahead and add "lircd" to the daemons section of /etc/rc.conf and lirc_dev and lirc_imon to the modules section of /etc/rc.conf

LCD Screen

This is pretty hardware specific but maybe this will help someone out. Now we need to get the LCD screen working, this is probably the easiest part.

# cd ~
# wget http://downloads.sourceforge.net/lcdproc/lcdproc-0.5.2.tar.gz
# tar -zxvf lcdproc-0.5.2.tar.gz
# wget wget http://codeka.com/blogs/imon/lcdproc-0.5.2-imonlcd-0.3.patch

Now we need to patch our version of lcdproc. This will add the small changes need so the screen will function correctly.

# cd lcdproc-0.5.2
# patch -p1 < ../lcdproc-0.5.2-imonlcd-0.3.patch

Edit server/main.h file, and change RENDER_FREQ from 8 to 2:

# cd server
# vi main.h

Now we need to build LCDProc. If you see an error that says "IOWarrior.c' with per-target flags requires AM_PROG_CC_C_O' in `configure.in'" go ahead and ignore it.

# cd ..
# aclocal
# autoconf
# automake
# ./configure --enable-drivers=imonlcd --prefix=/usr
# make
# make install

Now lets go ahead and setup the LCDProc config file.

# vi /etc/LCDd.conf

In the [server] section change the line Driver=curses to Driver=imonlcd and the line DriverPath=server/drivers/ to DriverPath=/usr/lib/lcdproc/ ( the trailing / is needed dont forget it.)

Now move down and add this section to the config file.

  ## IMON LCD driver added by xxx 5Sept08 ##
  [imonlcd]
      Device=/dev/lcd0
      Contrast=200

You can change the contrast settings to your likings. Now save the file. Now start lcdproc

# /etc/rc.d/lcdproc start

Add lcdproc to your daemons section of /etc/rc.conf to have it auto start on boot.

Power Button

Now lets enable the power button. This will make it so when you press the power button on your case it will cause Arch to start shutting down. First we need to install acpid

# pacman -Sy acpid

Then create the file /etc/acpi/events/power with the contents

# vi /etc/acpi/events/power

Now add the following

event=button/power (PWR.||PBTN)
action=/sbin/poweroff

Now we need to add acpid to our daemons section of /etc/rc.conf

Samba Server

So you have this giant harddrive in your media center pc but how do you get all of your files to it? With Samba its easy, you media pc will show up as a windows share on your computer and you can just drag and drop your files back and forth. Now lets install samba.

# pacman -S samba

Now edit you /etc/rc.conf file and add "samba" to your daemons section. Now we need to setup our smb.conf file for our share directory.

# mkdir /home/xbmc/Share
# vi /etc/samba/smb.conf

Now setup your smb.conf file like the following.

  [global]
          workgroup = WORKGROUP
          netbios name = Media PC
          server string = XBMC Media PC; Samba Server %v
          encrypt passwords = yes
          passdb backend = smbpasswd
          security = SHARE
          guest account = xbmc
          log level = 1
          log file = /var/log/samba/%m.log
          max log size = 50
          socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=8192 SO_SNDBUF=8192
          read raw = yes
          write raw = yes
          oplocks = yes
          max xmit = 65535
          dead time = 15
          getwd cache = yes
          large readwrite = yes
  [Media]
          comment = Media Files on Media PC
          path = /home/xbmc/Share
          force group = users
          read only = No 
          guest ok = yes
          guest only = yes
          create mask = 0666
          directory mask = 0666
          hide dot files = yes

Now lets go ahead and start samba

# /etc/rc.d/samba start

Credit

Sadly I cant think of everyone who helped me and I wish I could thank them all. Here are a few who I know off hand that helped me out.

Ctwater on the XBMC forums who had some good tips that I used.

Haggy for all of his help and contributions.

Cofin for his guide on setting up the iMon remote and display which I borrowed from heavily.

Gamester17 for his Ubuntu guide which I borrowed from heavily.

The XBMC Team for all of thier great work and great software. Keep up the great work guys.