sábado, 22 de mayo de 2010

Mantener Limpio nuestro Ubuntu 10.04 Lts

1.- Vamos a hacer una limpieza de Ubuntu: Esto es bueno hacerlo cada “X” tiempo para quitar lastre y mantener tu sistema operativo “limpito”. Abrimos Aplicaciones >> Accesorios >> Terminal y escribimos:

sudo apt-get autoremove

[fuera los paquetes innecesarios]

sudo apt-get autoclean

[fuera las referencias innecesarias]

sudo apt-get clean

[cada vez que descargamos un paquete para ser instalado se guarda en /var/cache/apt/archives/. Con esto limpiamos estos paquetes sin afectar alsistema, y de paso tal vez se os soluciones el problema que os da ese directorio].

Vete a tu carpeta personal y con botón derecho crear un archivo llamado ".depurar-paquetes.sh" (sin comillas). Abrelo y pega lo siguiente (aclaración, los archivos precedidos de un punto, como este, son ocultos por lo que para poderlos ver en la carpeta has de pulsar el botón Ctrl+h):

for i in `deborphan --guess-all`

do

sudo aptitude remove $i

done

despues en terminal:

sudo aptitude install deborphan


chmod 777 /home/tu_nombre_usuario/.depurar-paquetes.sh


./.depurar-paquetes.sh

2.- Seguimos: Aplicaciones >> Accesorios >> Terminal. Escribes los siguiente:

sudo gedit /etc/apt/sources.list

Se te abrirá un archivo. Pués bien, borra todo su contenido y pega lo siguiente y guárdalo:

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
## Major bug fix updates produced after the final release of the
## distribution.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://py.archive.ubuntu.com/ubuntu/ lucid universe
deb-src http://py.archive.ubuntu.com/ubuntu/ lucid universe
deb http://py.archive.ubuntu.com/ubuntu/ lucid-updates universe
deb-src http://py.archive.ubuntu.com/ubuntu/ lucid-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://py.archive.ubuntu.com/ubuntu/ lucid multiverse
deb-src http://py.archive.ubuntu.com/ubuntu/ lucid multiverse
deb http://py.archive.ubuntu.com/ubuntu/ lucid-updates multiverse
deb-src http://py.archive.ubuntu.com/ubuntu/ lucid-updates multiverse
## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu lucid partner
# deb-src http://archive.canonical.com/ubuntu lucid partner
deb http://security.ubuntu.com/ubuntu lucid-security universe
deb-src http://security.ubuntu.com/ubuntu lucid-security universe
deb http://security.ubuntu.com/ubuntu lucid-security multiverse
deb-src http://security.ubuntu.com/ubuntu lucid-security multiverse
deb http://archive.ubuntu.com/ubuntu lucid main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu lucid main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu lucid-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu lucid-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu lucid-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu lucid-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu lucid-security main restricted universe multiverse
deb http://packages.medibuntu.org/ lucid free non-free
deb-src http://packages.medibuntu.org/ lucid free non-free
deb http://archive.getdeb.net/ubuntu lucid-getdeb apps
deb-src http://archive.getdeb.net/ubuntu lucid-getdeb apps
Con esto tendremos los repositorios básicos oficiales de Ubuntu y posiblemente no tengamos ningún problema de autenticación. Menu Aplicaciones >> Accesorios >> Terminal. Escribes los siguiente:

sudo aptitude update

3.- Finalmente yo probaría en terminal a hacer esto:

sudo aptitude install -f

No hay comentarios: