getent passwd | awk -F: '{ print $1 }' | sudo xargs -n1 crontab -l -u | grep -v '^#' | grep -v '^no crontab for'
Category: linux
Journalctl Tricks
journalctl command
vacuum / clean
journalctl --disk-usage
journalctl --vacuum-size=1G
--vacuum-size=BYTES Reduce disk usage below specified size
--vacuum-files=INT Leave only the specified number of journal files
--vacuum-time=TIME Remove journal files older than specified time
read old journal
journcalctl --file /var/log/.../dsdsdsdsdsdsdsds.journal~
goto end of log
sudo journalctl -e
journalctl -e -u certbot.service
journalctl -xeu redis-server.service
list old boots
journalctl --list-boots
Alle Meldungen mit Kennzeichnung error, critical, alert oder emergency anzeigen
journalctl -p err -b
kernel messages only
journalctl -k -e
systemctl list-unit-files
systemctl --failed
# or
systemctl list-units --state=failed
journalctl -xb
Ceph Reset Error
Display a list of messages:
ceph crash ls
read a message:
ceph crash info <id>
mark message as read
ceph crash archive <id>
or mark all as read
ceph crash archive-all
Fish shell Add a directory to the path, but only if it exists
Add a directory to the path, but only if it exists.
function add_path_maybe -d "Add a directory to the path, but only if it exists" # If the path exists... if test -d $argv[1] # ...and if it's not already in the PATH... if not contains $argv[1] $PATH # ...push it to the start of the path. set PATH $argv[1] $PATH end end end
fail2ban does not start on brand new debian 12
Failed during configuration: Have not found any log file for sshd jail
open or create /etc/fail2ban/jail.local
add to [sshd]
section (where you also enable it) a new line backend = systemd
proxmox “/usr/sbin/proxmox-boot-tool not found”
That is a pretty annoying error message. To get rid of it
apt install pve-kernel-helper
journalctl uses a lot of space on my disk
The aswer is you can check the used size and you can shrink the used space.
journalctl --disk-usage journalctl --vacuum-size=1G
Other Options are
--vacuum-size=BYTES Reduce disk usage below specified size --vacuum-files=INT Leave only the specified number of journal files --vacuum-time=TIME Remove journal files older than specified time
ZFS Pool extended Status
Some commands for extended zpool status
ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c health ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c hours_on ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c lsblk ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c smart_test ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c temp ZPOOL_SCRIPTS_AS_ROOT=1 zpool status -c upath
Linux mount domain SMB / cifs
sudo mount -t cifs -o user=dummy,domain=example.local,uid=$(id -u),gid=$(id -g),forceuid,forcegid,vers=2.0 //files.example.local/share ~/P
ssh show host connection config
ssh -G
Archive for category linux
Archives by Month:
- January 2025
- December 2024
- November 2024
- October 2024
- August 2024
- April 2024
- January 2024
- December 2023
- November 2023
- July 2023
- May 2023
- April 2023
- March 2023
- February 2023
- January 2023
- December 2022
- October 2022
- September 2022
- August 2022
- July 2022
- May 2022
- March 2022
- February 2022
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- February 2021
- January 2021
- August 2020
- July 2020
- June 2020
- April 2020
- January 2020
- December 2019
- November 2019
- October 2019
- May 2019
- April 2019
- March 2019
- January 2019
- October 2018
- August 2018
- June 2018
- April 2018
- March 2018
- February 2018
- November 2017
- June 2017
- April 2017
- February 2017
- January 2017
- November 2016
- September 2016
- May 2016
- February 2016
- September 2015
- August 2015
- July 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- July 2014
- June 2014
- April 2014
- January 2014
- December 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- August 2012
- July 2012
- June 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009