Linux Workspace Shortcuts

  • Ctrl+Alt and tap an arrow key to quickly move up, down, left, or right between workspaces
  • Shift+Ctrl+Alt and tap an arrow key to switch between workspaces.
Read More

LVM Extend ROOT with EXT4 File System

Problem: root partition was full.

$ df -h
Filesystem                         Size  Used Avail Use% Mounted on
udev                               3.9G     0  3.9G   0% /dev
tmpfs                              799M   67M  732M   9% /run
/dev/mapper/silver--vg-root         37G   36G     0 100% /
...
Read More

Postfix Monitor Sent Mails and Block Domains

Check how many mails has been sent via postfix.

If the number is to big, it must be hacked by someone on some services.

sudo grep "status=sent" /var/log/mail.log | egrep -ve 'postfix/(cleanup|pickup|master|qmgr|smtpd|local|pipe)' | wc -l
Read More