Installer la dernière version du nettoyeur BleachBit sur Ubuntu
BleachBit est un logiciel de nettoyage du système qui permet de récupérer une partie de l'espace disque. Il dispose aussi d'une fonction d'optimisation de Firefox et Thunderbird.
Ce guide est testé sur:
- Ubuntu 11.04 Natty Narwhal
- Ubuntu 11.10 Oneiric Ocelot
Avertissement
Ce guide est obsolète. Ne l'utilisez que si vous savez ce que vous faites.
Installation
Installez les outils nécessaires:
command sudo apt-get install gdebi
Obtenez le numéro de votre version d'Ubuntu:
UBUNTU_VERSION=$(command lsb_release -rs | command sed -e 's/\.//g')
Obtenez le nom de fichier de la version du logiciel adaptée à votre version d'Ubuntu:
DEB_FILE=$(command wget 'http://bleachbit.sourceforge.net/download/linux' \
--quiet --output-document=- \
| command grep "ubuntu${UBUNTU_VERSION}" \
| command sed -e 's|^.*files/\([^"]*\)".*$|\1|')
Déterminez le numéro de version:
VERSION="$(command echo "${DEB_FILE}" | command sed -e 's/^bleachbit_\([^_-]*\).*$/\1/')"
Téléchargez la dernière version du logiciel:
command wget "http://switch.dl.sourceforge.net/project/bleachbit/bleachbit/${VERSION}/${DEB_FILE}" \
--output-document="/tmp/${DEB_FILE}"
Installez le logiciel:
command sudo gdebi -n "/tmp/${DEB_FILE}"
Supprimez le fichier téléchargé:
command rm "/tmp/${DEB_FILE}"
Installation du pack bonus
Obtenez l'URL du pack bonus pour Ubuntu:
SOURCE_URL=$(command wget 'http://bleachbit.sourceforge.net/download/linux' \
--quiet --output-document=- \
| command grep "bleachbit-bonus.*_all.deb" \
| command sed -e 's/^.*href="\([^"]*\)".*$/\1/')
Téléchargez le pack bonus:
command wget "${SOURCE_URL}" \
--output-document='/tmp/bleachbit-bonus.deb'
Installez le pack bonus:
command sudo gdebi -n '/tmp/bleachbit-bonus.deb'
Supprimez le fichier téléchargé:
command rm '/tmp/bleachbit-bonus.deb'
Remerciements
- Merci aux développeurs de BleachBit.