** Reply to message from [EMAIL PROTECTED] on Fri, 6 Jun 2008 08:15:33 -0700


> Yay! There is even a YouTube video on how to backup & then
> defrag + resize Win2K with the Ubuntu CD.
>
> http://www.youtube.com/watch?v=WU9KY5DObDA

sweet! an actual useful youtube video. :-)

FYI, here is how I backed up a preinstalled NTFS partition years ago when I
purchased a new laptop:

Note: You can do this with a liveCD and mount a remote filesystem into your
$HOME/mnt directory or use the ssh code commented out at the bottom. I
already had it repartitioned and backed up to a local partition first.

#!/bin/bash

echo Adding ntfsProgs if they are not here. You'll need your user password to
proceed.
sudo apt-get install ntfsprogs

if [ -f /mnt/ntfsBackup.img ]; then
  echo Danger Will Robinson!, There is already a backup image.
  ls /mnt/
  exit
else
  echo Mounting restore Image location
  sudo mount /dev/hda5 /mnt
fi

echo Ready to restore hda1
sudo ntfsclone --save-image --output /mnt/ntfsBackup.img /dev/hda1

#or for a remote backup using ssh
#ntfsclone --save-image --output - /dev/hda1 | ssh $remotehost ?( cat > xp.img
)?

Doug


--
KPLUG-List@kernel-panic.org
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list

Reply via email to