Tasksel or plain Apt?
In the past I've always used tasksel to install so-called "tasks". It seems, however, that this has been integrated in APT:
apt-cache dumpavail | grep ^Task
[...] snip
Task: lamp-server
[...]
and that I can install such "tasks" by appending a caret (^) to it, like this:
sudo apt-get install lamp-server^
Is this equivalent to the following?
sudo tasksel install lamp-server
And which is preferred?
Metapackages
Additionally, how do metapackages come into play here? Some tasks seem not to be a metapackage while others are:
apt-cache show lamp-server
N: Unable to locate package lamp-server
apt-cache show kubuntu-desktop
Package: kubuntu-desktop
[...]
Task: kubuntu-desktop
So, using the last example, what is the difference between the following three possible ways to install?
sudo apt-get install kubuntu-desktopsudo apt-get install kubuntu-desktop^sudo tasksel install kubuntu-desktop