Get date/time of last reboot programmatically

风流意气都作罢 提交于 2019-12-10 07:37:24

问题


I would like to find the time of the last reboot programmatically in Linux. I am using C and C++ in my module.

Is there an API?


回答1:


There's no direct api, but you can read /proc/uptime "file" to learn how many seconds the system have been running, subtract that from the current time - and assume that's when the machine was rebooted.

/proc/uptime This file contains two numbers: the uptime of the system (seconds), and the amount of time spent in idle process (seconds).




回答2:


You could either invoke uptime or take a look at /proc/uptime. Given the current time, and knowing how long the system's been up allows you to calculate the time of the last reboot.

Alternatively, the btime entry in /proc/stat gives the boot time directly (in seconds since the epoch) -- search man proc for btime.




回答3:


Also, you can find the last reboot time by reading the /var/log/wtmp file. This is a binary file but you can parse with it (or your C version of it)

http://pastebin.com/nSVw82cZ

[WARNING! terrible coding style!]



来源:https://stackoverflow.com/questions/4972651/get-date-time-of-last-reboot-programmatically

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!