Created
May 23, 2016 02:45
-
-
Save leafsummer/94beb97f62926b7e1fc399081f4ac45f to your computer and use it in GitHub Desktop.
install pstree
This file contains 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
Linux pstree shows running processes as a tree. The tree is rooted at either pid or init if pid is omitted. If a user name is specified, all process trees rooted at processes owned by that user are shown. | |
Install pstree | |
#On Mac OS | |
brew install pstree | |
#On Fedora/Red Hat/CentOS | |
yum install psmisc #using psmisc package for pstree | |
#On Ubuntu/Debian APT | |
apt-get install psmisc | |
After above opeation, we can use | |
# man pstree | less | |
to check whether the installation is successful. |
Thanks!
yup, first google hit.. thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!