Copy SSH public key linux
Append public key to remote authorized_keys
ssh-copy-id -i ~/.ssh/id_ed25519.pub user@host
more linux
all 133 commands →
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
Show running containers namespaces
lsns -t net,pid,mnt