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
아마 당신이 아마 운이 좋지 않을까 걱정입니다. 시스템이 커널 출력을 어떤 종류의 로그에 기록하는 경우 (예를 들어
—
Martin von Wittich
/var/log/syslog
데비안 시스템의 경우 해당 로그를 확인하십시오. 동일한 정보를 포함하지만 읽을 수있는 타임 스탬프를 포함 할 수 있습니다)
흠, 날짜 조작 기능이있는 것에 액세스 할 수 없기 때문에 이것은 매우 복잡합니다. 당신의
—
terdon
date
명령은 -d
깃발을 지원하지 않습니다 . 그리고 파이썬도 없어요? 어떤 awk
구현입니까? 그것은인가 GNU awk
적어도?
멋진 경우
—
terdon
date -d
업데이트 된 답변이 작동합니다.