cmd:aptitude 

aptitude advantages 

aptitude has a command line interface very similar to apt-get, if you like apt-get, then you will love aptitude. What aptitude has over apt-get is that it tracks which packages have been installed manually and which have been installed automatically (i. e. to fulfill dependencies). Automatically installed packages will be uninstalled as soon as they are no longer needed. I.e., when an automatically installed package is no longer needed when the last package depending on it is removed, aptitude will remove that too.

hold package with aptitude 

$ aptitude install fglrx-driver=
<package>=
       Place  <package> on hold: cancel any active installation,
       upgrade, or removal, and prevent this package from  being
       automatically upgraded in the future.

Or, directly

aptitude hold tetex-base tetex-bin tetex-extra

Intro to managing packages on Debian GNU/Linux using 

http://anarka.org/linux/debian_pkgmanager.php

dpkg(Good), apt(Better) and aptitude(Best)

dpkg 

apt 

aptitude 

aptitude is based on apt so most of the functions are the same as in apt, but it combines apt-get and apt-cache into the same program with some some new features.

Update package list:

aptitude update

Upgrade all installed packages:

aptitude upgrade

Upgrade all installed packages but be more agressive on resolving dependecies, can remove and install new packages. It's also used to upgrade from a distribution to another(say from stable to testing):

aptitude dist-upgrade

Install packages:

aptitude install package

Remove packages:

aptitude remove package

Purge:

aptitude purge package

See the changelog of a package, in this case we will check the changelog of gnome-games in experimental:

aptitude changelog gnome-games/experimental

As in apt, aptitude can also handle several packages at the same time, for instance:

aptitude install package1 package2 package3

aptitude search is a bit different…

Search for packages that include the string gnome(for example) in their name:

aptitude search gnome

Search for packages than include gnome in their description:

aptitude search ~dgnome

You can also search by version ~V, maintainer ~m, etc.

To list all installed packages:

aptitude search ~i

Or to list all installed packages that contain gnome on their name:

aptitude search ~ignome

Check for packages available on experimental(as long as you have a source for it):

aptitude search ~Aexperimental

List removed packages that weren't purged, their configurations still exist on your system:

aptitude search ~c

If you want to delete ALL those configs do:

dpkg --get-selections | awk '/deinstall$|purge$/{print $1}' |xargs dpkg -P

One of the new features,of aptitude, is logging every action, the logs are kept in /var/log/aptitude.

Thanks to logging package management is more efficient, it removes dependencies when you remove the package that installed them. That is great for metapackages (a metapackage is a list of packages needed for a certain task)

For example let's remove gnome-games, with apt we would get the following:

sueca:/home/anarka# apt-get --purge remove gnome-games
Reading package lists... Done
Building dependency tree... Done
The following packages will be REMOVED:
  gnome-games*
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Need to get 0B of archives.
After unpacking 1697kB disk space will be freed.
Do you want to continue [Y/n]?

Nice gnome-games package is removed but nothing else, now let's try with aptitude:

sueca:/home/anarka# aptitude purge gnome-games
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
Building tag database... Done
The following packages are unused and will be REMOVED:
  gnome-games-data [1:2.12.1-1] gnome-games-extra-data [2.12.0-1] guile-1.6-libs [1.6.7-1.1]
  libguile-ltdl-1 [1.6.7-1.1] libqthreads-12 [1.6.7-1.1] librsvg2-common [2.12.7-1]
The following packages will be REMOVED:
  gnome-games{p} [1:2.12.1-1]
0 packages upgraded, 0 newly installed, 7 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 22.2MB will be freed.
Do you want to continue? [Y/n/?] n

This is much more efficient, not only it removes gnome-games, but it also removes packages that aren't needed anymore due to the removal of the package. Of course if you want good results you should only use aptitude, since apt doesn't log anything, so you can't just hope aptitude will know what you did with apt.

If you want to customize apt or aptitude use /etc/apt/apt.conf, i have the following lines in there:

APT::Default-Release unstable;
APT::Get::Show-Upgraded "true";
APT::Acquire::Retries "5";
APT::Cache-Limit 22582912;
APT::Get::Purge;
Aptitude::CmdLine::Show-Versions "true";
Aptitude::CmdLine::Verbose "5";
Aptitude::CmdLine::Always-Prompt "true";
Aptitude::CmdLine::Package-Display-Format "%c%a%M %p# %15v %15V - %d#";

Updated in 2006/07/23 anarka@anarka.org

Using aptitude 

http://www.linuxdevcenter.com/pub/a/linux/2006/04/06/aptitude_and_apt_get.html

I don't understand the new aptitude 

Newsgroups: gmane.linux.debian.user
Date: Tue, 22 May 2007 08:31:29 -0400

I can't get my head around the (as of etch) newfangled aptitude dependency handling procedure. As an example, I'm trying to install texlive. As soon as I hit '+', I see this cryptic message in the bottom line:

[1(1)/…] Suggest 2 installs, 4 keeps w: examine !: apply …

(…and I just noticed I had to copy that by hand because aptitude —and only aptitude!— seems to disallow copying text from the xterm it's running in! What kind of sadism is that?)

Anyway, when I type '!', thinking that aptitude will now do what it suggests, namely install stuff, all the to-be-installed things are deselected and nothing happens.

So maybe 'e'xamining things will tell me stuff. When I do that, I see lists of packages that could be "kept" at their current versions (which doesn't make sense because they are flagged "UNINST". I also see lists of packages to be installed. Anyway, as soon as I hit '!' everything goes away again. I also can scroll through many alternatives using '.' and ',' but I don't really understand what this is all about.

The sarge aptitude used to be less unwieldy.

So how does this work?

I don't understand the new aptitude 

> So how does this work?

I can tell you how I use it:

'e' gets you the list of suggested resolutions, as you've discovered. If one of them looks reasonable, '!' will choose that one. Sometimes that has the effect of just cancelling what you were going to do, sometimes it removes something, sometimes it installs something.

If none of the options looks right, hit 'q' (which, I believe, is not listed as an option). This will return you to the previous view, where you can fix things by hand. I've been doing this daily in sid while I wait for python-matplotlib and python-scipy to be updated for the latest python-numpy. The only way to get control back once aptitude has entered its problem resolution mode is to hit 'e' and then 'q', at least that I've found. I then go and hold the problem packages with ':'.

As an aside, another way you can install texlive is to use aptitude as a command-line tool:

aptitude install texlive

That might present you with an easier-to-manage dependency resolution.

Michael A. Marsh

I don't understand the new aptitude 

> (...and I just noticed I had to copy that by hand because aptitude
> --and only aptitude!-- seems to disallow copying text from the xterm
> it's running in! What kind of sadism is that?)

This is because aptitude asks xterm to send it mouse events, as do other programs (links and w3m come to mind). Since aptitude is getting the mouse events, xterm can't use them to copy & paste.

You can still select text while aptitude is running by holding down shift while you click.

> ... I also can scroll through many alternatives
> using '.' and ',' but I don't really understand what this is all about.

That's interesting. Could you say which packages are broken and which ones aptitude says it wants to install / keep? This might be a bug. It would also be interesting to see what you get when you press "o" to get a breakdown of why the resolver did what it did.

The resolver information screen lists as "kept" packages packages whose upgrade or installation is going to be cancelled. It might be that aptitude decided to cancel installing texlive for some reason, which would cancel installing all the stuff it depends on (unfortunately, the removal of unused packages doesn't integrate with the resolver). My guess is that aptitude can't find any resolution that includes texlive; you could verify this by pressing "r" while the "keep texlive at its current version" option is selected, then seeing what the next new solution is.

My usual procedure using the resolver is to hit "e" to pop into the resolution screen and examine the decision aptitude made. You can select the individual actions in the list it presents to see why it made each decision (in the lower pane of the display).

I tag the decisions it made that I don't like by pressing "r", then ask it for the next solution; lather, rinse, repeat until I'm satisfied. If I'm not satisfied after looking at a few solutions, I might resolve things by hand, or just take the first solution (which usually errs on the side of being too conservative). You apply the solution by pressing "!".

In some cases "a" can also be useful; it tells aptitude to take an action whenever possible. This is partiularly useful (IMO) combined with tabbing into the list of alternative choices that shows up in the lower pane of the solution view.

Daniel Burrows @debian.org

Aptitude dependency handling configuration 

Aptitude normally follows the Suggests & Recommended dependency levels, so it can end up installing packages that aren't actually required for another package to function but simply go well together.

This behavior can be permanently configured from the aptitude menu (F10) The change is saved at ~/.aptitude/config:

$ cat ~/.aptitude/config
aptitude "";
aptitude::Keep-Unused-Pattern "";
aptitude::Delete-Unused-Pattern "";
aptitude::Recommends-Important "false";

The corresponding configuration option is Aptitude::Recommends-Important which can be overridden by

-R, --without-recommends
       Do not treat recommendations as dependencies when installing new
       packages.
-r, --with-recommends
       Treat  recommendations as dependencies when installing new pack-
       ages.

aptitude force removal 

Newsgroups:  gmane.linux.debian.user
Date:        Fri, 8 Sep 2006 21:14:57 +0300
> I want to remove the bittorrent package, but I get:
>
> $ aptitude purge bittorrent
> The following packages will be REMOVED:
>   bittorrent{p}
> The following packages have unmet dependencies:
>   podracer: Depends: bittorrent but it is not installable
> Resolving dependencies...
> The following actions will resolve these dependencies: Upgrade the
> following packages:
> bittorrent [3.4.2-8 (now) -> 3.4.2-8.1 (testing, unstable)]
>
> I want to remove the bittorrent package because I don't want to keep
> upgrading it any more.
>
> How can I tell aptitude to remove the bittorrent package as well as all
> the packages that depends on it?

You must refuse the solution, then aptitude will suggest something else, … or you purge podracer at the same time:

aptitude purge bittorrent podracer

Andrei Popescu

aptitude fails to remove a package 

Newsgroups:  gmane.linux.debian.user
Date:        Tue, 29 Aug 2006 02:22:12 +0800
> I wanted to replace my tetex-installation with texlive. But something
> went wrong. Now the dvipdfmx is installed, but I need to get rid of it
> before I can install anything else, but aptitude complains, that
> mktexlsr is not installed, and therefore exits the uninstall of
> dvipdfmx.
>
> ...
>
> Is there a way to force a package-removal? (I have tried to purge the
> package)?
dpkg -P --force-all dvipdfmx

if not work, then

mv /var/lib/dpkg/info/dvipdfmx* /tmp
aptitude purge dvipdfmx

or

apt-get remove --purge dvipdfmx

Jeff Zhang

aptitude fails to remove a package 

On Mon, Aug 28, 2006 at 10:32:01AM -0400, Roberto C. Sanchez wrote:

> > Aptitude output:
> > (Reading database ... 195256 files and directories currently
> > installed.) Removing dvipdfmx ...
> > /var/lib/dpkg/info/dvipdfmx.postrm: line 6: /usr/bin/mktexlsr: No such
> > file or directory
> > dpkg: error processing dvipdfmx (--remove):
> >  subprocess post-removal script returned error exit status 127 dpkg:
> >  error processing preview-latex-style (--remove):
> >   Package is in a very bad inconsistent state - you should
> >    reinstall it before attempting a removal. terminate called after
> >    throwing an instance of 'std::logic_error'
> >
> you can work around this one of two ways:
>
> 1. Install the package that contains mktexlsr, purge dvipdfmx and then
> remove the package you just installed. 2. As root, touch
> /usr/bin/mktexlsr, chmod +x /usr/bin/mktexlsr, purge dvipdfmx, rm
> /usr/bin/mktexlsr.

Solution number 2 worked.

After this I removed all TeX-related program/packages, and could install TeTex without problems. Again I removed this, and tried TeXLive, but got the same problem again. There must be a bug in TeXLive - package. Or I have messed more things on my system :-)

So I went through the steps in #2-solution and have now a working TeTeX installation.

Thank you for your assistance.

/severino

Aptitude insists to install dummy packages 

Newsgroups: gmane.linux.debian.user
Date: Sat, 6 Jan 2007
> When I checked Aptitude's internal database using
>
>   aptitude install -fsD
>
> I get
>
> The following packages are BROKEN:
>
> mencoder (C: mencoder-k6) mplayer (C: mplayer-k6)
> sysvinit (P: file-rc, P: sysv-rc, P: sysvinit-utils)
> The following packages will be automatically REMOVED:
>   file-rc
> The following NEW packages will be installed:
>   ... mencoder-k6 mplayer-doc mplayer-k6 ...
>
> But mplayer-k6 is only a dummy package, and
> it conflicts with mplayer [2].
>
> Why aptitude still wants to install such packages?
> Why aptitude wants to remove my essential file-rc package?

aptitude was trying hard to figure out/fix the dependencies of broken packages. the message is illusive. What's is really count is the actual action that aptitude suggests at the end.

T