When you use the command journalctl -p err -b for example, you get an answer that ends with "END". What command do I use to end this and get the opportunity to enter the next command without having to close the window and open a new one?
erik@server ~ $ journalctl -p err -b
-- Logs begin at sön 2019-09-22 20:17:42 CEST, end at sön 2019-09-22 20:20:01 CE
sep 22 20:17:51 server iscsid[1289]: iSCSI daemon with pid=1290 started!
lines 1-2/2 (END)
lessitself but aless-related library, causepidof lessoutputs nothing while it's running, and I tried to disable the paging withLESS=F journalctl -p err -bbut it didn't work. Compare togitwhere both of those work. – wjandrea Sep 22 '19 at 17:25less. With$SYSTEMD_PAGERand$PAGERunset,journalctltries some commands, including (as journalctl(1) says)less. But it triespagerfirst. In Debian and Ubuntu,/usr/bin/pageris a symlink to/etc/alternatives/pager, which is a symlink to/bin/less(which users rarely change). Sopidof lessdoesn't work butpidof pagerdoes.journalctlresets$LESS, by default toFRSXMK, but you can set$SYSTEMD_LESS.FRSXMKcontainsFbut theFoption only disables paging when neither vertical nor horizontal scrolling is needed; see theSoption. @wjandrea – Eliah Kagan Sep 23 '19 at 10:38