How To Install rush on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 449 words
Introduction
In this tutorial we learn how to install rush on Ubuntu.
What is rush
rush is:
GNU Rush is a restricted shell designed for sites providing only limited access to resources for remote users. The main binary executable is configurable as a user login shell, intended for users that only are allowed remote login to the system at hand.
A notification service can be implemented individually for each provided client service, using the TCPMUX support found within xinetd, or inetutils-inetd.
The standard use is to create access to a chrooted target directory, typically providing arbitrary combinations of scp, sftp, rsync, cvs, svn, and git. Each service may be further restricted in its capabilities. The administrator configures pattern matching rules for manipulating any incoming request.
The present restricted shell is an alternative to the well known “rssh” package, which provides similar capabilities.
There are three methods to install rush 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 rush Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install rush using apt-get by running the following command:
sudo apt-get -y install rush
Install rush Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install rush using apt by running the following command:
sudo apt -y install rush
Install rush 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 rush using aptitude by running the following command:
sudo aptitude -y install rush
How To Uninstall rush on Ubuntu
To uninstall only the rush package we can use the following command:
sudo apt-get remove rush
Uninstall rush And Its Dependencies
To uninstall rush and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove rush
Remove rush Configurations and Data
To remove rush configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge rush
Remove rush configuration, data, and all of its dependencies
We can use the following command to remove rush configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge rush
Dependencies
rush have the following dependencies:
References
Summary
In this tutorial we learn how to install rush package on Ubuntu using different package management tools: apt, apt-get and aptitude.