Añadimos el repositorio.
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
Actualizamos e instalamos.
sudo apt-get update && sudo apt-get install y-ppa-manager
Fuentes:
http://www.ubuntizando.com/2011/06/17/limpiando-repositorios-ppa-en-ubuntu/
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update && sudo apt-get install y-ppa-manager
sudo apt-add-repository ppa:stebbins/handbrake-snapshots
deb http://ppa.launchpad.net/stebbins/handbrake-releases/ubuntu precise main deb-src http://ppa.launchpad.net/stebbins/handbrake-releases/ubuntu precise main
sudo apt-get update
sudo apt-get install handbrake-gtk
sudo wget –output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get –quiet update && sudo apt-get –yes –quiet –allow-unauthenticated install medibuntu-keyring && sudo apt-get –quiet update
sudo apt-get install libdvdcss2
# vim-cmd vmsvc/getallvms Vmid Name File Guest OS Version Annotation 111 VCenter [Admin-VM] VCenter/VCenter.vmx windows7Server64Guest .... 112 Debian01 [Debian01] VMs/Debian.vmx debian5_Guest .... ... ...
# vim-cmd vmsvc/power.getstate 111 Retrieved runtime info Powered off
vim-cmd vmsvc/power.on 111 Powering on VM:
vim-cmd vmsvc/power.off 111 Powering off VM:
sudo apt-get install imagemagick
convert scan.jpeg result.pdf
convert -adjoin scan*.jpeg result.pdf
convert -adjoin scan1.jpeg scan2.jpeg result.pdf
sudo gedit /var/lib/locales/supported.d/es sudo gedit /var/lib/locales/supported.d/locallas
es_ES@euro ISO-8859-15 es_ES ISO-8859-1
sudo dpkg-reconfigure locales
sudo gedit /etc/environment
LC_ALL=es_ES@euro LANG=”es_ES.UTF-8″ LANGUAGE=”es_ES:es:en_GB:en” LC_TYPE=es_ES@euro
mkdir /opt/lampp/htdocs/portal
tar zxvf Joomla_3.0.3-Spanish-Pack_Completo.tar.gz -C /opt/lampp/htdocs/portal
sudo touch /opt/lampp/htdocs/portal/configuration.php sudo chmod 777 /opt/lampp/htdocs/portal/configuration.php
/opt/lampp/bin/mysql -u root -p
CREATE DATABASE portal;
CREATE USER juser@localhost;
SET PASSWORD FOR juser@localhost= PASSWORD("password");
GRANT ALL PRIVILEGES ON portal.* TO juser@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit
/opt/lampp/lampp restart
rm -rf /opt/lampp/htdocs/portal/installation/ chmod 755 /opt/lampp/htdocs/portal/configuration.php
yum update
wget http://www.apachefriends.org/download.php?xampp-linux-1.x.x.tar.gz
tar xvfz xampp-linux-1.7.7.tar.gz -C /opt
yum -y install glibc* libstdc* gcc glibc.i686
vi /opt/lampp/lampp
# XAMPP is currently 32 bit only #case `uname -m` in # *_64) # if /opt/lampp/bin/php -v > /dev/null 2>&1 # then # : # else # $de && echo “XAMPP gibt es zur Zeit nur als 32-Bit Applikation. Bitte verwende eine 32-Bit Kompatibilitaetsbibliothek fuer Dein System.” # $de || echo “XAMPP is currently only availably as 32 bit application. Please use a 32 bit compatibility library for your system.” # exit # fi # ;; #esac
/opt/lampp/lampp start
#!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. touch /var/lock/subsys/local #inicia lampp
/opt/lampp/lampp start exit 0