Questions
Login | Register RSS
Posted on 08/14/2011
If you are a Linux guru, then you may already be aware of the power of the 'dd' command.  Other then being used to clone drives/partitons, it can also be used to wipe/scrub hard drives & most removal media (such as ... Read More...
Posted on 08/13/2011
To recursively chmod files only, use this command: find /some/folder -type f -exec chmod 644 {} \; This will recursively search your directory tree (starting at directory ‘folder’) and chmod 644 all files only... Read More...
Posted on 08/05/2011
To recursively chmod directories only, use this command: find /some/folder -type d -exec chmod 755 {} \; This will recursively search your directory tree (starting at directory ‘folder’) and chmod 755 all direc... Read More...
« Previous Page Page # 3 of 5 Next Page »