How To Install shtool on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 440 words
Introduction
In this tutorial we learn how to install shtool on Ubuntu.
What is shtool
shtool is:
GNU shtool is a tool for developers of software programs. It is a compilation of small but very stable and portable shell scripts into a single shell tool. All ingredients were in successful use over many years in various free software projects.
The compiled shtool program is intended to be used inside the source tree of other free software packages. There it can overtake various (usually non-portable) tasks related to the building and installation of such a package. It especially can replace the old mkdir.sh, install.sh and related scripts.
GNU shtool currently contains the following tools: echo, mdate, table, prop, move, install, mkdir, mkln, mkshadow, fixperm, rotate, tarball, subst, platform, arx, slo, scpp, version and path.
There are three methods to install shtool on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install shtool Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install shtool using apt-get by running the following command:
sudo apt-get -y install shtool
Install shtool Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install shtool using apt by running the following command:
sudo apt -y install shtool
Install shtool 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 shtool using aptitude by running the following command:
sudo aptitude -y install shtool
How To Uninstall shtool on Ubuntu
To uninstall only the shtool package we can use the following command:
sudo apt-get remove shtool
Uninstall shtool And Its Dependencies
To uninstall shtool and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove shtool
Remove shtool Configurations and Data
To remove shtool configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge shtool
Remove shtool configuration, data, and all of its dependencies
We can use the following command to remove shtool configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge shtool
Dependencies
shtool have the following dependencies:
References
Summary
In this tutorial we learn how to install shtool package on Ubuntu using different package management tools: apt, apt-get and aptitude.