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. |
How to install pstree in NetBSD 8.1?
localhost$ pstree
-sh: pstree: not found
How to install pstree in NetBSD 8.1?
localhost$ pstree
-sh: pstree: not found
Found it: https://www.cyberciti.biz/faq/unix-linux-pstree-command-examples-shows-running-processestree/
Thanks
Thanks!
Thanks
It solved my problem :) I was trying: apt-get install pstree
Thanks
Thanks!
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.
Question: I want to create a directory which can appears or view by all users. How to do ?