LAMP
Find large files
Want to search for files over a certain size on your linux box? find / -xdev -size +100000k -print This will find files larger than 100MB within the root and it’s subdirectories without venturing onto Read more
Want to search for files over a certain size on your linux box? find / -xdev -size +100000k -print This will find files larger than 100MB within the root and it’s subdirectories without venturing onto Read more
Very neat little tip this… find -type d -exec chmod 755 {} \; Find all directories ( type -d ) under this path ( /dir/to/chmod/all/dirs ) and change their execute mode ( chmod 755 {} \; Read more