Custom Search

Wednesday, October 9, 2013

How to Install XBMC in Ubuntu 13.10 Saucy Salamander

1)
Add repo

#sudo add-apt-repository ppa:team-xbmc

2)
Update local repositories

#ls /etc/apt/sources.list.d
* Find the file team-xbmc-ppa-saucy.list
#sudo apt-get update -o Dir::Etc::sourcelist="sources.list.d/team-xbmc-ppa-saucy.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
OR
#sudo apt-get update



3)
Install xfce

#sudo apt-get install xbmc

5 comments:

  1. Hi - I get an error 404 on the add-repo - and there doesn't seem to be a saucy source in the repo yet...

    ReplyDelete
  2. This tutorial is incorrect. Currently there is no PPA available for Saucy from team-xbmc. Attempting to add the PPA will result in a 404 during the apt-get update sequence which provides no benefit and can actually serve to slow down the update process. XBMC still installs because an xbmc package is included in the Ubuntu universe repository. team-xbmc simply releases more up-to-date versions for ubuntu than the universe repository does. You can see in the video that during the install process the packages are actually downloading from the Ubuntu archive (which hosts the universe repository), not launchpad.net (which hosts PPA repositories). Bottom line is if you want newer versions of xbmc on Saucy you should install them manually (atleast until a PPA is released by team-xbmc) or stick to the universe version.

    ReplyDelete
  3. Try this:
    sudo apt-get install python-software-properties software-properties-common.
    sudo add-apt-repository ppa:team-xbmc
    sudo apt-get update
    sudo apt-get install xbmc

    ReplyDelete