Archive for October, 2009

01
Oct
09

Change MySQL root password

mysqladmin -u root -p'oldpassword' password newpass
01
Oct
09

Recursively chmod

Recursively chmod directories only:
find . -type d -exec chmod 755 {} \;

Recursively chmod files only:
find . -type f -exec chmod 644 {} \;