Sunday, February 24, 2013

Website Opt Outs

Tired of slow web page loading because of external includes? 

Opt out of social sharing buttons that clutter websites.  It will place an addthis.com opt out cookie.

Opt out of InviteMedia for DoubleClick.

Friday, January 11, 2013

Add Features to Windows 8

This post described upgrading Windows Vista to Windows 8.

After completing the form for the free Media Center upgrade, I applied the key.  The upgrade was quick, with a reboot.

Performance results:


For a limited time, get a free Windows Media Center to Windows 8 Pro upgrade.

Sunday, December 16, 2012

Find Microsoft Windows Files with Linux

The rainbow tables were unable to crack the password of the account with administrator access, though it did crack password for a non-administrator account.  The next approach, which will always work, is to boot the machine from another operating system that can mount the ntfs file system.  Then read every file.

Download Knoppix Live-CD and and create a bootable CD.

Turn on the PC and bring up the boot order menu.  This could be a press of the <esc> key or a function key.  Refer to your machine manual for the proper key press.

In a later step, an sftp server is useful.  If you need an sftp server for MS Windows, try Xlight FTP Server.

Allow Knoppix to boot into the windowing environment.
Mount the Windows filesystem.  Open File Manager (lower left corner) and click to "/media/sd2/Windows".

Open Terminal emulator (lower left corner).
cd /media/sda2/Windows
mkdir test
cd test

The following find will show errors when it finds the file it just copied.  Ignore those errors or send to /dev/null.  If desired, add lines for additional file name extensions.
find /media/sda2/Windows -name \*.bmp -exec cp '{}' . \;
find /media/sda2/Windows -name \*.jpg -exec cp '{}' . \;
find /media/sda2/Windows -name \*.jpeg -exec cp '{}' . \;
find /media/sda2/Windows -name \*.pic -exec cp '{}' . \;
find /media/sda2/Windows -name \*.pict -exec cp '{}' . \;
find /media/sda2/Windows -name \*.png -exec cp '{}' . \;
find /media/sda2/Windows -name \*.psp -exec cp '{}' . \;
find /media/sda2/Windows -name \*.tif -exec cp '{}' . \;
find /media/sda2/Windows -name \*.tiff -exec cp '{}' . \;

find /media/sda2/Windows -name \*.avi -exec cp '{}' . \;
find /media/sda2/Windows -name \*.mov -exec cp '{}' . \;
find /media/sda2/Windows -name \*.mp4 -exec cp '{}' . \;
find /media/sda2/Windows -name \*.mpg -exec cp '{}' . \;
find /media/sda2/Windows -name \*.vob -exec cp '{}' . \;
find /media/sda2/Windows -name \*.wmv -exec cp '{}' . \;


Create compressed file.
zip imgfiles *
ls -l imgfiles.zip

Transfer the file to another machine.  
Use the network if hardwired or wireless is configured.  Midnight Commander, a GUI ftp, is available on Knoppix.  Or use sftp.
mc
sftp <ipnumber>