Created
September 26, 2012 16:02
-
-
Save andrenam/3788881 to your computer and use it in GitHub Desktop.
PyLoad und XBMC in Autostart (LXDE)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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