How To Install live-task-standard on Kali Linux
Introduction
In this tutorial we learn how to install live-task-standard on Kali Linux.
What is live-task-standard
live-task-standard is:
This metapackage sets up a basic user environment, providing a reasonably small selection of services and tools usable on the command line.
There are three methods to install live-task-standard on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install live-task-standard Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install live-task-standard using apt-get by running the following command:
sudo apt-get -y install live-task-standardInstall live-task-standard Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install live-task-standard using apt by running the following command:
sudo apt -y install live-task-standardInstall live-task-standard Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install live-task-standard using aptitude by running the following command:
sudo aptitude -y install live-task-standardHow To Uninstall live-task-standard on Kali Linux
To uninstall only the live-task-standard package we can use the following command:
sudo apt-get remove live-task-standardUninstall live-task-standard And Its Dependencies
To uninstall live-task-standard and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove live-task-standardRemove live-task-standard Configurations and Data
To remove live-task-standard configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge live-task-standardRemove live-task-standard configuration, data, and all of its dependencies
We can use the following command to remove live-task-standard configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge live-task-standardDependencies
live-task-standard have the following dependencies:
- apt-listchanges
- bash-completion
- bind9-host
- bzip2
- dbus
- debian-faq
- default-logind
- doc-debian
- file
- gettext-base
- groff-base
- krb5-locales
- libc-l10n
- liblockfile-bin
- libnss-systemd
- live-task-base
- locales
- lsof
- man-db
- manpages
- mime-support
- ncurses-term
- netcat-openbsd
- openssh-client
- pciutils
- perl
- python3
- reportbug
- telnet
- traceroute
- ucf
- usbutils
- wamerican
- wget
- xz-utils
References
Summary
In this tutorial we learn how to install live-task-standard package on Kali Linux using different package management tools: apt, apt-get and aptitude.