journalctl 변경 청취


18

일반적으로 tail -f /var/log/messages줄 바꿈이 있으면 업데이트를 얻는 데 사용 합니다.

비슷한 기능을하는 방법 journalctl?

답변:


26

-f또는 --follow스위치를 사용 하여 로그를 조정할 수 있습니다 .

-f, --follow
    Show only the most recent journal entries, and continuously print new 
    entries as they are appended to the journal.

$ sudo journalctl -f
-- Logs begin at Sat 2013-12-07 21:11:30 EST. --
May 14 18:16:34 somehost.somedom.com systemd[1]: Starting Fingerprint Authentication Daemon...
May 14 18:16:34 somehost.somedom.com systemd[1]: Started Fingerprint Authentication Daemon.
May 14 18:16:34 somehost.somedom.com fprintd[12553]: Launching FprintObject
May 14 18:16:34 somehost.somedom.com fprintd[12553]: ** Message: D-Bus service launched with name: net.reactivated.Fprint
May 14 18:16:34 somehost.somedom.com fprintd[12553]: ** Message: entering main loop
May 14 18:16:37 somehost.somedom.com sudo[12552]: saml : TTY=pts/2 ; PWD=/home/saml ; USER=root ; COMMAND=/bin/journalctl -f
May 14 18:16:40 somehost.somedom.com gnome-session[1787]: 18:16:40 | Listener | Trying to reconnect to tcp://notifications.sparkleshare.org:443/
May 14 18:16:44 somehost.somedom.com sudo[12582]: saml : TTY=pts/2 ; PWD=/home/saml ; USER=root ; COMMAND=/bin/journalctl -f -n 10
May 14 18:16:45 somehost.somedom.com gnome-session[1787]: 18:16:45 | Listener | Disconnected from tcp://notifications.sparkleshare.org:443/: ...d block
May 14 18:16:45 somehost.somedom.com gnome-session[1787]: 18:16:45 | personal_repo | Falling back to regular polling
May 14 18:17:04 somehost.somedom.com fprintd[12553]: ** Message: No devices in use, exit

참고 문헌


2
그것은 호출기를 비활성화하고 두 가지 모두를 갖고 싶어하는 것 같습니다.
Ben Creasy

1
@Ben Creasy $ journalctl -f-어제부터, $ journalctl -f -n 1000
engineerX

1
journalctl --follow --no-tail --no-tail이전 라인을 모두 원할 때 사용됩니다 (-n 100000 또는 임의의 큰 라인 수보다 큼)
Olivier LAHAYE
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.