Showing posts with label unix. Show all posts
Showing posts with label unix. Show all posts

Sunday, October 25, 2009

Cool Tools: Rescue CD 3.11

Thanks to F-Secure for putting out this cool tool;



Now it is time to release the new Rescue CD for which we put out the beta some time ago. We decided to update the version number to 3.11 since we added a couple of useful utilities to the CD image. Otherwise this is the same version as is available on our Internet Security 2010 installation CD.



Take a look a the release announcement and download here.

Saturday, June 27, 2009

Recompress gzipped files as bzip2

Just a quickie. No warranties of course ;)

Recompress gzipped items as bzip2

Handy if you need to conserve space in an archive.

for i in `ls *.gz`; do gunzip $i && bzip2 `echo $i | sed s/\.gz//` && echo "finished $i" ; done;