Tasksel: Easily Install Group Software in Linux

Spread the love

If you started out using an RPM-based distro before advancements like “yum” or “apt-rpm”, you’re loving the magic of “apt-get” on Ubuntu and Debian. But when it comes to installing large sets of software, which may have either dozens (if not hundreds) of packages, or those that require a good deal of integration, sometimes “apt-get” can feel like the old rpm -i guessing game. Fortunately, there’s a “tasksel” – think of it as “apt-get for apt-get”.

Installation

While tasksel is used in the Ubuntu installer (the text-mode server installer, at least), it isn’t installed by default. It can be installed from the Software Centre, or with the following:

sudo apt-get install tasksel

Usage

The best way to get a feel for tasksel is to just run it with no arguments.

sudo tasksel

It’s a command-line program, but even in the terminal you’ll be presented with a graphical list of avaialble tasks to install (if you’ve ever installed in text-mode, such as from the server CD, the following screen will look familiar):

Using this screen, you can use the “Tab” key to jump through the options (hit space if you land on one you want to install), then when the “OK” button is highlighted, hit the space bar. Alternately, you can include which task you’d like to install on the command line. The following command will display the aforementioned list of tasks that can be installed, but in text format:

sudo tasksel --list-tasks

An “i” in the first column indicates that it is installed, while a “u” indicates that a task has not been installed through tasksel.

To install one of the listed tasks, you can use the following command:

sudo tasksel install openssh-server

This will download, install, and configure the necessary packages for you to make everything work seamlessly.

Tasksel vs. Apt-Get

You may ask yourself why you’d want to use tasksel versus the traditional apt-get command to install software, especially when there’s an equivalent meta-package. It’s easiest to think of it like this:

  • On one hand, apt-get installs software as individual packages, even if those packages require others. In other words, it will install each package and respect dependencies, but otherwise assume all of them are separate.
  • In contrast, tasksel assumes you’re trying to install software towards a singular end-goal, such as a web server. It will take all the steps necessary to achieve that goal, including installing software as well as doing other configuration once the install is done. Getting a web server running is a good example… you might need to install apache, mysql, php, and a number of modules and add-on’s for each in order to get a proper LAMP stack running. Or you could just issue the following command:
    sudo tasksel install lamp-server

Here are some other useful tasks available from tasksel:

  • Installed Ubuntu, but want to try out the latest KDE Software Collection? Just use this:
    sudo tasksel install kubuntu-desktop
  • Have a computer you’d like to hook up to your home theater PC? It’s as easy as:
    sudo tasksel install mythbuntu-frontend
  • Need a GUI for your server, but don’t want to waste precious resources on something like KDE or Unity?
    sudo tasksel install lubuntu-core

While it offers a much more limited selection of software to install, if the feature you want is available, the tasksel command is the best way to get it up and running with a minimum of effort.

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Sign up for all newsletters.
By signing up, you agree to our Privacy Policy and European users agree to the data transfer policy. We will not share your data and you can unsubscribe at any time. Subscribe


Aaron Peters

Aaron is an interactive business analyst, information architect, and project manager who has been using Linux since the days of Caldera. A KDE and Android fanboy, he’ll sit down and install anything at any time, just to see if he can make it work. He has a special interest in integration of Linux desktops with other systems, such as Android, small business applications and webapps, and even paper.

Comments (2)