Last active
October 7, 2021 05:07
-
-
Save RPTST/5c97df8858650c03bf1c3326869c4f55 to your computer and use it in GitHub Desktop.
SysMonTask is the most windows like task manager you can get.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installation | |
// For Ubuntu=>20.04 | |
sudo add-apt-repository ppa:camel-neeraj/sysmontask | |
sudo apt install sysmontask | |
// Install psutil if Ubuntu<=20.04, other-wise skip this step(more info given below) : | |
sudo pip3 install -U psutil | |
sysmontask // optional to run via terminal but recommended for the first time | |
// For Ubuntu<=20.04(for others it will be installed automatically), psutil will not be installed automatically with sysmontask(python3-psutil doesn't meet the version requirements), hence install with: | |
sudo apt install python3-pip // skip if you already have pip3 installed | |
pip3 install psutil // if you're not planning to use it with root access | |
// OR | |
sudo pip3 install -U psutil // needed to run sysmontask with root access, hence recommended | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment