XBMC en Raspberry Pi con Raspbian

less than 1 minute read

XBMC - Raspbian

Si quieres instalar XBMC en tu Raspberry Pi con Raspbian y tienes problemas de dependencias, puedes descargarlo desde este repositorio añadiendo la siguiente línea al /etc/apt/sources.list

# XBMC Repo
deb http://archive.mene.za.net/raspbian wheezy contrib

Luego instala XBMC:

root@raspberry:~# aptitude update
root@raspberry:~# aptitude install xbmc

Después de esto, puedes hacer que se ejecute al iniciar el sistema e incrementar el nivel de prioridad editando el archivo _/etc/default/xbmc _con estos parámetros:

# Set this to 1 to enable startup
ENABLED=1

# The user to run XBMC as
USER=pi

# Adjust niceness of XBMC (decrease for higher priority)
NICE=-10

Recuerda deshabilitar LXDE o XFCE al inicio (puedes usar rasp-config).  ¡Qué lo disfrutes!

Referencia: XBMC for Raspberry Pi (en inglés)

Leave a Comment