我正在记录udevadm monitor
输出并想要打印事件的日期时间。
这是该日志中的一行。
UDEV [529296.231213] remove /devices/virtual/input/input46 (input)
从 udevadm 手册页:
udevadm monitor [options]
Listens to the kernel uevents and events sent out by a udev rule and prints the devpath of the event to the console. It can be used to analyze the event timing, by comparing the timestamps of the kernel uevent and the udev event.
如何将该时间戳 529296.231213 转换为实际日期时间。用Python解析:
timestamp = 529296.231213
dt = datetime.datetime.fromtimestamp(timestamp)
产生1986-06-12 11:51:36.231213
,而现在是 2023 年 4 月 27 日下午晚些时候。