Wajig exclude deb packages
Written by edmond in Applications, Gnu-Linux, Tips & Tricks, UtilitiesSometimes you want to leave a package at the same version, not to have subsequent problems with dependencies
or malfunction. The distributions that use APT have the opportunity to put these packages on hold, then
reinstall them later. All this avoids the annoying occurrence of 'notice of continuous update. A
the possibility may be that offered by wajig, a command line program that relies on dpkg and Apt
# Apt-get install wajig
Once the program is installed, you can maintain a package, so it is ignored by Apt,
this:
#
wajig hold nome_pacchettowajig hold nome_pacchetto
Quando si vuole sbloccare il pacchetto:
#
wajig unhold nome_pacchetto
Per visualizzare l'elenco dei pacchetti in attesa:
# Wajig list-hold
Post similar (or almost):
- Reinstall the same packages in case you needed for various reasons ...
- Debtree-dependency graph generator Debtree As per title is a generator graph ...
- Administer the band with Trickle Trickle is responsible for limiting the use of the band is ...
- BluePad remote control BluePad is a program for the ...
- Aspire One Linux Modem-HSDPA-HSUPA Option GlobeTrotter GTM380-I recently got an Acer Aspire One A150X ...
















November 19th, 2008 at 10:19
Useful, but a mistake or does apt-get?
November 19th, 2008 at 22:02
You can use aptitude with:
aptitude hold
aptitude unhold
you can also use:
echo hold | dpkg-set-selections
echo install | dpkg-set-selections
or:
dpkg-get-selections> pacchetti.list
replace the package installation lock with hold, then:
dpkg-set-selections <pacchetti.list
hello;)