Results 115 comments of shirou

@Dylan-M Could you provide these uptime examples like [in the test](https://github.com/shirou/gopsutil/blob/master/host/host_aix_test.go#L17-L22)? I want to add those to the test. - additional commas - ut[5] and/or ut[7] is missing

@Dylan-M Thank you for the additional information. This is more complex than I expected. I’m starting to feel that a proper fix might be better than a quick workaround. It...

Looking at this: https://www.ibm.com/docs/en/aix/7.3.0?topic=p-ps-command It does seem that `etime` (or `etimes`? which is correct?) uses a fixed format `[[ dd-]hh:]mm:ss`, looks good! Since using a pipe would involve spawning two...

Thank you for your PR, but could you fix the lint and tests?

Thank you for the report. I can reproduce on my Windows 11 + Google Drive veresion 74.0.3.0. In the first investigation, the error is occurred at [windows.DeviceIoControl](https://github.com/shirou/gopsutil/blob/master/disk/disk_windows.go#L215). On normal C:...

I have implemented `winservices` because [psutil has the feature](https://psutil.readthedocs.io/en/latest/#windows-services). However, I personally think that this feature is different from other psutil features and should be separate as a separate library...

Close for not updating. Feel free to reopen if you have more questions.

perhaps duplicate of #1164.

Please change your code like this. ``` import ( "fmt" - "github.com/shirou/gopsutil/host" + "github.com/shirou/gopsutil/v3/host" ) ``` Without specifing version, your code uses `github.com/shirou/gopsutil v3.21.11+incompatible` which is not latest. You can...

Because if a user want to read just a NumFD, getting other information is waste. So I separate it. However, I know this is not efficient if user like you...