Results 1 to 11 of 11

Thread: Copy Contents of HDD with File Integrity Check Proggy

  1. #1
    Zzzzzzz sleepyhead's Avatar
    Join Date
    Nov 2007
    Posts
    2,514
    Thanks
    373
    Thanked
    292 times in 162 posts

    Copy Contents of HDD with File Integrity Check Proggy

    Just after a simple program (if there is one) that can copy the contents from HDDs upto 300GB to another HDD with some form of file integrity check (either a simple CRC32 check or md5sum check).

    IE I can just set it going, "copy contents from drive x, y and z to drive k" (for example) rather than manually sit there, copy the files, compare CRC values and rebuild files if required using zidrav.

    I'm lazy but want the added security knowing the files are identical.

    Oh and if there is such a program, it being free would be a bonus as it is really only one time use.

  2. #2
    HEXUS.social member Agent's Avatar
    Join Date
    Jul 2003
    Location
    Internet
    Posts
    19,185
    Thanks
    739
    Thanked
    1,614 times in 1,050 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    Acronis will verify files written / read to / from a drive if you request it as part of the process

    Not free though.
    Quote Originally Posted by Saracen View Post
    And by trying to force me to like small pants, they've alienated me.

  3. Received thanks from:

    sleepyhead (07-07-2008)

  4. #3
    The late but legendary peterb - Onward and Upward peterb's Avatar
    Join Date
    Aug 2005
    Location
    Looking down & checking on swearing
    Posts
    19,378
    Thanks
    2,892
    Thanked
    3,403 times in 2,693 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    Comes back to a linux program for me! Am I right in thinking you want to clone/image the disk (which is not the same as just copying files from the file system)

    I have used the Linux dd command to do this - works a treat - fast and free! Verifying the image before and afterwards is not quite so simple. You can calculate the md5 hash of the source drive but the target drive is unlikely to be the same size, so unless you do the md5 hash onn the same number of sectors, you will get a different result.

    You might also want to look at robocopy

    http://www.ss64.com/nt/robocopy.html
    (\__/)
    (='.'=)
    (")_(")

    Been helped or just 'Like' a post? Use the Thanks button!
    My broadband speed - 750 Meganibbles/minute

  5. Received thanks from:

    sleepyhead (07-07-2008)

  6. #4
    Splash
    Guest

    Re: Copy Contents of HDD with File Integrity Check Proggy

    Robocopy for the copying, then Beyond Compare (not free, but at $30 USD it's well worth buying because you WILL use it again if you have it. they also have a 30 day trial, but I'm unsure if it'#s restricted in any way).

  7. Received thanks from:

    sleepyhead (07-07-2008)

  8. #5
    Zzzzzzz sleepyhead's Avatar
    Join Date
    Nov 2007
    Posts
    2,514
    Thanks
    373
    Thanked
    292 times in 162 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    Quote Originally Posted by peterb View Post
    Comes back to a linux program for me! Am I right in thinking you want to clone/image the disk (which is not the same as just copying files from the file system)

    ...
    Heh, not clone, move the files

    There is just alot and last time I attempted something this grandiose, it failed drastically using the simple windows "copy/paste" system. That was back in the Windows 98 days though and was only moving 20 gigs (unlike today's movement of around maybe 500GB...alot of it is collected junk but I am a hoarder so nothing gets deleted...lol).

  9. #6
    Zzzzzzz sleepyhead's Avatar
    Join Date
    Nov 2007
    Posts
    2,514
    Thanks
    373
    Thanked
    292 times in 162 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    Quick question about Robocopy:

    I have a folder on Drive E, say called Misc, and that already has data in it and I also have a folder on Drive G called Misc but with different data within. I want to backup folder Misc on Drive G to the folder called Misc on Drive E. Would Robocopy just append the different data from Drive G onto Drive E or would it overwrite it?

    Also I am using the Robotcopy GUI as I am useless with command lines.

    Sorry, one more question:
    If I use /L under Logging Options will that generate a text files of the folders and files of the source location to the the target location?

  10. #7
    Splash
    Guest

    Re: Copy Contents of HDD with File Integrity Check Proggy

    I have to state that I've never used the Robocopy GUI, so I can't really comment on that. As for your copying to a folder with the same name on a different drive it rather depends - will there be files with the same name in both locations? If so the default behaviour would be to overwrite the file, but there are plenty of switches that can be used to change this.

    the /L switch generates a list of files that would be copied, but doesn't actually copy anything which is good for planning, less good as a scheduled backup. I think the switch you're looking for is /LOG:%file% where %file% is the name of the logfile. I believe unless you specify otherwise that the log file will be created in the directory that you run the Robocopy job from.

    As I'm pretty bored at the mo if you can give me some more details I can probably knock up a quick script for you - pm me the details if you like and I'll see what I can do.

    EDIT - actually it seems that most of your requirements are already there, something like

    Code:
    robocopy g:\Misc e:\Misc /e /LOG:robocopy_log.txt
    should do everything that you need, unless you need to mask so that certain files aren't copied. The /e switch will copy folders even if they're empty, so if you have no subfolders you can drop that.

  11. Received thanks from:

    sleepyhead (29-08-2008)

  12. #8
    Zzzzzzz sleepyhead's Avatar
    Join Date
    Nov 2007
    Posts
    2,514
    Thanks
    373
    Thanked
    292 times in 162 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    There will be different files in G:\Misc and E:\Misc. I want to make sure the contents of the target location isn't deleted when the folder names are the same and instead adds the files from the source location to the target location.

    The GUI is really easy for me, click the switches I need (such as /e, /copyall, /move) and hit run

    Also, thanks for helping me realise what I am doing wrong with trying to make a log file (forgetting to actually give the log file a name so it saved to nothing...ie nothing got saved. lol.)

  13. #9
    Splash
    Guest

    Re: Copy Contents of HDD with File Integrity Check Proggy

    No probs, but I do advise that you read up and fully understand the /move switch before using it...

    The contents of the target location would only be overwritten (nothing would be deleted, unless you use the /mir switch) in the event that there was a file with the same name in the originating location (and even then only if it were newer, though this is the default behaviour again and can be changed)

    Does the GUI generate a batch file or script that you can then run at a later date without using the GUI? I'm not sure if this is something that you only need to run once, but if it's something to be done on a regular basis then it might be worth writing your own...

    As always, if you get stuck let me know and I'll be happy to help.

  14. #10
    Zzzzzzz sleepyhead's Avatar
    Join Date
    Nov 2007
    Posts
    2,514
    Thanks
    373
    Thanked
    292 times in 162 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    I've only used the /move on one occasion and that was to move a folder I had already copied off the old HDD; I put it in the wrong location. Everything else has been a copy of the other drives.

    This should be a one time thing, but as I am copying data from my 200GB PATA and 300GB External HDD and plonking it onto my new spangly HDD, I am re-organising too which makes backing everything up a simple case using Robocopy. Well in the end anyhow. There is also a 120GB PATA and 500GB SATA drive to loot as well...all to fit into a 750GB SATA drive (see "My System").

    The GUI does allow me to save the scripts, which means I can load them up and run them pretty simply. I don't think it makes a batch file, I've not tried yet.

    What other implications come with the /move switch? I know there is /mov and /move the "e" being the sub-directories variable. I also use the retry switch and resumeable copy/move switch (I think they are /R and /Z switch...not at home so can't check).

  15. #11
    Member
    Join Date
    Oct 2006
    Location
    London
    Posts
    195
    Thanks
    4
    Thanked
    19 times in 12 posts

    Re: Copy Contents of HDD with File Integrity Check Proggy

    I use two programs for backup; Karen's Hasher and Karen's Replicator. I use Hasher to create MD5 hashes of all the files in a specific folder (although you can use other algorithms) and then use Replicator to do the copying. You can select whether you wish to compare the files and/or delete them on the destination drive. I then edit the hash file (saved as [name].md5) with the updated paths (i.e. C:\Download\... to G:\Downloads...) and use Hasher to verify that all the files have been copied over successfully without any problems.

    Both programs are free.

    Hasher: http://www.karenware.com/powertools/pthasher.asp

    Replicator: http://www.karenware.com/powertools/ptreplicator.asp

    Note: When using Hasher, if the list of files you wish to hash are in the thousands, it will take a while for the list to be created before you have the option to hash all of them. Try a few hundred files first to see how it works.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 63
    Last Post: 14-11-2011, 09:17 AM
  2. Nero vision express saying:'Burn process failed'
    By johnnr892 in forum Help! Quick Relief From Tech Headaches
    Replies: 15
    Last Post: 11-12-2005, 11:43 PM
  3. Nero or Burner ?
    By Foxile in forum Help! Quick Relief From Tech Headaches
    Replies: 30
    Last Post: 04-04-2005, 07:31 AM
  4. Dodgy DVD-r's ?
    By starside in forum Help! Quick Relief From Tech Headaches
    Replies: 12
    Last Post: 27-03-2005, 06:11 PM
  5. Over-filled HDD? File errors and confusion?
    By Dr. X in forum PC Hardware and Components
    Replies: 9
    Last Post: 18-03-2005, 07:49 PM

Posting Permissions

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