Posted on 11/18/2011
If you setup a playlist and found that XMMS only plays a single song and then stops, there is a solution. After upgrading my pretty much vanilla installation to Fedora 16, I ran across this exact problem. There are 2 thing...
Read More...
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...