Created
October 20, 2015 14:50
-
-
Save dapize/789d2eecde01b01f4dfd to your computer and use it in GitHub Desktop.
Un simple scriptp para instalar Loiq
This file contains 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/bash | |
# Instalar loiq | |
aptitude -y install libqt4-network | |
dpkg --add-architecture i386 | |
aptitude -y update | |
aptitude -y install libqtgui4:i386 | |
aptitude -y install ia32-libs-gtk | |
aptitude -y install bzip2 | |
cd $HOME && wget http://ftp.desdelinux.net/loiq-0.3.1a.tar.bz2 && bzip2 -dc loiq-0.3.1a.tar.bz2 | tar -xv && mv loiq-0.3.1a .loiq-0.3.1a && ln -s $HOME/.loiq-0.3.1a/loiq /usr/local/bin/ | |
echo "abrir una terminal (estando en el escritorio, ya sea XFCE, Gnome, o el que sea) y ejecutar el comando: loiq (sin los dos puntos)" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment