Uptime under linux in C

后端 未结 3 1737
说谎
说谎 2021-02-20 05:41

How can I retrieve uptime under linux using C? (without using popen and/or /proc)

Thanks

相关标签:
3条回答
  • 2021-02-20 06:03

    Via top or via uptime, but I don't know about any syscall, someone will for sure :)

    uptime should be rather easy to parse.

    Just stumbled into this:

    #include <sys/sysinfo.h>
    
    struct sysinfo info;
    sysinfo(&info);
    printf("Uptime = %ld\n", info.uptime);
    
    0 讨论(0)
  • 2021-02-20 06:17

    To get the system start time in a more portable way, would be to use "who -b". To use this in a program you would have to spawn a shell and interpret its output. Unfortunately this seems the only place where such an information is available in POSIX, and this also only as an extension.

    0 讨论(0)
  • 2021-02-20 06:20

    If its there and contains the member uptime, struct sysinfo is the preferred way to go, as Jack explained.

    The other way is to read btime out of /proc/stat , then just subtract it from the current time. btime is just a UNIX epoch indicating when the kernel booted.

    That gives you the # of seconds since boot, which you can then translate into years / months / days / hours / etc. This saves having to deal with strings in /proc/uptime. If btime isn't there, and struct sysinfo has no member named uptime, you have to parse /proc/uptime.

    For modern kernels, sysinfo() should work just fine. Most things still running 2.4 (or earlier) out in the wild are appliances of some kind or other embedded systems.

    0 讨论(0)
提交回复
热议问题