Category: Tools

dd for Windows
article #332, updated 4947 days ago

dd for Windows, including support for /dev/zero and /dev/random, is available here:

http://www.chrysocome.net/dd

This is NOT the dd which comes with Cygwin.

Categories:      

==============

Boot Linux from USB
article #321, updated 4976 days ago

This tool:

http://unetbootin.sourceforge.net/

runs on Windows, Linux, and Mac, and it will prepare a USB stick to boot and run several different distributions of Linux.

Categories:      

==============

Convert (or Extract) to MP3 using FFMPEG
article #316, updated 4977 days ago

To convert many formats to MP3, and to extract audio from many video formats to MP3 files, one may use FFMPEG:

ffmpeg -i sourcefile.xyz outputfile.mp3

A bash script to create an mp3 from every file in a folder, is thus:

#!/bin/bash
for sourcefile in *; do 
	ffmpeg -i "${sourcefile}" -ab 192k "${sourcefile}".mp3
done

Notice the “-ab 192k”. By default, ffmpeg seems to transcode to MP3 at 64k, regardless of input; this is not very high quality, whereas 192k does well for general use.

Categories:      

==============

IP Scanner
article #317, updated 4982 days ago

A very good IP scanner:

http://www.angryip.org/w/Home

This tool will determine a large number of different things about any device set up on a TCP/IP network, including DNS, NetBIOS, ports open, ports closed, and a lot more.

Categories:      

==============

Excellent utilities here
article #305, updated 5024 days ago

Just found this:

http://www.roadkil.net/downloads.php

Many excellent utilities there.

Categories:      

==============

Windows 2003 Resource Kit (rktools)
article #232, updated 5192 days ago

For some reason, the last time I googled for this it was three pages deep.  Here are the rktools :

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&DisplayLang=en

Categories:      

==============

Speed up Windows 7
article #191, updated 5307 days ago

There are lots of things which can be done to speed up Windows 7.  These are just about essential on netbooks.

http://www.computingunleashed.com/speed-up-windows-7-ultimate-guide-to.html

Categories:      

==============

Compare very big files
article #185, updated 5324 days ago

To compare very big files, one of the best ways is to compute ‘hash codes’ for them. ISO download sites use these all the time, but there are many other uses too. The most common hash code in use now is md5, but there are recent reports that it has problems; md6 is highly recommended. The tool at the following site does a large number of different ones, in a convenient GUI manner.

http://hashcodes.com

Categories:      

==============

Hidden Start – Run Console Applications & Batch Files without any Window in the Background
article #165, updated 5369 days ago

A great tool:

http://www.ntwind.com/software/utilities/hstart.html

Categories:      

==============

Defrag the page file
article #159, updated 5396 days ago

Defrags the page file, the virtual memory disk file or files, at boot:

http://technet.microsoft.com/en-us/sysinternals/bb897426.aspx

Categories: