Siduction Forum

Siduction Forum => Software - Support => Topic started by: vayu on 2017/11/08, 15:58:43

Title: How to remove most from console output
Post by: vayu on 2017/11/08, 15:58:43
There are places where console output is automatically piped through most, for example the command "systemd-analyze blame" will automatically go through most.
How can I remove most from being automatically inserted before console output on my system?
Title: Re: How to remove most from console output
Post by: towo on 2017/11/08, 22:16:12
systemd-analyze --no-pager blame
same for

journalctl
Title: Re: How to remove most from console output
Post by: vayu on 2017/11/08, 23:04:28
Thanks.
Title: Re: How to remove most from console output
Post by: der_bud on 2017/11/09, 16:37:32
In addition, there are perhaps some environment variables set on your system, like $SYSTEMD-PAGER and $PAGER. Maybe you can alter those with something like this in your .bashrc export SYSTEMD_PAGER=' '
(Disclaimer: I've not played around with this, it's just a hint for probable google-search-keywords ;) )