3

如何从 proc 文件中获取系统时间?我知道我们可以从一些命令(例如日期)中获取系统时间,也可以编写一些基于时间 API 的代码。但我真的需要使用一个简单的 proc 文件来获取时间。无论时间格式是什么,一个简单的值都可以。例如,从 1970/1/1 开始的总秒数确实足够好。

4

2 回答 2

14

是的你可以 :

cat /proc/driver/rtc

来自男人:

RTC vs system clock
   RTCs should not be confused with the system clock, which is a
   software clock maintained by the kernel and used to implement
   gettimeofday(2) and time(2), as well as setting timestamps on files,
   and so on.  The system clock reports seconds and microseconds since a
   start point, defined to be the POSIX Epoch: 1970-01-01 00:00:00 +0000
   (UTC).

更多在这里

于 2013-01-26T23:46:27.373 回答
1

您可以获取自系统启动以来的时间量/proc/uptime,但我不知道从中获取实时时间/proc

于 2011-03-09T13:18:34.400 回答