Wednesday, June 27, 2007

Find the largest files in *nix systems

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

Sunday, June 17, 2007

Configuring SSH in Windows

Install Cygwin
Select additional component: openSSH
Launch cygwin prompt
Run ssh-host-config
Start sshd

An decent walkthough is here.