Y
Hacker News
new
|
ask
|
show
|
jobs
by
rakoo
4263 days ago
I don't even have an esoteric setup and every time I want to read logs I'll have to wait 30 secs. Even though there is absolutely no activity.
3 comments
toupeira
4263 days ago
Try "journalctl -e" or "journalctl --since today", it seems like by default it will load
all
available logs which leads to this slugishness.
link
perlpimp
4263 days ago
it is slow because log is read written in a block binary format but pager accepts byte granular fseek feature to go forward without loading everything into $PAGER's buffers.
link
rakoo
4263 days ago
See ? People complaining before reading TFM. Thank you !
link
vidarh
4263 days ago
Sounds like you're running into some bug. I've never run into any perceptible lag.
link
the_mitsuhiko
4263 days ago
That sounds odd. Did you try to strace it and see what it actually does?
link