-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix error calling ps on AIX platforms #22
base: master
Are you sure you want to change the base?
Conversation
AIX ps does not support -w option in POSIX mode, only in Berkeley mode ('w'), but Berkeley mode doesn't support -o, so just remove the -ww option and hope for the best. Fixes sarugaku#21
Do you have the |
Also, is it possible to sniff out IBM systems in Python? Do |
The latest man page is here: https://www.ibm.com/support/knowledgecenter/en/ssw_aix_72/com.ibm.aix.cmds4/ps.htm I did not see an equivalent option for |
On AIX, We also run a variant of AIX inside of the IBM i OS. There, |
Does |
Yes, here's a sample:
|
Ah, excellent. I’ll try to implement a parser for that format. Thanks for the help! |
From what I tried,
|
AIX ps does not support -w option in POSIX mode, only in Berkeley mode ('w'), but Berkeley mode doesn't support -o, so just remove the -ww option and hope for the best.
Fixes #21