我写了一些例程来追踪我的睡眠周期。通常,当我醒来时,我会在几分钟之内打开PC,因此读出系统何时打开以及何时关闭将是很棒的。此程序在这里执行相同的功能https://www.neuber.com/free/pctime/
我尝试使用谷歌搜索可调用这些系统事件的库或函数,但大多数结果是通过命令打开和关闭PC,所以我的问题是:
获取PC打开和关闭时间的最佳方法是什么?
谢谢
答案 0 :(得分:0)
如果您使用的是Linux(此处假设为Systemd),则可以编写一个在启动/关闭时执行代码的服务。该代码会将当前时间戳与指示符“启动”或“关闭”一起写入CSV文件。
这是一个Python3脚本,该脚本以时间戳记为“ updownlog.txt”的时间戳类型作为第一个参数:
import os
import sys
import time
def main():
logfile = "updownlog.csv"
write_header = False
if len(sys.argv) != 2:
sys.exit("Error: script takes exactly one argument")
if sys.argv[1] != "shutdown" and sys.argv[1] != "startup":
sys.exit("Error: First argument should be 'startup' or 'shutdown'")
typ = sys.argv[1]
if not os.path.exists(logfile):
write_header = True
with open("updownlog.csv", "a") as f:
now = time.time()
if write_header:
f.write("type,timestamp\n")
f.write("{},{}\n".format(typ, now))
if __name__ == "__main__":
main()
接下来,您需要创建触发此脚本的系统服务。我无耻地复制了this answer on UnixSX中提供的解决方案:所有功劳归功于“约翰9631”!如果您仍然使用基于init.d的系统,那么在该线程中也会有很好的答案。
因此,为您的日志记录创建服务文件:
vim /etc/systemd/system/log_start_stop.service
并复制文件内容:
[Unit]
Description=Log startup and shutdown times
[Service]
Type=oneshot
RemainAfterExit=true
ExecStart="/home/Sungod3k/log.py startup"
ExecStop="/home/Sungod3k/log.py shutdown"
[Install]
WantedBy=multi-user.target
然后使用以下命令启用服务:
systemctl enable log_start_stop
当然,这还不能告诉您您是否还存在睡眠不足,因此您需要进行一些后处理,例如使用Python或R,甚至使用awk
。