How To Install wicd-curses on Ubuntu 18.04
Introduction
In this tutorial we learn how to install wicd-curses on Ubuntu 18.04.
What is wicd-curses
wicd-curses is:
Wicd is a general-purpose network configuration server which aims to provide a simple but flexible interface for connecting to networks. Its features include:
- wide variety of settings;
- ability to connect to (and maintain profiles for) both wired and wireless networks;
- support for many encryption schemes, including WEP, WPA, WPA2 and custom schemes;
- wireless-tools compatibility.
This package provides the Curses/Urwid client, which is the client of choice in environments without X server.
There are three methods to install wicd-curses on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install wicd-curses Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install wicd-curses using apt-get by running the following command:
sudo apt-get -y install wicd-curses
Install wicd-curses Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install wicd-curses using apt by running the following command:
sudo apt -y install wicd-curses
Install wicd-curses Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install wicd-curses using aptitude by running the following command:
sudo aptitude -y install wicd-curses
How To Uninstall wicd-curses on Ubuntu 18.04
To uninstall only the wicd-curses package we can use the following command:
sudo apt-get remove wicd-curses
Uninstall wicd-curses And Its Dependencies
To uninstall wicd-curses and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove wicd-curses
Remove wicd-curses Configurations and Data
To remove wicd-curses configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge wicd-curses
Remove wicd-curses configuration, data, and all of its dependencies
We can use the following command to remove wicd-curses configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge wicd-curses
References
Summary
In this tutorial we learn how to install wicd-curses package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.