Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- You can type enter the CLI of
wajig
by typingwajig
in terminal, so that you can use commands ofwajig
directly instead of typingwajig
every time.$ wajig wajig>
wajig install
From the documentation,
wajig install
is equivalent to apt-get install --no-install-recommends
.
wajig install-r
is equivalent to apt-get install
.
wajig search
-
wajig search
use regular expression by default. For example,wajig search g++
does not search for literalg++
but any package that containsg
. To search forg++
related packages, you can usewajig search g\\+\\+
instead. -
Let wajig also search description
wajig search -v youtube
wajig download
-
Download a package for install later. This is very helpful if the package is big.
wajig download pkg_name
-
Remove all GNOME desktop related packages
wajig list | awk '{print $2}' | grep -i ^gnome | xargs wajig purge
-
install a package of specific version using wajig
wajig search libssl/testing
-
check which repository a package comes from
wajig policy geary
-
To install backport packages, use
wajig install libreoffice/wheezy-backports apt-get -t wheezy-backports libreoffice
It does not work if you use
wajig install libreoffice/stable-backports
Download Packages (for Installation Later)
If your network speed is a concern, you can download a package for installation later using the command below.
wajig download pkg_name
Issues
- it seems to me that
wajig purge package_name
fails to remove packages sometimes even though it seems to succeed.