Results 1 to 10 of 10

Thread: Transfering disk images via external USB hard drive

  1. #1
    Registered User Clive Long's Avatar
    Join Date
    Jan 2005
    Location
    London-innit
    Posts
    1,467
    Rep Power
    11

    Transfering disk images via external USB hard drive

    Hi,

    My laptop hard drive is chucking out errors.

    I would like to backup to a USB hard drive using a utility / program that runs under both Windows XP and Linux.

    I then want to run some kind of disk checking routine to determine whether I need to buy a new hard drive for the laptop.

    I then want to be able to restore the disk image to the old laptop / disk or to a new device AND for the restored image to boot (either Linux or winXP)

    Any suggestions please?


    Thanks

    Clive

  2. #2
    Registered User
    Join Date
    Jan 2006
    Location
    Chesham
    Posts
    174
    Rep Power
    10

    Re: Transfering disk images via external USB hard drive

    Quote Originally Posted by Clive Long
    I then want to be able to restore the disk image to the old laptop / disk or to a new device AND for the restored image to boot (either Linux or winXP)

    Any suggestions please?
    Acronis True Image could be just what you want, and with a 14 day free trial might definitely be what you want! It can also restore the volumes to the larger size disk you'd obviously get if you need a new one, resizing and rearranging as you choose. FAT16/32, NTFS, Linux Ext2, Ext3, ReiserFS, and Linux SWAP filesystems supported and just blind sector copies for anything else.

  3. #3
    Lovely Moderator ducasi's Avatar
    Join Date
    Feb 2005
    Location
    Glasgow
    Posts
    10,015
    Rep Power
    14

    Re: Transfering disk images via external USB hard drive

    I presume you want the backup to be able to copy both Windows and Linux, but wouldn't actually need to run under both?

    How I'd do it would be to boot the laptop using Knoppix, take a copy of the hard disk using a simple "dd" copy.

    You can then mess with the hard disk, and hopefully copy the disk image back...

    Having multiple partitions and restoring to a different device would complicate matters – especially as you want to multi-boot...

    In fact, it's all definitely easier said than done...

    Given that you have errors on the disk, it's likely that either the disk is failing or there is file-system corruption.

    In the first case, backup it up will be difficult, and restoring to a different disk will be complicated.

    In the second case, you'll have preserved the file-system errors in your image, and so not solved anything...

    So maybe I'd try a combination of tar to backup Linux and your personal files (Linux/Knoppix can mount NTFS file-systems), and re-installing Windows XP and applications...

    Booting Linux once you've copied everything back depends on what boot loader you use. If you're using lilo, you'd need to at least re-run it, grub would also need re-installed as the boot loader if Windows has replaced it. Both can be done from the Knoppix CD I think, given the right parameters...

    There's probably (maybe better or easier?) ways of doing this from within Windows, but the Linux stuff would probably be missed.

    Good luck!

    (EDIT: Looks like Mr Darcy has a better solution... )
    Let your mind go and your body will follow. – Steve Martin, LA Story

  4. #4
    Registered User frodo's Avatar
    Join Date
    Mar 2003
    Posts
    1,156
    Rep Power
    11

    Re: Transfering disk images via external USB hard drive

    Quote Originally Posted by Mr Darcy
    Acronis True Image could be just what you want, and with a 14 day free trial might definitely be what you want! It can also restore the volumes to the larger size disk you'd obviously get if you need a new one, resizing and rearranging as you choose. FAT16/32, NTFS, Linux Ext2, Ext3, ReiserFS, and Linux SWAP filesystems supported and just blind sector copies for anything else.
    Assuming your laptop has a bootable CD drive.

    I'm not sure the trial will allow you to do all you want especially in terms are a bare metal restore.

    However I've used Acronis (TrueImage) versions for years and found it reliable and well worth paying for - after getting over this issue you may find its other backup features quite useful also.

    If you don't want to pay anything they quite frequently have a version on the front of computer magazines, which may do what you want - even if it doesn't you can use it to get an upgrade price.

    Paragon (an Acronis) competitor sometimes also have similar software which is likely to do the job on the front of magazines - may be called Drive Backup / Exact Image / Rescue Kit - I've never found these worth paying for but what you get for free can be quite decent.

  5. #5
    Registered User Clive Long's Avatar
    Join Date
    Jan 2005
    Location
    London-innit
    Posts
    1,467
    Rep Power
    11

    Re: Transfering disk images via external USB hard drive

    Quote Originally Posted by Mr Darcy
    Acronis True Image could be just what you want, and with a 14 day free trial might definitely be what you want!
    Found it online.

    Looks the job.

    When my USB disk arrives I will download True Image and give it a whirl.

    I will probably licence it as it looks the job for doing regular / incremental backups as well as saving the data on this disk.

    Clive

  6. #6
    Registered User
    Join Date
    Mar 2003
    Location
    bedford
    Posts
    4,899
    Rep Power
    13

    Re: Transfering disk images via external USB hard drive

    Not relevant to the question being discussed, but Maxtor have a very nice free disk copy utility called Maxblast that works if you have one of their disk drives.

    http://tinyurl.com/njwwu

  7. #7
    Registered User Clive Long's Avatar
    Join Date
    Jan 2005
    Location
    London-innit
    Posts
    1,467
    Rep Power
    11

    Re: Transfering disk images via external USB hard drive

    Update:

    USB disk arrived. Already formatted as FAT32.

    Plugged disk into Linux laptop. Disk recognised as /dev/sdc1. After a bit of Googling I cobbled together

    Created new mount directory /wdsdc
    Mounted /dev/sdc1 to /wdsdc
    Ran both "cp -r" and "tar" from source directory to /wdsdc on the USB drive

    The copies worked except FAT32 has a 4GB individual file size limit.

    I tried to convert USB drive from FAT32 to NTFS. Failed but I'm sure if I delete all files on the drive the convert will work. Then I can create a tar backup on the USB of whatever size is necessary.

    Clive

  8. #8
    Lovely Moderator ducasi's Avatar
    Join Date
    Feb 2005
    Location
    Glasgow
    Posts
    10,015
    Rep Power
    14

    Re: Transfering disk images via external USB hard drive

    Hi Clive,

    Can your Linux write to NTFS?

    I ran into this problem yesterday when I was trying to make a copy of a 160GB disk in a file on a 250GB disk, formatted as FAT32.

    If you are writing your backup as a tar file, you can pipe the output of tar into "split" to create multiple files to get around the 4G limit.

    Recombining them to restore is as simple as using "cat".
    Let your mind go and your body will follow. – Steve Martin, LA Story

  9. #9
    Registered User Clive Long's Avatar
    Join Date
    Jan 2005
    Location
    London-innit
    Posts
    1,467
    Rep Power
    11

    Re: Transfering disk images via external USB hard drive

    Quote Originally Posted by ducasi
    If you are writing your backup as a tar file, you can pipe the output of tar into "split" to create multiple files to get around the 4G limit.

    Recombining them to restore is as simple as using "cat".
    Hi Ducasi

    Subtle.

    I used the following

    tar -cvvf winsamba.tar /Winsamba-v2/ | split -b 4000m

    and ended up with one file, winsamba.tar, that is 4Gb. The source data is over 9GB so I don't feel the split has actually done its job.

    Any ideas?

    Thanks

    Clive

  10. #10
    Lovely Moderator ducasi's Avatar
    Join Date
    Feb 2005
    Location
    Glasgow
    Posts
    10,015
    Rep Power
    14

    Re: Transfering disk images via external USB hard drive

    Try this...
    Code:
    tar cf - /Winsamba-v2/ | split -b 4000m - winsamba.tar.
    Let your mind go and your body will follow. – Steve Martin, LA Story

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. External Hard drives
    By under par in forum Geeks' Corner
    Replies: 38
    Last Post: 28th-April-2006, 02:30 AM
  2. Using Apple iView to publish digital images
    By Clive Long in forum Geeks' Corner
    Replies: 9
    Last Post: 2nd-February-2006, 01:13 PM
  3. Images of dancers
    By DianaS in forum Let's talk about dance
    Replies: 10
    Last Post: 30th-September-2004, 02:40 PM

Tags for this Thread

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •