Check systemd timers linux
All timers with last/next trigger times
systemctl list-timers --all --no-pager
more linux
all 133 commands →
Copy SSH public key
ssh-copy-id -i ~/.ssh/id_ed25519.pub user@host
Rsync with progress
rsync -avz --progress --delete src/ user@host:/dest/
Securely wipe a disk
shred -vzn 1 /dev/sdb
Check SMART disk health
smartctl -a /dev/sda | grep -E 'SMART overall|Reallocated|Pending|Uncorrectable'
Benchmark sequential disk IO
dd if=/dev/zero of=/tmp/testfile bs=1M count=1024 conv=fdatasync