Fix error calling ps on AIX platforms#22
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,
|
|
@kadler , if you still have access to an AIX machine, you can run |
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