xbmc

Install XMBC

Install stable version
wget http://installit.googlecode.com/hg/install.xbmc.sh -O - | bash -

#!/bin/bash

sudo apt-get install -qq -y python-software-properties pkg-config

if [ "$1" == "-u" ]; then
    # add unstable repository
    sudo add-apt-repository -y ppa:team-xbmc/unstable
    
    RELEASE=$(lsb_release -rs | tr -d ".")
    if [ ${RELEASE} -gt 1110 ]; then
        # downgrade to oneiric (lastest available release)
        sudo sed -i "s|$(lsb_release -cs)|oneiric|g" /etc/apt/sources.list.d/team-xbmc-unstable-*.list 
    fi
else
    # add stable repository
    sudo add-apt-repository -y ppa:team-xbmc/ppa

    RELEASE=$(lsb_release -rs | cut -d"." -f1)
    if [ ${RELEASE} -gt 10 ]; then
        # downgrade to maverick (lastest available release)
        sudo sed -i "s|$(lsb_release -cs)|maverick|g" /etc/apt/sources.list.d/team-xbmc-ppa-*.list 
    fi
fi

# update
sudo apt-get update -qq

# install xbmc
sudo apt-get install -qq -y xbmc

# install required libraries
sudo apt-get install -qq -y libmad0 libmpeg2-4

install unstable version
wget http://installit.googlecode.com/hg/install.xbmc.sh -O /tmp/install.xbmc.sh
bash /tmp/install.xbmc.sh -u

Unofficial PVR repository
sudo add-apt-repository ppa:lars-opdenkamp/xbmc-pvr

XBMC standalone
sudo apt-get install -y xbmc xbmc-standalone

Configuring a Wii Remote
http://www.mini-itx.com/projects/xbmc-ion/module/6

Build fglrx

#!/bin/bash
 
# download
#wget --no-check-certificate https://www2.ati.com/drivers/linux/ati-driver-installer-9-1-x86.x86_64.run -P /root/ati
#wget --no-check-certificate https://www2.ati.com/drivers/linux/ati-driver-installer-9.2-x86.x86_64.run -P /root/ati
#  --extract
#chmod 777 /root/ati/ati-driver-installer-9-1-x86.x86_64.run
 
 
# install envirement
#apt-get install -f -y
apt-get install -y build-essential cdbs fakeroot dh-make debhelper debconf libstdc++5 dkms linux-headers-$(uname -r)
depmod -a
 
modprobe -r fglrx
rm /lib/modules/2.6.27-11-generic/updates/dkms/fglrx.ko

XBMC / Boxee

API
http://wiki.xbmc.org/?title=List_of_Built_In_Functions - List of Built In Functions

HowTo
http://YOUR_IP/xbmcCmds/xbmcHttp?command=ExecBuiltIn(XBMC.Notification(Header, Message, 3000, /usr/share/xbmc/addons/skin.confluence/media/OSDDvdFO.png))

Download
http://xbmcmediacenter.com/nightlies/ - XBMC nightlies
http://xbmc.org/wiki/?title=HOW-TO_XBMC_for_Linux
http://sourceforge.net/project/showfiles.php?group_id=87054
http://code.google.com/p/atvusb-creator/ - USB flash drive creator for the AppleTV

Create Ubuntu LiveCD from Squash

#!/bin/bash
 
# last version
# http://dl.dropbox.com/u/4170695/scripts/mkTSClient.sh
 
# http://ubuntuforums.org/showpost.php?p=5175091&postcount=27
 
# version: 2009-09-09
 
# todo
# configure locales
# configure hostname
# clean up "fglrx"
# check install_lirc
# umount all from chroot envirement, rm: Entfernen von Verzeichnis „$HOME/xbmc-XXX-livecd-hardy-i386/chroot/lib/modules/2.6.24-21-generic/volatile“ nicht möglich: Device or resource busy
 
# parameter
# architecture: i386, amd64
ARCH=i386
# distribution: hardy, intrepid, jaunty, karmic
DISTRIB_CODENAME=karmic
 
# chec

Do you like this page? Then support it. Please click the AD below and visit the sponsor. Thank you!


Syndicate content