Skip to content

Instantly share code, notes, and snippets.

@andrenam
Created September 26, 2012 16:02
Show Gist options
  • Save andrenam/3788881 to your computer and use it in GitHub Desktop.
Save andrenam/3788881 to your computer and use it in GitHub Desktop.
PyLoad und XBMC in Autostart (LXDE)
#!/bin/sh
# wichtige Pakete installieren (z.B. für Pyload)
sudo apt-get install -y leafpad lxterminal software-center lxde gdebi python python-crypto python-pycurl python-qt4 tesseract-ocr gocr python-django openssl unrar python-imaging rhino python-openssl
# PyLoad herunterladen und installieren
wget -O pyload.deb http://get.pyload.org/get/ubuntu
sudo dpkg -i pyload.deb
# Pyload konfigurieren
pyLoadCore -s
# Pyload als Dienst einrichten
sudo update-rc.d pyload defaults
# XBMC in den Autostart legen
mkdir ~/.config/autostart
cp /usr/share/applications/xbmc.desktop ~/.config/autostart
echo "Jetzt darf man neustarten :)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment