Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orc/ps-etc
process listing tools (just pstree now, perhaps others later)
https://github.com/orc/ps-etc
Last synced: 5 days ago
JSON representation
process listing tools (just pstree now, perhaps others later)
- Host: GitHub
- URL: https://github.com/orc/ps-etc
- Owner: Orc
- License: other
- Created: 2010-05-22T21:45:32.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T07:01:14.000Z (almost 2 years ago)
- Last Synced: 2024-11-10T07:41:10.932Z (2 months ago)
- Language: C++
- Homepage: http://www.pell.portland.or.us/~orc/Code/ps-etc
- Size: 71.3 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
PSTREE is a clone of the standard Linux pstree command, which displays
process information in a heirarchical fashion. It builds and runs on
SLS linux, FreeBSD 4.4, FreeBSD 4.8, and MacOS 10.0.4. Unlike the
standard pstree, it uses either sysctl() [macOS 10.0.4], kvm_getprocs()
[FreeBSD 4.?] or /proc [SLS linux] as needed.PSTREE is free software; it is released under a BSD-style license
that allows you to do as you wish with it as long as you don't attempt
to claim it as your own work.To install pstree, do
./configure.sh (./configure.sh --help explains options)
make
make install (as root)
If pstree needs to use sysctl() or kvm_getprocs() to read process
information, it will be installed as a setuid process to allow
it to read all of the process data.