How to run Bashtop on Debian
To install :
Bashtop is available in Azlux’s repository as well as Debian repository and all you need is to download the Debian package and install it as shown:
$ wget http://packages.azlux.fr/debian/pool/main/b/bashtop/bashtop_0.9.25_all.deb $ sudo dpkg -i bashtop_0.9.25_all.deb
To run, just run :
bashtop
To uninstall :
sudo apt-get remove bashtop
If you want to remove the package and its dependencies that are no longer needed, you can use the following command:
sudo apt-get remove --auto-remove bashtop
Finally, to remove any dependencies that were installed with bashtop
, run the following command:
sudo apt autoremove
It's always a good idea to double-check the name of the package you want to remove before running the command to avoid accidentally removing the wrong package. You can use the dpkg -l
command to list all installed packages on your system.
No Comments