Howtodojo logo
  • Home 
  • About 
  • Certifications 
  • Sample Database 
  • Cheatsheet 
  • Glossary 
  • Blog 
  • Tags 
  1.   Blog
  1. Home
  2. Blog
  3. sudo: tasksel: command not found [How To Fix]

sudo: tasksel: command not found [How To Fix]

Share via
Howtodojo
Link copied to clipboard

How To fix sudo: tasksel: command not found error message will be discussed in this article. We will also learn two alternatives solutions.

On this page
Problem   Alternative Fixes   Using tasksel  
sudo: tasksel: command not found [How To Fix]

Problem  

When you run sudo tasksel command in linux terminal / console, you get the following error message

sudo: tasksel: command not found
```bash

## How To Fix {#h-how-to-fix}

To fix this problem, we can install tasksel using the command below.

```bash
sudo apt-get -y install tasksel

This command might take some time to finish depending on your machine internet connection.

Alternative Fixes  

You can also use apt command to install tasksel.

sudo apt -y install tasksel
```bash

Or if you have aptitude installed you can use the following command.

```bash
sudo aptitude install tasksel

Using tasksel  

After the installation finished, you can run tasksel.

sudo tasksel
```bash

You can select which packages that you want to install and press OK
 How To Install MongoDB 4.4 on Ubuntu 20.04
How To Install Zoom on Linux Mint 20 
On this page:
Problem   Alternative Fixes   Using tasksel  
Follow me

We publish tutorials, tips and tricks about Linux, open source, cloud computing, and infrastructure

     
Copyright © 2012 - 2025 howtodojo.com. |
Howtodojo
Code copied to clipboard