dmesgの出力は、システムが起動してからの秒数+ミリ秒数を示しています。
[ 10.470000] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 14.610000] device eth0 entered promiscuous mode
[ 18.750000] cfg80211: Calling CRDA for country: DE
[ 18.750000] cfg80211: Regulatory domain changed to country: DE
Q:秒+ミリ秒を読み取り可能な形式にする方法は?
私のdmesg:
root@OpenWrt:/tmp# dmesg -h
dmesg: invalid option -- h
BusyBox v1.19.4 (2013-03-14 11:28:31 UTC) multi-call binary.
Usage: dmesg [-c] [-n LEVEL] [-s SIZE]
Print or control the kernel ring buffer
-c Clear ring buffer after printing
-n LEVEL Set console logging level
-s SIZE Buffer size
util-Linuxをインストールすることはできません。使用可能なスペースがあまりないためです。
root@OpenWrt:~# df -h
Filesystem Size Used Available Use% Mounted on
rootfs 1.1M 956.0K 132.0K 88% /
/dev/root 2.0M 2.0M 0 100% /rom
tmpfs 14.3M 688.0K 13.6M 5% /tmp
tmpfs 512.0K 0 512.0K 0% /dev
/dev/mtdblock3 1.1M 956.0K 132.0K 88% /overlay
overlayfs:/overlay 1.1M 956.0K 132.0K 88% /
。
root@OpenWrt:/tmp# which awk perl sed bash sh shell tcsh
/usr/bin/awk
/bin/sed
/bin/sh
root@OpenWrt:~# date -h
date: invalid option -- h
BusyBox v1.19.4 (2013-03-14 11:28:31 UTC) multi-call binary.
Usage: date [OPTIONS] [+FMT] [TIME]
Display time (using +FMT), or set time
[-s,--set] TIME Set time to TIME
-u,--utc Work in UTC (don't convert to local time)
-R,--rfc-2822 Output RFC-2822 compliant date string
-I[SPEC] Output ISO-8601 compliant date string
SPEC='date' (default) for date only,
'hours', 'minutes', or 'seconds' for date and
time to the indicated precision
-r,--reference FILE Display last modification time of FILE
-d,--date TIME Display TIME, not 'now'
-D FMT Use FMT for -d TIME conversion
-k Set Kernel timezone from localtime and exit
「読み取り可能な」形式とは何ですか?
—
UVV 14年
おそらくあなたは運が悪いのではないかと心配しています。お使いのシステムは、(例えばへのログのいくつかの種類にカーネルの出力をログに記録する場合は
—
マーティン・フォン・Wittich
/var/log/syslog
Debianシステム上で、そのログをチェックし、それは同じ情報が含まれていますが読めるタイムスタンプであります。
うーん、これは非常に複雑になります。日付操作機能を備えたものにアクセスできないように見えるからです。あなたの
—
テルドン
date
コマンドは-d
フラグをサポートしていませんよね?pythonもありませんか?awk
これはどの実装ですか?それはGNU awk
、少なくとも?
クールな場合は
—
テルドン
date -d
、私の更新された答えが動作するはずです。