Slashdot Mirror


Experiences w/ Drive Imaging Software?

Futurepower(R) asks: "Microsoft Windows 2000 and Windows XP have crippled file systems. The file system cannot copy some of the files that are necessary to the operating system. If you don't have experience with Microsoft operating systems, you may find this amazing, but it is true; Microsoft supplies no method of backing up and restoring fully operational copies of Windows 2000 and Windows XP. Microsoft's advice is to reinstall the operating system and all programs every time you want to move to a new or backup computer. For confirmation of this, see the 'Microsoft Policy Statement' in the article, The Microsoft Policy Concerning Disk Duplication of Windows XP Installations. Many industries use numerous programs; installing them all may take a week or even more. All of the disk image duplication programs I've used have problems, in my experience. What program do you use? What has been your experience with it? Can you recommend a program, or recommend staying away from one?"

"This policy of providing no way to backup and restore a fully installed system is impossible for corporations, of course. So Microsoft technical support representatives recommend sector-by-sector disk image duplication, even though it is against Microsoft policy. Copying each sector of a hard drive bypasses Microsoft's copy protection by which Microsoft punishes all users, even if they are honest.

Sometimes Microsoft technical support recommends using 'third-party' disk image programs. For example, sometimes support representatives recommend using Symantec Ghost.

All of the disk image duplication programs I've used have problems, in my experience. So, here's a question: What program do you use? What has been your experience with it? Can you recommend a program, or recommend staying away from one?

Here are my experiences:

Symantec Ghost sometimes fails with non-specific error messages. Uninstalling Ghost does not uninstall all the Ghost software. Symantec is one of the companies using copy protection, so using Symantec products may be a case of jumping from the Microsoft frying pan to the Symantec copy protection fire; also, you have no assurance that the copy protection will not become worse in the future.

PowerQuest DriveImage and DeployCenter have an uncertain future. PowerQuest was bought by Symantec. This was after PowerQuest released DriveImage 7 with problems. The sale cannot be a happy event for those who spent hundreds of dollars on DeployCenter.

I've tried Acronis True Image. I've had better luck with it than with Symantec or PowerQuest products. However, like the others, it sometime gives non-specific error messages that say something like, 'I've failed, and I'm not going to tell you how to troubleshoot the problem.'

Fred Langa, publisher of LangaList, recommends BootIt. I have no experience with it.

I haven't tried g4u, free, open source software provided under the BSD license g4u has the drawback that it writes only through FTP. There is no way to write to a network drive or a CD-R.

It's disgusting; people just want to make functional backups, but to do it they are dragged over the coals."

837 comments

  1. Has always worked for me ... by bigjocker · · Score: 5, Funny

    dd if=/dev/hda1 of=/dev/hdb1

    If you want to encrypt after the copy you can do

    dd if=/dev/random of=/dev/hdb1

    --
    Life isn't like a box of chocolates. It's more like a jar of jalapenos. What you do today, might burn your ass tomorrow.
    1. Re:Has always worked for me ... by cdc179 · · Score: 5, Informative

      For backups partimage is much better than dd. This is because partimage only copies the used blocks, whereas dd copies every block.

      Partimage can compress data by a factor of 2. I have used it to backup/restore windows boxes on many occations and works great.

      from winblows box:
      1. boot off knoppix 2. nfs mount an export that has enough room to hold the backups. 3. use partimage to backup patition(s) to nfs mounted frive.

      There are option on partimage to break the backup into managable sizes (say 600MB chuncks) for easy CD archiving.

    2. Re:Has always worked for me ... by tankdilla · · Score: 0, Redundant

      doesn't it cost $699 to do that?

      --

      -Look lively. LOOK LIVELY!!! --Mr. Shmallow

    3. Re:Has always worked for me ... by Wakkow · · Score: 1

      I know the second one was a joke.. But does dd work if the drives are different sizes? I was under the impression they had to be the same.. What if I just create the partition to be the same size. Would that work?

    4. Re:Has always worked for me ... by Wakkow · · Score: 1

      Looks good.. The only problem is that their site lists NTFS support as experimental.

    5. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      I have a 3GB image I use to set up new workstations at work using the above image. Once the image is on the machine, I use Partition Magic to resize the partition.

      Alternatively, you could just set up a D drive with the remaining space to use for user data.

    6. Re:Has always worked for me ... by tuffy · · Score: 1
      I know the second one was a joke.. But does dd work if the drives are different sizes? I was under the impression they had to be the same.. What if I just create the partition to be the same size. Would that work?

      It makes more sense to image the hard drive to some file, preferably an external one. For example:

      dd if=/dev/sda1 | ncftpput -c -u username site.com filepath

      And then use ftp to retrieve it back again later.

      --

      Ita erat quando hic adveni.

    7. Re:Has always worked for me ... by cdc179 · · Score: 2, Insightful

      It is experimental, but has worked for me on several win2k NTFS machines.

      Doh, Forgot to preview on parrent and noticed lots of typos......good thing didn't major in english...

    8. Re:Has always worked for me ... by bahamat · · Score: 5, Informative

      Parent was modded funny, but the reality of the situation is that ZD Mag did a study of every disk imaging utility they could get their hands on.

      Their pick for best disk imaging utility on the planet was none other than GNU dd. I've used dd several times to back up a Windows installation to a different disk and restored it with no problem. The host OS doesn't even have to support the filesystem of the target filesystem since it works at a lower level.

      LNX-BBC is the perfect backup utility. It's self contained, aproximately 50M, and it can read/write to many types of network storage, and of course comes with GNU dd.

    9. Re:Has always worked for me ... by Mad+Marlin · · Score: 1

      If you can get Unix on it for the transfer (and with single-floppy Linuxes this should not be a problem) then just good old fashioned cp -Rp should do the trick, right?

    10. Re:Has always worked for me ... by mcrbids · · Score: 1

      dd if=/dev/random of=/dev/hdb1

      Shouldn't this be...

      dd if=/dev/urandom of=/dev/hdb1

      urandom provides a better random number, right?

      You've just seen the benefits of OpenSource (TM) at work!

      --
      I have no problem with your religion until you decide it's reason to deprive others of the truth.
    11. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      It..was...a..JOKE. A JOKE.

    12. Re:Has always worked for me ... by Wakkow · · Score: 1

      Their site says this:

      "The NTFS (Windows NT File System) is currently not fully supported: this means you will be able to save an NTFS partition if system files are not very fragmented, and if system files are not compressed."

      So yes, it should almost always work fine for fresh installs. Thanks cdc..

    13. Re:Has always worked for me ... by Hi_2k · · Score: 1

      Knoppix may not have ntfs WRITE support, but its read support is perfect. Then, using Samba included on the disk, you can copy over the network to a waiting NT machine. This works for copying any files over, and for booting you can just install Grub, which works better anyway.

      --
      When life gives you crap, Make Crapade.
      Sluggy Freelance.
    14. Re:Has always worked for me ... by HTH+NE1 · · Score: 2, Insightful

      dd to a disk works if the destination volume is equal to or greater than the source volume size. The destination disk then has a partition table that doesn't reflect the drive's true capacity. (Much like formatting a 160 GB drive for only 128 GiB.) If the resulting drive is to become your volume for regular use, you can edit the partition table to allocate the rest of the disk as an empty partition and use that space for whatever purpose you have in mind.

      Of course, then your next dd will need a drive of that size or bigger.

      --
      Oh, say does that Star-Spangled Banner entwine / The myrtle of Venus with Bacchus's vine?
    15. Re:Has always worked for me ... by YetAnotherDave · · Score: 2, Informative

      Why is the parent modded as 'funny'?

      this is the most reliable system I've seen (I admin ~ 75 win32 desktops). Ghost occasionally fails in wierd ways, which sometimes don't get noticed right away (this is really bad).

      You can do it to files as well, which is a bit more useful
      dd if=/dev/hda1 of=/nfsmount/on/big/drive/billsBox.image && gzip -9 /nfsmount/on/big/drive/billsBox.image

      for speed reasons you'll probably want to compress on the nfs server, but you get the idea...

      caveat: for new installs, remember to make the image before joining the box to your domain, to avoid name-conflict issues

    16. Re:Has always worked for me ... by molarmass192 · · Score: 1

      You mean partitions and it will *work* from a smaller parition to a larger one but you'll be unable to access the extra space. since the filesytem will be sized to the smaller partition due to the imaging.

      --

      Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws-Plato
    17. Re:Has always worked for me ... by timeOday · · Score: 2, Informative
      For backups partimage is much better than dd. This is because partimage only copies the used blocks, whereas dd copies every block.


      First run this script (under cygwin on Windows)

      #!/bin/bash
      dd if=/dev/zero of=zeroes
      sync
      rm -f zeroes

      That'll zero out the free space, so it will compress down to nothing when you run

      bzip2 -c /dev/hda1 | ssh backuphost 'cat > WindowsBackup.bz2'

      But to be honest I haven't tried a restore yet!
    18. Re:Has always worked for me ... by cdc179 · · Score: 1

      You don't need NTFS write support in knoppix for partimage/NFS solution.

      partimage works like dd but only copies the used blocks. And the only mention of mounting the NFS export (assuming user has a Unix box around) to store backups. Yes if you want to use mount -t smbfs -o.... to save the partimage files to a remote windows file server that would work as well. The fileserver you store the backups to isn't the issue, just used NFS in my origional post as an example.

      In the NFS example there isn't anything related to having NTFS write, you need to know what't going on before stating comments like the one you posted.

    19. Re:Has always worked for me ... by hhnerkopfabbeisser · · Score: 2

      dd doesn't care about this stuff, it just reads/writes the data byte by byte...

    20. Re:Has always worked for me ... by timeOday · · Score: 2

      You can restore to a larger partition, then resize the filesystem to fill the new partition. I don't see how you could restore to a smaller partition.

    21. Re:Has always worked for me ... by Kazymyr · · Score: 1

      Nice try, but there's no /dev/zero under cygwin. Or /dev for that matter. Would work if you mounted the partition from Linux though.

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
    22. Re:Has always worked for me ... by hhnerkopfabbeisser · · Score: 1

      He was modded funny because he seems to regard a partition full of random data as "encrypted".

    23. Re:Has always worked for me ... by AyeRoxor! · · Score: 2, Insightful

      "Even if you do learn to speak correct English, whom are you going to speak it to? -- Clarence Darrow "

      Is that funny/witty because it should be 'To whom are you going to speak it'?

    24. Re:Has always worked for me ... by bahamat · · Score: 1

      Yes, I was aware. But in addition to the joke he brought up a very good point, which I elaborated on.

    25. Re:Has always worked for me ... by MCZapf · · Score: 2, Insightful

      Yeah, but the notes immediately below that are more assuring. It says that if it can't handle your NTFS partition, it will tell you (with an error message) during the backup process. Thus, you shouldn't be stuck later with an image you can't restore.

    26. Re:Has always worked for me ... by ron_ivi · · Score: 1
      Why

      dd if=/dev/hda1 of=/dev/hdb1

      instead of

      cp /dev/hda1 /dev/hdb1

    27. Re:Has always worked for me ... by Anomylous+Howard · · Score: 1

      Cygwin has /bin/yes which produces an endless stream of "y<CR><LF>" which should compress pretty well also.

    28. Re:Has always worked for me ... by gnu-generation-one · · Score: 1

      dd if=/dev/hda1 of=/dev/hdb1

      For anyone thinking "that won't work on Windows", you can get a linux boot CD at the Linux-BBC project, or get them with a FSF membership. Or use knoppix if you want a full installation on bootable CD.

      Oh yeah, and stop reccommending Windows for corporate desktops.

    29. Re:Has always worked for me ... by Snags · · Score: 1

      Better make that more complicated because of file size limitations.

      --
      main(O){10<putchar((O--,102-((O&4)*16| (31&60>>5*(O&3)))))&&main(2+ O);}
      LN2 is cool!
    30. Re:Has always worked for me ... by cayenne8 · · Score: 1
      "dd to a disk works if the destination volume is equal to or greater than the source volume size. The destination disk then has a partition table that doesn't reflect the drive's true capacity. (Much like formatting a 160 GB drive for only 128 GiB.) If the resulting drive is to become your volume for regular use, you can edit the partition table to allocate the rest of the disk as an empty partition and use that space for whatever purpose you have in mind."

      Isn't this basically how you go about 'resizing' your drive in Tivo? Take out the original, pop it into a Linux box, dd to another drive...and put back into the Tivo?

      --
      Light travels faster than sound. This is why some people appear bright until you hear them speak.........
    31. Re:Has always worked for me ... by AndroSyn · · Score: 1

      /dev/random provides more entropy, however, it will block once your entropy pool has been exhausted, and will sit until its refilled. /dev/urandom on the other hand, will never block on you, at the expense of the output not being anywhere near as random.

    32. Re:Has always worked for me ... by gte910h · · Score: 1

      This is simple and works VERY VERY reliably (as long as hdb1 bigger than or equal to hda1. With creative mounting, its very simple to copy any os install to multiple disks and tomsrtbt.

      --
      Want to see every step I took to start my company? http://www.rowdylabs.com/blogs/pitchtothegods
    33. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      Exactly, or almost :-)

      I routinely use dd and pipe the output to tar in order to get a compressed (gzip) backup file.

      Note that you can't use bzip2 here !!! It needs
      to see the whole file before it starts
      compressing and you'll probably run out of RAM before the wohle disk has been read :-p

      But for Win 9x, do even simpler: use tar !
      Yes, you can backup your win 9x OS like this:
      - boot from the KNOPPIX CD
      - tar tzvf /mnt/backup_disk/backup.tgz /mnt/win_c

      After restoring, you need to make the hdd bootable again, so a DOS floppy is needed (or the Win98 install CD).

      Stephane

    34. Re:Has always worked for me ... by penguinboy · · Score: 1

      You don't need NTFS write support in knoppix for partimage/NFS solution.

      So how do you restore the image, once you've made it?

    35. Re:Has always worked for me ... by Hast · · Score: 1

      cp would require that you can read the the partition as a filesystem. Using dd doesn't have that requirement.

    36. Re:Has always worked for me ... by aminorex · · Score: 1

      ok, do this instead:

      echo '^@' > zeroes
      while cat zeroes >> zeroes; do echo -n . ; done

      --
      -I like my women like I like my tea: green-
    37. Re:Has always worked for me ... by domninus.DDR · · Score: 1

      You are writing THE partition, not INSIDE the partition / filesystem. Imagine reading a jpeg and getting rid of redundant characters / trash, then writing this new version sometime later to disk. You wouldn't need that much info on the jpeg format, just enough to know what was not being used. In other words: you aren't changing anything *within* the filesystem.

    38. Re:Has always worked for me ... by scumdamn · · Score: 1

      Directly to the blank space on the awaiting hard drive. This happens at a layer below the file system.

    39. Re:Has always worked for me ... by bigjocker · · Score: 1

      dd operates at a different level than cp.

      cp copies data as read by the kernel from the filesystem.

      dd dumps the raw bytes stored on the physical disk. Which OS or filesystem used in the disk is meaningless, you only care for the raw bytes. Of course, it is only safe if no process is writing to the disk.

      --
      Life isn't like a box of chocolates. It's more like a jar of jalapenos. What you do today, might burn your ass tomorrow.
    40. Re:Has always worked for me ... by HTH+NE1 · · Score: 1

      Isn't this basically how you go about 'resizing' your drive in Tivo? Take out the original, pop it into a Linux box, dd to another drive...and put back into the Tivo?

      Yeah, that's how it used to be done. The current method uses Tiger's MFSTools 2.0 CD to copy the streams from the old drive(s) to new MFS partitions on the new drive(s). Which is like copying all the files from one drive to another with a tool that knows the filesystem.

      dd doesn't care about filesystems or partition tables for that matter. It just copies from one file to another, except that it does it in chunks of a specified (or default) block size typically used in filesystems.

      --
      Oh, say does that Star-Spangled Banner entwine / The myrtle of Venus with Bacchus's vine?
    41. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      Or use Ranish Partition Manager. Boots from a floppy and can do what dd does plus much more...

      I've been using it for years.

    42. Re:Has always worked for me ... by Short+Circuit · · Score: 1

      Better yet,

      dd if=/dev/hda of=/dev/nb0

    43. Re:Has always worked for me ... by ron_ivi · · Score: 1
      Aren't you confusing

      cp /mnt/hda1 whatever

      whith

      cp /dev/hda1 whatever

      dd(1) uses read(2) just like cp(1) does.

    44. Re:Has always worked for me ... by phaktor · · Score: 2

      This is how I've done it:

      First, zero out all space on partition.

      # dd if=/dev/zero of=/var/zerofile
      # rm /var/zerofile

      Rinse and repeat for each partition.

      Now get image

      # dd if=/dev/sdb | gzip > hd.img.gz ...

      to recover:

      # zcat hd.img.gz | dd of=/dev/sdb

      if you tweak wget you can use a small boot disk to do a remote restore from a ftp or a http server.

      --
      I don't use eleetism in my Email
    45. Re:Has always worked for me ... by ron_ivi · · Score: 1
      Not really. I can
      "cat /dev/hda1"
      or
      "copy /dev/hda1"
      or
      'open("/dev/hda1",O_RDONLY)'
      even if it doesn't have a filesystem.

      What makes you think otherwise?

      Try "sudo strings /dev/hdaX" on your swap device. It'll work fine, and give you fun insights into privacy you might not have had.

    46. Re:Has always worked for me ... by Pootie+Tang · · Score: 1

      There is a GPLed program called Eraser that can be used under windows. Eraser can also zero out cluster tips. Designed as a secure delete, you'll need to some minor configuration to write just zeros.

    47. Re:Has always worked for me ... by timeOday · · Score: 1

      Try it! If you do
      ls -l /dev
      it says "no such file or directory"

      but if you do
      ls -l /dev/zero
      lo and behold there it is! Cygwin will never be accused of shying away from useful hacks.

      And if you do
      oc /dev/zero
      it will print out zome zeroes for you.

      The point of doing it under Windows is that Linux can't write ntfs - at least not safely.

    48. Re:Has always worked for me ... by stilwebm · · Score: 1

      Better yet you can dump the smaller dd created image into a larger partition, then use ext2resize to adjust the inodes to better use the full partition size.

    49. Re:Has always worked for me ... by Old+Wolf · · Score: 1

      Is there any difference between that and:
      cat /dev/hdb1

    50. Re:Has always worked for me ... by NecroBones · · Score: 1

      Even better, you could always use a ramdisk instead of a physical hard disk and avoid all of these issues. Fresh OS on every boot! Yeah baby!

      --
      I have not lost my mind... it's backed up on disk somewhere!
    51. Re:Has always worked for me ... by k12linux · · Score: 5, Informative
      dd if=/dev/zero of=zeroes

      Or, if you don't want to mess with scripts and installing cygwin:

      1. Download Eraser from here. (A very nice privacy tool for Windows, BTW.)
      2. Install
      3. Go to erasing prefs (Ctrl+E) and click New
      4. Enter description: All Zeros
      5. Click Add
      6. Click Save
      7. Select new "All Zeros", go to Unused Disk Space tab and do the same.
      8. Click Ok
      9. File - New Task (Ctrl+N)
      10. Set up tasks for the drive(s) you want to zero out and then run them.
      11. Profit! (Sorry.. couldn't resist.)
      This has the added advantage of zeroing out the slack space in most files which should improve compression a bit.

      BTW.. if you want to use this for privacy, you probably *don't* want to use the All Zeros overwriting option. If you son't know why, read this interesting article.

    52. Re:Has always worked for me ... by Belegothmog · · Score: 1
      "Even if you do learn to speak correct English, whom are you going to speak it to? -- Clarence Darrow"

      I believe that should be "to whom are you going to speak it?"

    53. Re:Has always worked for me ... by Knife_Edge · · Score: 1

      Is this necessary on all filesystems, or just windows ones?

    54. Re:Has always worked for me ... by CaptainAx · · Score: 1

      I did something similar and totally hosed the system up. I was upgrading from a 120 gig drive to a 200 gig drive using dd. This worked, sort of. I copied the boot sector of the old hard drive onto the new on and when I did, everything appeared ok. I ran linux fdisk and created some linux partitions using the new 80 gigs of space. Windows fails to boot and blue screens with a 0x7B error "INACCESSIBLE_BOOT_DEVICE". I tried copying this over and over again and everytime, I would get this error. So I desided to go get Drive Image 7 from local retailer thinking that I'll be able to backup the original drive. I place the original drive into the computer as the 200 gig wasn't stable (would crash after 30 minutes of uptime). Now I can't log into Windows at all because of WPA. Going back to the 200 gig drive now yields the same result. There was no way around it. Safe mode doesn't allow you to login and there was nothing that I found in system recovery that helped (FIXBOOT/FIXMBR).

      I ended up reinstalling at this point. I was better off reinstalling it anyway as I removed some bloat by not installing some apps that I never used. I still have all of my data, but I just can't boot with it.

      Now I've created a boot partition of 10 gigs so contain only Windows and Office programs. Everything else will go to the next partition.

      The questions I have is can I restore the installed OS with exactly the same size boot partitian in the future? I will test this someday. I think it's also important to do an boot partitian image PRIOR to activating Windows. It would same some time on reinstalls if you can restore with at least Windows XP with Office.

    55. Re:Has always worked for me ... by meatpopcicle · · Score: 1

      Ha Ha!

      I wouldnt follow this advice. Good luck decrypting the data if you do.

      --
      "You're on my side and the dark side, like Lando Calrissian?" --Gimpy, Undergrads
    56. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      Use VMware for hosting all Windows Machines THis is a simple solution. Windows environments never use much CPU anyhow, so your ahead all the way around. Make occasional copies of the vmware virtual disks one in a while when the Windows system is down.

    57. Re:Has always worked for me ... by that+_evil+_gleek · · Score: 1

      Yeah, dd does it. There were, at one time, linux boot-roots out there just for this.
      More recently, I noticed a few gui-wrappers to dd for mac OS X out there as well.
      As I speak shell, I did something like this to backup my ibook's hd before I repartitioned :
      dd if=/dev/rdisk0 bs=8k | gzip | ssh linuxbox ' dd bs=8k of=/mnt/bigpart/ibook_rdisk0.img.gz'
      Actually, I think I used 'split' in place of dd to get around a 2 gig file limit. ( Man split)

      btw /dev/random will hang at times until the entropy pool is suffiently random to continue. /dev/urandom won't, but shred is probably the better choice, if you want something more than using /dev/zero.
      But, I guess one could script the whole thing security wipe thing, maybe something like:
      yes WIPEPATTERNASASCII | dd bs=8k of=/dev/parttowipe

      ATTN moderators: if dd as drive image is funny , then yes to imp a security wipe has to be funny, $(yes)?

    58. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      Although /dev/zero doesn't display when you do an "ls /" or "ls /dev", it does indeed exist in Cygwin. E.g. "ls /dev/zero" works, as well as reading from it (e.g. "more /dev/zero").

    59. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      As encryptions go, that's kind of irreversable.

    60. Re:Has always worked for me ... by SimGuy · · Score: 1

      Fresh installs of Windows XP contain a compressed dllcache folder by default if I'm not mistaken.

      --
      I don't care, but don't let that stop you from trying to tell me anyway.
    61. Re:Has always worked for me ... by berzerke · · Score: 1

      ...save an NTFS partition if system files are not very fragmented, and if system files are not compressed...

      I've heard the same about ghost (which I don't use). I'm told it's a problem with the NTFS file system, not partimage (or ghost).

      I've used partimage more than once for NTFS and it works fine (when I had identical hardware). The biggest problem I've found is the partition sizes much match exactly or you're going to lose space. Yes, it can be recovered, but time wise, it's not worth it.

      Until I find a better way, for now, I just use Knoppix and create a tar gz file of every file on the HD. Knoppix can read NTFS, which is all you need to create the image. I use either ssh or (rarely) NFS to move it over the network. For NTFS machines receiving the "image", I create the partition manually as FAT32, ssh the tar.gz file over, untar, then reboot and convert it to NTFS. The conversion is optional of course. More work, but faster than recovering the lost space unless I'm missing something. If so, PLEASE enlighten me!

    62. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      You fucking clueless newbie.

      dd includes every single byte of the drive,
      whether blank, randomly filled with deleted cruft, or swap. It takes many hours, does not allow resizing of the partition to accomodate a smaller new disk, and when used on a new larger disk ignores the larger available space. When used with drives with different head/sector geometry, it will fuck you with a randomly spun blender set to "FUD".

      The difficulty is not imaging the drive, which is easily done with contemporary versions of NTFS linux tools. It's restoring the magical/mysterious/disappearing MBR to where and what it should be with the new drive configuratio

    63. Re:Has always worked for me ... by Neurotensor · · Score: 1

      Plus the binary on my Mandrake 9.2 system is just 26476 bytes!

      Plus there's so much variety to be had. Such as:
      dd if=/dev/hda1 | gzip >~/hda1.img.gz
      (if you want a compressed image)

      dd if=/dev/zero of=/dev/hda1
      (if you want to wipe the partition prior to selling the drive)

      and of course my favourite:
      dd if=/dev/zero count=1GB | gzip | gzip | gzip | gzip >~/readme.txt.gz.gz.gz.gz
      (to demonstrate phenominal compression!)

      The fun part is to get your friends to try reading the above file (which is 21729 bytes). Hours of laughs!

    64. Re:Has always worked for me ... by KermitJunior · · Score: 1

      Actually, it doesn't take much time to recover space. After you're done restoring via partimage, boot startx and use QTparted to shrink to minimum and then expand to full size.

      Just note if going from small big, first size to 2GB then unlimited.

      --
      There is a Universal Life Value Check it
    65. Re:Has always worked for me ... by Ziviyr · · Score: 1

      I just dump blank files (generated with dd if=/dev/zero) onto the partition until they won't fit, erase them, then do the dd thing with a bzip2 on the side (or lzop for the rushed).

      Copying unused blocks or not, any worthy compressor should mash blocks of runlength compressable data into near-nothingness.

      --

      Someone set us up the bomb, so shine we are!
    66. Re:Has always worked for me ... by RMH101 · · Score: 1
      XP NTFS isn't the same as 2000 NTFS. Hence you need Ghost 2003 or the latest PowerImage.

      These work flawlessly, all the time. Really. I have a room full of Dells multicasting it as I speak.

      If it doesn't work for you, you're not doing it right.

    67. Re:Has always worked for me ... by Anonymous Coward · · Score: 0

      Now, please tell me how is clicking a million times better than a simple shell script?

    68. Re:Has always worked for me ... by Anonymous Coward · · Score: 0
      Now, please tell me how is clicking a million times better than a simple shell script?

      Yeah.. a million times. Whatever.

      This guy has a better idea. First.. it runs considerably faster (I tried this after trying the other option) and second it gets file slack space which can account for quite a bit. And finally you can keep running like normal since your drive doesn't fill up (even temporarily) in the process.

  2. Experiences with Norton Ghost by akedia · · Score: 5, Informative

    As far as a new machine goes, I always recommend installing a fresh copy of 2000 or XP if you are installing to just a single machine. This way everything is nice and clean, no old drivers can crud up the system, any and all resident spyware and viruses are gone. XP even has the Files & Settings Transfer Wizard to move everything over to a new machine and it has always been a good tool in my experience.

    As for multiple machines, I've always gone with Norton Ghost Enterprise. Where I work, we recently got a new shipment of 120 Dell Dimension GX270 desktops, P4 2.8Ghz, 120GB disks, top of the line machines. However since we are a government agency we have certain security policies that must be in place on each machine regarding user logins, domains, file permissions and network access. Setting this up on 120 machines would be an impossible chore. So I set up a spare Dell server running Windows 2000 Advance Server with Norton Ghost Enterprise. We then took one of the new Dells, reinstalled Windows XP from scratch and began applying all security measures and end-user programs to the install. Next, a Microsoft program called System Preparation Tool was run to prepare the system for the end-user, and the machine was shut down and booted off a Norton Ghost rescue disk with drivers for the onboard ethernet. Then the machine was conencted to the Ghost server and an image of the hard disk was dumped. From there the only remaining work was to boot a dozen or so new machines at a time and point them to our Ghost server and have them image the drives, then we repackaged them and delivered them to the users. The whole process took about 2 weeks from when we got the first machine to when the last one was delivered to the user.

    Norton Ghost is great for rolling out images to identical machines, but it's hit-or-miss with machines that differ on hardware. And it certainly helps to have coprorate editions of the Microsoft software to avoid activation issues.

    1. Re:Experiences with Norton Ghost by dzym · · Score: 1
      However since we are a government agency we have certain security policies that must be in place on each machine regarding user logins, domains, file permissions and network access. Setting this up on 120 machines would be an impossible chore.
      And yet, setting up all this automatically with a couple of domain controllers already in place is a breeze.
    2. Re:Experiences with Norton Ghost by calebtucker · · Score: 1

      Hey, give him a break. He did say he works for the government.

      --
      My sig can beat up your sig.
    3. Re:Experiences with Norton Ghost by QuantumRiff · · Score: 2, Interesting

      We run Symantec Ghost enterprise here, and the one thing that really bugs me is ghosting multiple machines at a time. We are a college, so our labs have 30 machines each. When i try to ghost the whole lab at once, i have anywhere from 4-12 of these machines drop out mid process. Then i have to use the network boot disk and manually do the rest. Its still a hell of a lot faster then building them up by hand, but I wish i could figure out why the machines crap out partway through.

      --

      What are we going to do tonight Brain?
    4. Re:Experiences with Norton Ghost by akedia · · Score: 1

      And yet, setting up all this automatically with a couple of domain controllers already in place is a breeze.

      Yes, if we were using Active Directory on Windows Servers. We are not. We are currently using Novell Netware servers with multiple different trees and contexts for each department. In addition we had to load custom versions of proprietary applications (not just Office and the like) plus applying all Windows Update patches and configuring SUS automatic updates and Norton Anti-Virus. There was a lot more to be set up than just group policys.

    5. Re:Experiences with Norton Ghost by clarkc3 · · Score: 1
      Norton Ghost is great for rolling out images to identical machines, but it's hit-or-miss with machines that differ on hardware.

      Thats why Microsoft came up with their RIS service, you can create an image and it just disregards hardware on the machine. But I still use Ghost on dissimilar hardware where I work simply because its fast (copies our default computer setup in 5 minutes to a new pc and our programmer's boxes are done in just over 10) - plus if I recall, you can use ghost to roll out linux boxes too

    6. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      The trick is to use the Enterprise edition. It gives you options that the regular version does not and is much more reliable. It will write disk to disk , disk to CD image or disk to image on a network file server. For a CD backup, the -auto -span -split=680 -z3-9 switches are handy.

    7. Re:Experiences with Norton Ghost by GigsVT · · Score: 1

      How do you do that? Every time I've seen someone try to replace major hardware components in Windows, the copy protection kicks in and you get a blue screen with a HAL error.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    8. Re:Experiences with Norton Ghost by magarity · · Score: 3, Informative

      It's your switches being set incorrectly; I had a similar situation. Get into the switch management and turn on the multicasting friendly features. If you've got simple unmanaged switches then you're out of luck.

    9. Re:Experiences with Norton Ghost by JakeSpencer · · Score: 2, Interesting

      I work at the University of Oklahoma, and our department uses ghost in a similar manner to that described above. We received many new Dells this summer. We set up one the way we wanted them all to be, used sysprep to make sure everything went cleanly, then pulled the image off the machine with ghost. We then push the image over the network to all of the machines. All that remains is to go rename the machines, but we've recently come up with a batch file that can do this automatically by mac address. Ghost is good.

    10. Re:Experiences with Norton Ghost by SkArcher · · Score: 1

      A problem I have encountered using Win 2000 is that after you ghost the machines across the machines will fail to authenticate to the network, with a non-specific error. I suspect that there is some form of unique id being used in network logon.

      If anyone has any ideas please reply, I don't use the system for large roll outs anymore, but someone might find it useful.

      --

      An infinite number of monkeys will eventually come up with the complete works of /.
    11. Re:Experiences with Norton Ghost by abh · · Score: 1

      The "unique id" you refer to is called a SID. Have you been using sysprep? It's a Microsoft utility specifically designed to remove machine-specific information (SIDs, profiles, etc) before ghosting.

    12. Re:Experiences with Norton Ghost by jargoone · · Score: 0

      Next, a Microsoft program called System Preparation Tool was run to prepare the system for the end-user

      Several have correctly modded you insightful. The article bitches about how they want you to reinstall every time, and that's not even what the policy says. It just says that they won't support you if you don't use their tool to make sure the SID is changed. It's to prevent security issues -- the same ones you could encounter when backing up/restoring a Unix-based system.

    13. Re:Experiences with Norton Ghost by meplaysocr · · Score: 1

      Ghost is a god-send when it comes to deploying massive (or even small) amounts of machines. I work in the CSCE Department at a University and we ghost the labs here once or twice a semester (depending on security updates for Windows and software needs). We can do a lab of 20 machines in an hour, that includes ghosting and finishing up for use. It would take longer to touch each machine individually to apply the patches and software updates. It's amazing how much time I save. As far as ghosting different machines, I've had pretty good luck in this department. So long as the chipsets on the motherboard and processor are not way different from each other, it tends to ghost fairly well. You might need to spend a little more time on the setup at the end (ie reinstalling video drivers) but that is still quicker then doing a fresh install.

      That's my experience.

      --

      Sig? No thanks, I don't smoke.
    14. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      running sysprep should help w/ the domain authentication issue, then you just go around to each machine and give it a name and join it to the domain. The other thing I've done that works *sometimes* is to just take it out of the domain, reboot, join it back again, and reboot again.

    15. Re:Experiences with Norton Ghost by cricketchoey · · Score: 2, Insightful

      We had this problem also, and was able to work around it by forcing 'unicast' mode in the session. Configuring multicasting on our Extreme switches did not solve the problem..

    16. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Umm, use a corporate edition of Windows?

    17. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 3, Informative
      You've got to use the SYSPREP utility from Microsoft. It rips out the HAL subsystem and the SID. It was specifically dsesigned for OEMs who need to clones MILLIONS of PCs in one shot, not your piddly 100s =).

      With SYSPREP and a well setup SYSPREP.INF file, you can skip the serial number, device driver installs, domain setup, admin password, and a whole of other things. The Docs for SYSPREP are big, but the examples do half of the work for you.

      GHOST and SYSPREP. The better way to clone W2K and XP.

    18. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 1, Interesting

      The bluescreen issue probally isn't copy protection. The "copy protection" should be Product Activation kicking in and not allowing you to do anything (on non-corporate OSes). What you're probally experiencing is in fact a HAL issue. Your original system probally uses an APIC HAL and the second machine probally uses an older PIC HAL. (or some other similar type of situation, APM is a dirty whore in HAL's eyes).

    19. Re:Experiences with Norton Ghost by wo1verin3 · · Score: 1

      At my office we had PowerCast deploy center. It was a support environment and laptops were reimaged 5 times a day.

      a) We made sure the machines had network cards which supported booting from network (pxe...)

      b) When connected to this network, it retrieved and mounted a boot disc which contained the correct network drivers for the machine

      c) we used brand name laptops (ibm thinkpads) and IBM provided a utility to probe the bios and return the model-type designation which tells us what kind of machine that is, that was tied in to the powerquest drive image script which automatically began restoring the image to hard disk with no intervention other then an enter key (which was put there by choice, it could easily be done without any intervention)

      Setups like this are possible but they take time to perfect.

    20. Re:Experiences with Norton Ghost by SkArcher · · Score: 1

      No, i hadn't heard of it. I no longer deal with client scale roll outs, but if i ever have to *shudder* i'll remember it, thanks :)

      --

      An infinite number of monkeys will eventually come up with the complete works of /.
    21. Re:Experiences with Norton Ghost by ralf1 · · Score: 1

      Uhh - Zenworks?

      --
      "Would you, could you, with a goat?" Dr Seuss
    22. Re:Experiences with Norton Ghost by sir_cello · · Score: 1


      I can second this.

      We maintain a ghosted image of a "developer workstation" with Windows 2000 + Office + MSVC + Rational Tools + etc; and we're using (oldish now) Compaq AP550's - so the hardware is equivalent.

      When new developers arrive, or existing drives are corrupted (rare), we just ghost up a machine and boot. In fact, I last suggested that we keep at least one pre-prepared ghost'ed drive available to further speed up the process.

      If I could burn DVD's, I would ghost my home machine as a backup occasionaly. Recovery time is far faster than file based backup and restore.

    23. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0
      works for the government

      Isn't that an oxymoron?

    24. Re:Experiences with Norton Ghost by dang-a-pin · · Score: 1

      I have noticed that multicasting can be really slow if your switch or hub doesn't support it, which is why I think that you really might want to look into seeing if your hardware does support it. I found a nice free testing program called UDPMulticastTest at www.mycgiserver.com/~skybuck. That guy makes some fantastic free software.

      Here's how the test works: you make a connection with UDPMulticastTest on 2 computers - you specify what port you want to use. Then you see if you can sniff any UDP traffic on that port. If you can, then your switch/hub is forwarding unrequested traffic to other ports on the network. If you cannot sniff it, then your hardware is in the clear, and your multicast server problem is due to something else & you'd have better reason to abandon it.

    25. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 3, Funny
      HAL error? Do you mean like:

      I'm sorry Dave. I'm afraid I can't do that.

    26. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      no....

      HAL as in the thing that keeps me from recompiling my kernel every time I want to install a friggin' driver.

      and no, I dont care if print drivers can bsod my box because they run in ring-0, at least they're easy to install and remove.

    27. Re:Experiences with Norton Ghost by carolchi · · Score: 1

      This works well. Also you can use Microsoft RIS in a similar way.
      Both allow you to edit disk images, slipstream service packs and do all sorts of things other than just copy a disk.
      You do need sysprep. You don't even need a boot floppy on most systems nowadays, network boots work fine.

    28. Re:Experiences with Norton Ghost by japhmi · · Score: 1

      We have only had this issue since we moved to NTFS. Ghost 8.0 is supposedly going to work better multicasting NTFS partitions.

      Under FAT, we only did 10 at a time, more than that can be an issue.

      In the meantime, I just do one at a time, or I let it go for hours and then

      --
      "Giving money and power to government is like giving whiskey and car keys to teenage boys" P. J. O'Rourke
    29. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      AHHHH!!! You dang Sooners, you won't leave us alone will ya? Just because you kicked our a** a few weeks ago...
      Anonymous Coward @ OSU

    30. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      No, Zen-doesn't-works.

      Zen sucks, and has broken random things in our organization. Some desktops - no problems. Others, once Zen'd - no worky... Completely random and totally annoying.

    31. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      I have also used Ghost to roll out 2000 and XP. I have over 400 machines running 2000 all with the same image all rolled out with Ghost 7.5. Never had a hitch that wasn't due to hardware. I am actually imaging an XP laptop as I write this. I have used ghost for years and seen very little problem with it. I have used it on 98,NT,2000,XP,Redhat.etc. Sometimes routers will not let multicasts through but Symantec has gotten around that with Unicast, not sure what the difference is but Unicast eliminates the router problem. Most of the problems I have seen are usually communication problems, no connection, wrong network drivers etc.

    32. Re:Experiences with Norton Ghost by Glonoinha · · Score: 1

      Personally I am a big fan of Power Quest's Drive Image - boot to a Win98 DOS disk (the emergency boot disk you create for 98 has boot drivers, a bunch of important DOS files for fdisking and formatting a drive on a ram disk, and it has drivers for just about every CD-ROM known to man) and run it in DOS mode. Only requirement is a second partition or drive formatted FAT32 to put the image on.

      That said, I am moving towards virtual machines (VMware.) Tell it to break the files up into 2G chunks and they back up two to a DVD-R, the host operating system really only needs three installed apps (Windows 2000 is a good choice for OS, Nero or some DVD burning software, and VMware.) Need to replicate a machine - just copy the VMware files to another directory. Need a new install - ditto. Want to back a machine up entirely - burn the files two per DVD or just put em on a backup server with a LOT of free space. Want to restore - copy the files back from the DVD.

      Granted VMware has two drawbacks (1 - system resources, takes a LOT of memory to do it right, 2 - no 3D games as the video is a virtual video card, not direct access to you nVidia fx5900 or whatever) but for pure business it is a wet dream.

      Granted this only applies to my machines, not a managed environment of 1000 mouth breathing end users.

      --
      Glonoinha the MebiByte Slayer
    33. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 2, Informative

      After you Ghost the Machine run Ghost walker before you reboot. Ghost walker changes the SID of each machine to a new unique SID. If you don't run Ghostwalk all your machines are coming up with the same SID that may be why they won't authenticate. Ghost walk is in the Ghost install directory and is called ghstwalk.exe. You can configure it to run automatically after imaging by putting it in your autoexec on your boot image or disk. the command line settings can be found in the Ghost user manual PDF that comes with the installation.

    34. Re:Experiences with Norton Ghost by elvum · · Score: 1

      I remember the first time I installed Windows 2000; I got infected with Code Red while I was still downloading the patches that would block it. So there are advantages to using the disk-imaging method of installation too. (Not enabling IIS and installing patches from a CD before plugging the network in were two other good lessons learned from that escapade...)

    35. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 1, Informative

      You can also use ghostwalk to change the SID under DOS. ghstwalk.exe

    36. Re:Experiences with Norton Ghost by eth1 · · Score: 1

      We also use Ghost Enterprise at a school where I administer their network. The 60 machines in the 2 computer labs are identical, as are all (widely separated) workstations that are used by the teachers. One feature that's a real lifesaver (since I do most of the heavy imaging work during the summers when no one is there) is that in conjunction with the Ghost Console Client, you're able to boot the machine via WOL, push an image or pull an image, then shut the machine down again. This is great when you don't have a key to 95% of the offices. The achilles heel is it's limitation of 15 characters for the NT or Active Directory domain when adding win2k boxen. There's an included utility that will change SIDs for you, but if your fully qualified AD name is over 15 characters, you have to MANUALLY add every single workstation to the domain. There's also support for pushing apps, but I haven't messed with that.

    37. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Uhh - Zenworks?

      What the fuck is wrong with you geeks? It's bad enough that you can't speak in a meeting with out a puzzled "where am I" look, but you have to constantly sprinkle "uh" and in the case of carmack "aym" in between every third and fourth word.

      And now you do it while you are writing? I believe you are more idiot than savant. And quit picking your nose.

    38. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      dunno what version of sysprep you're using but I haven't had much luck getting it to "switch hals". The 2K/XP versions will do scsi drivers (*big* plus btw) but having it switch HALs is something that I've always seen end in a BSOD.

    39. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      More info on this: here and here . I'd recommend scanning both links if you're going to use Sysprep. Also, Windows 2000 Sysprep != Windows XP Sysprep. Windows XP's Sysprep is ALOT more powerful then Windows 2000 espcially with regards to using different hardware.

    40. Re:Experiences with Norton Ghost by chota · · Score: 1

      Then you're using Windows 2000, which has horrible HAL support. The sysprep for Windows 2000 only supports cloning to systems with the same HAL. If at all possible, upgrade to Windows XP. We went from having five seperate images to just having ONE image. It rocks. I can get you our image-building instructions if you wish, just drop me a line.

    41. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      I've had great experience with Norton Ghost, I work in Computer Labs at Colrado State University and me and the other tech here can reclone all 95 computers in the labs in a day. Anytime we need a big software upgrade or reinstall we just reclone the labs, and with multicasting we have been able to do 50 at once with minimal network slowdowns.

    42. Re:Experiences with Norton Ghost by mscalora · · Score: 2, Informative
      >...shipment of 120 Dell Dimension GX270 desktops,...

      Did you know that Ghost's license requires that you have a license for EACH machine that uses a drive that was imaged with Ghost? Even if you imaged all the drive on one machine and never installed ghost on the HDs, you still have to have a license for each machine according to

      Yea, I was shocked too.

      From Symantec:

      LICENSE POLICY FOR SYMANTEC GHOST
      Each PC receiving a Ghost Image will need a license of Ghost. That license will remain with that PC until it has been permanently decommissioned from your agency. Once a PC has received a Ghost Image and has been assigned a license, it is licensed to receive an unlimited number of images. (For more detailed info, see the attached MS Word-formatted document.)

      Example:
      A customer acquires 30 new workstations and uses Symantec Ghost to roll out images to those workstations this month. Next month, the customer acquires 20 additional workstations and uses Symantec Ghost to roll out images to those workstations. In order to be within licensing compliance, this customer will need to own a total of 50 licenses of Symantec Ghost.

      LICENSE POLICY REGARDING INSTALLATION OF NORTON ANTIVIRUS CORPORATE EDITION ON SERVERS Symantec requires that customers looking to install Norton AntiVirus on a server purchase a license of Norton AntiVirus Corporate Edition for Desktops and File Servers for EACH and EVERY computer (owned by their
      organization) that receives ANY services from that server. Symantec does not offer a server-only licensing for Norton AntiVirus.

      EXAMPLE:
      A customer has a LAN (Local Area Network) with 200 workstations, 6 Windows 2000 servers and an NT 4 Server. To be within licensing compliance, they would need to purchase 207 licenses of Norton Antivirus Corporate Edition for Desktops and File Servers. If they were to purchase only 10 licenses (minimum purchase) of Norton Antivirus Corporate Edition for Desktops and File Servers and 200 licenses of Norton Antivirus Corporate Edition for Desktops (or 200 licenses of Norton AntiVirus 2002), they would not be within licensing compliance.

      Kind regards,
      Tina Maria
      Sales Specialist
      (888)446-7898 ext.103
    43. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Yes, but could you hatch a sales point in a single day instead of weeks?

    44. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Zenworks indeed, its a hell of a lot more powerful that group policies. You have the granular type of control over the environment one would expect from a Netware controlled network.

    45. Re:Experiences with Norton Ghost by Sylver+Dragon · · Score: 1

      If I could burn DVD's, I would ghost my home machine as a backup occasionaly. Recovery time is far faster than file based backup and restore

      Sorry, dumb question here. Doesn't Ghost support splitting the image into smaller chunks? I use Power Quest Drive Image at work daily, and we always split images to 723,517,440 bytes (why they put it in bytes I'll never know, but it works). This makes for nice CD size chunks, which we burn off and send a copy with a system to the customer, and keep a copy for ourselves.

      --
      Necessity is the mother of invention.
      Laziness is the father.
    46. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      hmmmm with Ghost Enterprise 7.0 I was multicasting NTFS 5.0 partitions to over 200 machines just fine. This was done simultaneously and using multiple servers, but the imaging process takes just a day so servers can be prepped and a few spares could be used to handle the additional load.

      Ironically the best version was 6.0, it was flawless with fat32, of course, NTFS 5.0+ would require 7.0 or higher.

    47. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      What part of "Enterprise" and "Corporate Edition" don't you understand, you ignorant bitch? They have unlimited client licenses. That's why organizations pay out the ass for those editions, for the unlimited licenses.

    48. Re:Experiences with Norton Ghost by spongman · · Score: 1
      you don't need to install any patch to stop CodeRed. just do:
      iisreset /stop
    49. Re:Experiences with Norton Ghost by WasteOfAmmo · · Score: 1
      Ok, Some question about SYSPREP...

      First the on topic stuff:

      We run a few hundred machines in our labs and currently I use PowerQuest Deploy Center to multicast a few tens of machines at a time (6GB image to 40 machines in under 10 minutes; God I love multicast!). We also use sysprep to deal with the SIDs, etc. in Win2k. We have been using PQ Drive Image for several years with no problems. Whether you are pushing/pulling images on the network or to/from a burner, the PQDI product works well.

      The one exception I have seen is this August when MSBlast was saturating the net. During this time PQDI would fail ~100% of the time on images that took more then ~5 minutes to transfer. The best we could track the problem down to was a problem with the MS TCP/IP stack that PQ used on their boot disks. The stack seemed to get blocked after getting probed several times by infected machines.

      Eventually this resolved as MSBlast became less prevelant on our network and after the network guys did some reconfiguration on the routers (not sure what they did). Now we are up to a 100% success rate again.

      Now the slightly off topic stuff:

      What I can not get to work is using sysprep to join the imaged boxes to the domain. Currently we are joining win2k boxes to a NT domain. I would love to see a copy of a sysprep.inf file that sucessfully joins a win2k box to a NT domain. According to all the docs I can find it should work.

      As another question: you mention using sysprep to deal with different HALs. This is mentioned in the documentation with next to no clear examples (so far as I can tell). As an example: I have 3 Dell models to put a win2k image on (GX110, GX150, GX270). So far I have not found a way to build an image on 1 of these and use sysprep put the image on all 3. Currently the image only goes on the model that it was built on so I am building 3 images instead of 1 for deployment.

      How do you use sysprep to deal with the different HALs? Right now if I build on a GX110, sysprep it and image onto a GX150 the machine craps out half way through the boot saying it no longer can read the hard drive. This worked fine with winNT without using sysprep. Real examples would be appreciated.

      InSysprepHell!Merlin.

    50. Re:Experiences with Norton Ghost by Large+Green+Mallard · · Score: 1

      In as much as this seems wrong talking about Enterprise systems deployment involving hundreds of thousands of systems, "me too" :)

      We use Ghost to deploy about 100 lab systems every few months, dual-booting Linux and Windows, and we do pretty much the same thing. Lab machine broken? Get out Ghost, 40 minutes later, all good and only took me about 5 minutes of time to do.

    51. Re:Experiences with Norton Ghost by subk · · Score: 1

      Although I really like Ghost, this post simply mentions the names Dell and Microsoft far too often.. My eyes are bleeding!! Let me boil it down: Ghost will copy FAT, FAT32, NTFS (yes, NT, 2k and XP) and EXT2/3 filesytems flawlessly. You can even move a linux image of lots of EXT2/3 stuff to a different drive model and it works everytime. Just reinstall grub/lilo/ For you WYSIWYG Freaks out there, the Ghost Console will let you automate image roll outs, computer name changes, domain accounting, ip configuration, etc, etc etc. Just be carefull because it creates a lot of multicast traffic.. (it will bring a house full of 3Com 3300's and 4200's to its knees.. ask me how I know). Ghost can also natively compress images during creating, which is nice. You also have the ability to add/extract data to/from images using a explorer-ish image browser (GhostExplorer). Have fun.

      --
      Now, if you'll excuse me, I have backups to corrupt.
    52. Re:Experiences with Norton Ghost by bishmasterb · · Score: 1

      I usually create the Ghost image on a machine that has not yet joined the domain. It creates one more thing to do after imaging each computer, but it gets around the problem of not being able to login.

    53. Re:Experiences with Norton Ghost by GigsVT · · Score: 1

      So if you take an XP box, and change to a completely different motherboard and boot up, everything will just work? Like Linux has done for years?

      Won't it make you activate it again?

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    54. Re:Experiences with Norton Ghost by Large+Green+Mallard · · Score: 1

      Well, they don't necessarily, but yes, there is an unlimited clients option to them. But the original poster's surprise is not that unusual. Your Ghost Enterprise Edition needs a license for every machine you use it on. In my case, the license per machine is only about US$10. It's well worth it.

    55. Re:Experiences with Norton Ghost by Large+Green+Mallard · · Score: 1

      Have you rebuilt the sysprep.inf file using /bmsd and the associated additional stanza in the first generated sysprep.inf for "BuildMassStorageDevices?

      Regarding joining domains, I just type in the username and password manually, so can't help there. Sorry.

    56. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Ummm, learn to speak. ummmmm
      umm
      ummmmm
      ummmm

    57. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      " As far as a new machine goes, I always recommend installing a fresh copy of 2000 or XP if you are installing to just a single machine. This way everything is nice and clean, no old drivers can crud up the system, any and all resident spyware and viruses are gone. XP even has the Files & Settings Transfer Wizard to move everything over to a new machine and it has always been a good tool in my experience."

      Takes me about eight hours to configure a fresh install of 2K. The audio software I use requires lots of tweaks, to say nothing of all the convoluted 'call and response' copy protection routines for apps/plugins etc. Then there is virus checkers, firewall, hardware drivers etc etc..

      If 2k seriously fucks up for it's own impenetrable reasons, it means a day of downtime for the studio, which means lost . Mirroring the drives don't get all the copy protect stuff, even with dd.

      What I really want is mature free audio soft on Linux. (Well I can dream can't I?)

    58. Re:Experiences with Norton Ghost by sharkey · · Score: 1
      coprorate editions

      I'm not sure what this is, but it sounds painful for the police.

      --

      --
      "Outlook not so good." That magic 8-ball knows everything! I'll ask about Exchange Server next.
    59. Re:Experiences with Norton Ghost by rikkards · · Score: 1

      The project I am presently working with involves rollouts of windows 2000 workstations at different sites of 50 to 3000 workstations. Some of the sites are using generic images that worked on all of their workstations. All you need to do was:
      1. Copy all necessary drivers to the workstation.
      2. Make sure that the OEMPNPDriversPath entry in the sysprep.inf had entries for all of the folders copied on the workstation.

      When the machine boots up it will search the folders for any hardware it founds.

    60. Re:Experiences with Norton Ghost by rikkards · · Score: 1

      I have built some generic images that worked on multiple machines i.e Dell, Compaq, homegrown. The catch was that you needed a different image for ACPM and non ACPM workstations. I will see if I can find a sysprep.inf. I also posted earlier about what is needed with generic images.

    61. Re:Experiences with Norton Ghost by rikkards · · Score: 1

      -split=640 on the command line will get you 640M chunks of an image. The most annoying thing which happened yesterday was I had a cd image which consisted of 2 640M images and a 3rd of 600k reimaged at -split=641 fixed that :)

    62. Re:Experiences with Norton Ghost by rikkards · · Score: 1

      Really? we paid $8 Canadian for ours.

    63. Re:Experiences with Norton Ghost by nolife · · Score: 1

      I can second this. We use Ghost (Dos version only, nothing Ghost is installed on the workstations) and Sysprep with very few problems. We boot with a TCP boot CD (I used bart's for a starting point) pulling from a Samba server. Our DOS boot CD autodetects the type of network card, uses DHCP, and presents you with a menu system for you to pull a new image or backup an existing one to the server. We also have some basic recovery tools available on the mapped Samba drive that can be run on the workstation for reading NTFS from DOS, dos shells for recovery of files, and some partitioning tools for loss recovery. For the imaging, we have used the multicast method supplied with Ghost but not worth the effort IMHO. Our single P3 1GHZ Samba server with a ATA100 5400 rpm drive can sustain roughly 12MBytes/sec out a single eth interface and is more then enough to do 4 to 5 workstations in a reasonable time. Even for 20 or so sets, it took me longer to setup the multicast sessions and get it going then it does now the regular way. If you have a dedicated lab it might be benificial, anything else seems like a waste for multicast. YMMV. We also have a second eth interface on the same Samba machine hooked to a local 16 port switch for imaging off the main network if congestion is a concern, of course it must be moved over to the real network before actually booting it up so it can find and join our domain.
      We have 6 different models of computers and so far.. I've got it down to 2 images and only slight modifications required after imaging, one image for our laptop models and one for our desktops. I'm sure I'll eventually get it down to 2 perfectly working images but I am having some problems with sysprep that are inconsistant with the documentation or I simply misunderstand them, mostly with it detecting the wrong hardware and/or installing the wrong drivers for some harware even when I specify a driver path with updated drivers, like the modem and sound on some model laptops. There are numerous docs on this (some very vague) but I have not had time to mess with all the different methods.

      Using our sysprep.inf, the computer on inital boot, will boot perform the mini setup (we use the -pnp switch), generate a new SID, join the domain under the correct OU, and will only require us to put in the new computer name and hit enter. We have chosen to name the computers manually but it can pick a random name or pull from a list if desired. Just before imaging, we remove the computer from the domain (suggested by MS) and manually put in some stuff in the runonce section of the registry that will call CMD files to install specific software on initial login that is "machine specific aware" and can not be worked around in other ways.

      Using a well configured and tailored default user profile (less setup and config after install per user), sysprep with Ghost, and the DOS boot disk is a great system.

      --
      Bad boys rape our young girls but Violet gives willingly.
    64. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      >How do you use sysprep to deal with the different HALs?

      It's kind of complicated but it works. I had 1 Win2k image that worked on everything from a pentium 133Mhz, to a P4 1.3 Ghz, including 3 or 4 different types of laptops.

      1) Format a drive and Sys it as Win98 DOS and install Win2k (FAT32 ONLY) on each individual system. Copy off c:\windows\system32\hal.dll from each system to a floppy

      2) Take the system that has the most advanced ACPI support (your newest system usually) and use it as the Master.

      3) Install all necessary drivers on the Master system (NIC, Video, Sound, etc).

      4) Create a Ghost image of the Master system

      5) Ghost down the Master image to the next newest system. Boot into DOS...DO NOT try to boot into Windows, if you do it will blue screen and you'll have to re-Ghost it. Copy that systems hal.dll that you saved off for that specific system to c:\windows\system32\ replacing the current hal.dll, and copy it to the same location with a new name (GX110.HAL, GX150.HAL, GX270.HAL). Now boot into Windows

      6) Install all necessary drivers for that system.

      7) Create ghost image from this system.

      8) Ghost down image onto next system and repeat above steps until you run out of systems.

      Now you just have to create a script that will copy the correct hal.dll before SysPrep runs. I had my images boot into Win98DOS then run a script that copies the correct hal.dll, modifies the sysprep.inf by putting in the correct computer name, replaces the boot.ini with one that will boot into Win2k, and then it reboots.

      If you need to have NTFS as your file system, then have SysPrep convert it for you.

      Good luck. :-)

    65. Re:Experiences with Norton Ghost by ob1knob777 · · Score: 1

      I have the basic version of Ghost for home, but I'm wondering: What about using ghost to backup a dual boot setup - Linux and Win2k on one drive. Can I back up each partition separately so I don't re-image my Linux partition everytime Windows dies? I've backed it up that way for now, but I don't know if it will work properly when something really does go wrong. Just keeping my fingers crossed for now. . .

    66. Re:Experiences with Norton Ghost by subk · · Score: 1

      Ghost will handle mixed drives and single-partition images.

      --
      Now, if you'll excuse me, I have backups to corrupt.
    67. Re:Experiences with Norton Ghost by IntlHarvester · · Score: 1

      You're trolling, but basically Windows cheats by caching hardware details, while Linux goes through a complete redetect sequence on every boot and requires manual IDE tweaking (a big issue for both Win and Lin because modern IDE controllers aren't really compatible with each other).

      Swapping your board without so much as a reinstall

      But, that won't help in a recovery situation. I'd say the Windows way is a fair decision, given how infrequently mobo changes happen. Although, it would be much less painful if they supported a /REDETECT switch in the boot.ini.

      --
      Business. Numbers. Money. People. Computer World.
    68. Re:Experiences with Norton Ghost by Dukat · · Score: 1

      That is why you use the /pnp switch of sysprep. It will make windows refind all the hardware on a machine with different hardware after ghosting.

    69. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      Why are you here?

      News for _NERDS_.

      _NEEERRRRDDDSSS_.

      Dumb ass.

    70. Re:Experiences with Norton Ghost by Anonymous Coward · · Score: 0

      man insmod

    71. Re:Experiences with Norton Ghost by GigsVT · · Score: 1

      Thanks for the link, that is some helpful info.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
  3. dd by yack0 · · Score: 5, Informative

    dd bs=8192 if=/dev/sda of=/dev/sdb

    It's worked for me.

    Other than that, I've used ghost.

    --
    -- There is no sig line, only Zuul.
    1. Re:dd by chef_raekwon · · Score: 1

      yup - as mentioned above - with Ghost,
      Mr.Zip
      and another, ofwhich I can no longer remember the name....and the minute I hit the submit button, it will flash into my head, like a lightning bolt hitting a tree.

      and yes, they all work great, depending on the task at hand.

      we even ghosted our Testing Novell 5.1 server to our PXE/TFTP Server on Linux...although, the compression with ghost and Novell is horrible. (network boot and dump doesnt care tho)

      --
      We're like rats, in some experiment! -- George Costanza
    2. Re:dd by crumley · · Score: 5, Informative

      I'd suggest a related method using netcat, sometimes called Ghetto Ghost.

      --
      Preventive War is like committing suicide for fear of death. - Otto Von Bismarck
    3. Re:dd by trentfoley · · Score: 2, Informative

      Even if you don't have a linux box handy to work with, there is always knoppix. Add your new drive to your windows box and boot with the knoppix cd, then dd away.

    4. Re:dd by Gudlyf · · Score: 1
      Just to be clear, I imagine you can first just boot off something like KNOPPIX, then issue that command from a shell.

      I've never tried that, but this will work with NTFS formatted disks, correct? And all the boot block info as well?

      --
      Trolls lurk everywhere. Mod them down.
    5. Re:dd by gpinzone · · Score: 2, Interesting

      Do the partitions need to be the same? If they're not what happens?

    6. Re:dd by exp(pi*sqrt(163)) · · Score: 1

      What if the drives have different sizes?

      --
      Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
    7. Re:dd by GigsVT · · Score: 1

      RIP Linux is better if you don't need a GUI. It's only 30 megs or so, so you can burn it onto a business card sized CD.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    8. Re:dd by lysander · · Score: 1

      I've done the exact same thing, but piping through ssh instead of netcat. Just make sure both disks are mounted read-only. Afterwards, I changed the ssh keys on the target machine and had purge the dhcp lease, but that's only to be expected.

      --
      GET YOUR WEAPONS READY! --DR.LIGHT
    9. Re:dd by yack0 · · Score: 2, Informative

      The partition tables will be copied.

      In general, dd will complain if the source drive is larger than the target drive, but the way we usually get drives is that the drives keep getting bigger in size.

      So, I usually copy my 4G drive to the new 10G drive. In 90% of instances that I use dd, it's to try and save a dying drive.

      You can also copy things by partition as well, so run fdisk (or other prefered partition tool) on the new drive and you can do

      dd if=/dev/sda1 of=/dev/sdb1

      the bs argument is handy for making things not take so long. Using no argument on bs means it copies every single block, which is s l o w. Even using a block size of 1024 is faster.

      HTH

      --
      -- There is no sig line, only Zuul.
    10. Re:dd by gergnz · · Score: 1

      Used it so many times have lost count.

      The only problem is having to reboot the machine to slide another IDE disk to put the image on.

      This is how we image our "standard desktops". Dual boot Linux/Win2k.

      --
      404 Not Found The requested signature was not found on this server.
    11. Re:dd by Dark+Lord+Seth · · Score: 1

      Whoa, hold on there. If I recall correctly, that makes a nice big fat copy of the entire HD. INCLUDING EMPTY SPACE. No use backing up all those zeros, right? What's needed is a nice simple system like Norton Ghost. While people dislike Symantec's copy protection system and Ghost isn't perfect, it's rather nice and easy to use. Maybe some kind of system that would boot from CD/USB pendrive ( GET RID OF THOSE GODDAMN DISKETTES ALREADY!!! ) and back up to/from a file, compressed file, drive, partition, FTP server, TCP/IP tunnel, multicast source, CD/DVD(+/-)R(W) drive, you name it.

      If under 185 mb, we can cram it on one of those nice mini CDs as well, making it nice and tiny ( and hell on slot-in drive owners, hehe... That includes me... :( )

    12. Re:dd by ahg · · Score: 1

      Is there a way integrate compression into the linux+dd scheme?

      A install of a minimal Windows instaltion may only take 2 GB but if it is on a 20 GB partition, then your image is 20 GB, no?

      I would like to be able to have system to restore public access computers to a virgin state very quickly and easily. - The idea of storing an image of the base install on another partition has occurred to me, but it's not an efficient use of space if the backup partition has to be as large as the primary partition when most of it is empty space.

      Anyone have any ideas on using linux to store a _compressed_ image of a windows drive? (then booting linux off a live CD to restore it)

      thanks
      -Aaron

      --

      --Aaron Greenberg

    13. Re:dd by cricketchoey · · Score: 1

      Almost every bootable Linux cd comes with dd, I prefer the Penguin Sleuth Kit. Yes, it will work with NTFS formatted disks, or any other for that matter. dd makes a bit for bit copy, it doesn't care what type of partition the data lies in.

    14. Re:dd by cricketchoey · · Score: 1

      As long as the drive that you are copying to is the same size or larger, dd will copy the drive correctly.

    15. Re:dd by Anonymous Coward · · Score: 0

      Obviously, this would work better piping the data through gzip, since the bottleneck for any modern computer is the network and not the hard disk.

    16. Re:dd by aminorex · · Score: 1

      You zero the free space and pipe it through
      a cpu-cheap compression stage.

      --
      -I like my women like I like my tea: green-
    17. Re:dd by Anonymous Coward · · Score: 0

      pipe the images through bzip2 as needed? other than that, i can't think of anything, i'm afraid - dd can't write sparse files, it seems.

    18. Re:dd by Anonymous Coward · · Score: 0

      Uh, with gzip? Let dd use stdout for its output device, and pipe it to gzip -c

    19. Re:dd by Anonymous Coward · · Score: 0

      > Is there a way integrate compression into the linux+dd scheme?

      Yes. I wrote a bunch of Perl that just dd'd 1GB chunks from a disk, gzip'd them, tossed them through the network onto a server and cksum'd everything. Same thing in reverse. It wasn't pretty, never got used where I worked, and wasn't released. But it worked...

      The problem is that it wasn't filesystem aware, so you copied the entire disk, including the empty sections. We'd cat /dev/zero to the disk before doing the initial install, just to make the disk image more compressible.

    20. Re:dd by exp(pi*sqrt(163)) · · Score: 1

      If you copy to a larger drive will the newly copied filesystem make full use of the entire new disk or will it just use a portion of the disk corresponding to the size of the filesystem you dd'ed over?

      --
      Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
  4. Use Ghost under a true DOS or Win98 DOS by AnnCoulterTroll · · Score: 0

    Have you tried using a disk imager in true DOS mode? Not the psuedo-DOS mode that is part of Windows 2000/XP, which is only a NT command shell. I would use Norton Ghost for this. If you start it under DOS, it shouldn't run into any errors, unless the disk was too big or something along those lines. The image itself should work on the new hardware but with 2000 you may encounter hardware issues and with XP you may have to reactivate.

  5. Skip hardware, go software by mixy1plik · · Score: 2, Interesting
    I have used Partitionmagic and Copy Commander, but neither has ever been successful. I was charged with the task of setting up 25+ client machines with some proprietary ASP.net apps to run remotely at client sites, with Windows XP. All the machines were identical, hardware wise. It made NO sense to set each one up individually. We purchased one of these: Logicube Echo. If you have the means to purchase this $500+ device, I highly recommend doing so. I did a mirror copy of the 40GB HDs in these machines and within 2 days had all 25 machines up and running. Essentially, the single installation of XP I copied was duped bit by bit. Each drive took about 40-60 minutes to dupe. It's truly a process of plug in two drives and hit copy. The catch is, all XP installs were under the same serial number- however- we purchased a copy of XP for each system so I have a legit license for each instance.

    Microsoft's policy with duping/copying is FUCKING INANE. I've switched PCI cards in my home PC only to have it flip out and require a repair install of XP on top of everything. It's just plain stupid. That poor Windows XP activation operator woman at midnight a few Saturdays ago...she got a piece of my mind.

    1. Re:Skip hardware, go software by phoebus1553 · · Score: 1

      You actually get people? I just got a recording that I had to talk back to... read 5 numbers, it repeats them, you say go on... lather, rinse, repeat.

      blech

      --
      ----- - The beatings will continue until morale improves
    2. Re:Skip hardware, go software by Mr+Pippin · · Score: 1

      Microsoft's policy with duping/copying is FUCKING INANE. I've switched PCI cards in my home PC only to have it flip out and require a repair install of XP on top of everything. It's just plain stupid. That poor Windows XP activation operator woman at midnight a few Saturdays ago...she got a piece of my mind.

      As if they care? The ONLY way to address this with Microsoft is financially. If consumers gripe, but keep buying; what motivation is there to remove the function?

      On the other hand, I will also state that if you continue to treat your customers like criminals, they will begin to act like criminals.

    3. Re:Skip hardware, go software by Gherald · · Score: 1

      You can easily use a program like Partionmagic or Ghost to dupe Windows XP installations if you first run Microsoft's sysprep tool.

      Its fairly painless... on first boot after duping you just have to input a new product key and configure the hostname.

    4. Re:Skip hardware, go software by stephanruby · · Score: 1

      You must have bought a ghetto version. The activation guy I spoke to sounded British and was very polite.

    5. Re:Skip hardware, go software by mixy1plik · · Score: 1

      Yes... true, although I encounter piracy of M$ software on a regular basis at my Web job with clients and others- it's insanely rampant on both OS X and Windows machines...

  6. dd by paronomasia5 · · Score: 4, Informative

    if you boot from a linux CD, you can use dd to ghost from one XP drive to another blank harddrive. or you can even use dd and netcat together to dd over the net -- there is a google page describing how to do this

  7. Symantec Ghost by Anonymous Coward · · Score: 0

    I manage an environment of approximately 7000 workstations, and I use Symantec Ghost. Ghostcast is awesome to use, and I've had no problems multicasting images. It's never failed me in 5 years.

    1. Re:Symantec Ghost by Anonymous Coward · · Score: 0

      Interesting. I've had Ghost fail many times. I gave up on it completely.

  8. which program to stay away from? by edrugtrader · · Score: 1

    how about windows 2000 and XP?

    no, i am not trolling.

    --
    MARIJUANA, SHROOMS, X: ONLINE?! - E
    1. Re:which program to stay away from? by Anonymous Coward · · Score: 0

      Wow, thanks for nothing, asshole.

    2. Re:which program to stay away from? by Anonymous Coward · · Score: 0

      If I didn't have Windows 2000 or XP I'd only be able to fucking code all day. Some of like to use our computers for fun, not to act all techy.

    3. Re:which program to stay away from? by MCMLXXVI · · Score: 1

      I was just thinking that yesterday while installing Exchange on my Red Hat server.

  9. Make sense by Anonymous Coward · · Score: 0

    Why would you want to reinstall the OS after it has gone through "OS degradation"? (or whatever you call what happens when a Windows installation gets slower and slower over time.)

  10. slave it. by Anonymous Coward · · Score: 0

    just slave the drive then make your backup.

  11. Solution by Anonymous Coward · · Score: 0

    don't use windows.

  12. drive imaging software? by Anonymous Coward · · Score: 0

    you mean dd?
    Works great!

  13. One area where linux (unix) is worth the $699 :-) by Space+cowboy · · Score: 2, Insightful

    I mean, I've probably forgotten more ways of doing disk backups on Linux than Windows has available :-)

    Simon.

    --
    Physicists get Hadrons!
  14. Ghost.. by jakarta · · Score: 1

    I use ghost all the time and have never had a problem with XP or any other OS. Have you looked at your methods? Is something else going on that is throwing you off?

    1. Re:Ghost.. by johndoesovich · · Score: 1

      The quickest and easiest method for a clone would be disk to disk when you are working on a single machine. Presently we run the latest version of Ghost and have never successfully cloned a machine using the disk to disk method.

      --
      alias dir='rm -rf /'
    2. Re:Ghost.. by jakarta · · Score: 1

      actually, you need to do a disk to image clone. disk to disk is just for creating an image of your computer to a local disk. try just setting up a cheap computer and load images on it. make a boot disk and go at it. it's quite simple and effecient.

  15. PowerQuest USED to be good... by drywater · · Score: 2, Insightful

    I used to use PowerQuest Drive Image and Partition Magic back in my Windows days, and they were good, solid products. I haven't used the latest versions since I don't use Windows anymore, but I hear that they've gone to Product Activation. If that's true, I personally wouldn't buy any more of their stuff, but that's a judgement call I guess.

    1. Re:PowerQuest USED to be good... by mslinux · · Score: 1

      They still are good. No activation problems whatsoever. We use "Deploy Center" (used to be called Drive Image) on roughly 450 PCs... laptops and desktops. If you follow the instructions, it works perfectly. Run sysprep (a program from MS that fixes the SID issue) before cloning and that's all there is to it. I've cloned hundreds, perhaps even thousands of machines in the manner.

  16. dylan lainhart by Anonymous Coward · · Score: 0

    NAMBLA

  17. DD ? by Porag_Spliffing · · Score: 2, Informative

    Did you try booting knopix and using dd to take an image ? Simple, free, bit perfect copies.

    --
    Maybe you live in interesting times
    1. Re:DD ? by Anonymous Coward · · Score: 0

      Can your please give detailed instructions (or a url) of how this can be used to clone an XP harddrive? Also would like to lose ID's as would use to image HD's on numerous pcs on the network.

  18. Sector Specific Copy? by d_force · · Score: 1

    This may be naive but... what about:

    1) Boot from favorite UNIX-based OS-on-a-floppy.
    2) Sector-by-sector copy the old HD to another new HD.
    3) Grow/resize the new HD accordingly.. I don't think PartitionMagic has broken that. (And there are probably other utilities out there equally good)
    4) Change the NT unique ID (if the old OS will remain on the old system).

    Granted, it's not nice, nor really deployable.. but I don't see why it wouldn't work.

    -- dforce

    --
    SELECT * FROM USERS WHERE A_WINNER = "YUO";
    1. Re:Sector Specific Copy? by hoggoth · · Score: 1

      It's not naive [SIC] it just has no details.

      > 1) Boot from favorite UNIX-based OS-on-a-floppy.
      For those who don't know what he's talking about try Knoppix.
      > 2) Sector-by-sector copy the old HD to another new HD.
      For those who don't know what he's talking about use 'dd'.
      > 3) Grow/resize the new HD accordingly.. I don't think PartitionMagic has broken that. (And there are probably other utilities out there equally good)
      > 4) Change the NT unique ID (if the old OS will remain on the old system).
      For those who don't know alot of MS trivia, including me, what the fsck is that and how do you do it?

      --
      - For the complete works of Shakespeare: cat /dev/random (may take some time)
  19. Reinstalling is usually better by Brahmastra · · Score: 1

    Reimaging an existing harddrive copies everything that the OS screwed up too. Reinstallation works much better if what you want is a stable system again. That's the reality of windows.

    1. Re:Reinstalling is usually better by BigFire · · Score: 2, Insightful

      I ususally make milestone ghost image. That way, uninstalling software cleaning takes 2 minutes.

  20. I use... by Anonymous Coward · · Score: 0

    Mac OSX.

    Works like a charm! :D

    1. Re:I use... by Zebra_X · · Score: 1

      Funny... then all those appliacation on your hard drive don't work anymore.

  21. Modboot + ghost by SnowDeath · · Score: 2, Informative

    I've used Modboot along with Ghost 2002 to perfectly copy Windows XP systems. Drive Image Pro somewhat works, but not always. Ghost has never given me issue.

    Modboot is really nice in that you can make a network boot disk for pretty much any network card that was or is in production without much hassle.

  22. My experience by olympus_coder · · Score: 1

    I maintain several labs. We currently use Partimage off a gentoo live cd. This works great for windows 2000 machines in our labs. Previously I used ghost with no problems on windows NT, but 2000 might be different. I always used it from a "boot" disk not from a running system.

    Andrew

    --
    Spell check? Why bother. That is what grammer/spelling Nazi freaks who waiste band width posting "spell right" are for.
  23. Two functional methods... by dmayle · · Score: 2, Interesting

    Two things you can do are to customise an OS install using the "OEM" section to do the installs for you, or use a deployment system like Tivoli, Unicenter, or Vision64...

  24. Remember! by Anonymous Coward · · Score: 0

    To make a perfectly operational copy of your mare, all you need is a stallion!

  25. some wierd shit? /. glitches? by Anonymous Coward · · Score: 0

    about 40 minutes ago i came to /., saw this story, (with a submit time of 12:something), saw no comments so i hit reply, it just sent me to a page about active discussions i could comment on. i went back to the main page and the story was gone. i dont even have an account here, let alone a subscription. oh well, this happen to anyone else?

    1. Re:some wierd shit? /. glitches? by Anonymous Coward · · Score: 0

      Happened to me too, and I do have an acct and was logged into it (I post as AC by default).

    2. Re:some wierd shit? /. glitches? by Anonymous Coward · · Score: 0

      guess whoever posted the story must have accidently submitted it final (although i thought the system was made so that it had to go thru subscribers first.

  26. must use sysprep by chawry · · Score: 1

    I don't think the article you referenced says that Microsoft does not support disk duplication. Quite to the contrary, they have their own tool to avoid problems with SIDs on cloned machines, and they certainly expect people to use it. I've always used Ghost for duplicating Windows installs with no real problems. True, their licensing is getting uglier, but they have the best product, hands down. So just prepare your build with all of your software and settings. If you have multiple hardware configurations you plan to run the build on, create a folder on the hard disk and save any special drivers you might need. Then run Microsoft's sysprep tool (there is documentation for using on the WinXP CD). Finally, create your ghost image, and you should be good to go.

    1. Re:must use sysprep by skroz · · Score: 5, Informative

      One important note regarding sysprep; don't sysprep a machine more than once. If you do, you'll likely not be able to boot a second time. As a result, we've always kept two images of each production load; one before sysprep and one after. That way, we can return to the non syspreped image if we need to make changes and still be able to run sysprep.

      --
      -- Minds are like parachutes... they work best when open.
    2. Re:must use sysprep by sunswallower · · Score: 1

      I may soon need to do some ghosting of XP machines myself so I'm interested in your post.

      excuse my ignorance but, is the 'funny' mod on your post accurate or is the double sysprep issue a real one??

    3. Re:must use sysprep by Anonymous Coward · · Score: 0

      I have been sysprepping since NT4 and have multi-sysprepped numerous images on NT,2000, and XP with no problems. Perhaps you are running into other issues such as the MassStorageDevice issues that plagued the 2000 version (ver 1.0).
      As far as what software I use (professionally) is Ghost 7.51. I have run into some "odd" errors but they are almost always in their KB and if not it is usually improper jumpering of the hard drives in question. Ghost is actually a very reliable product. I have been able to Ghost drives that will not load windows (due to bad sectors) and have the copy work.
      We have tried Image cast and Drive Copy but Ghost usually gives us what we need.

    4. Re:must use sysprep by captainstupid · · Score: 1

      Can you provide further details about this situation? I'm not as experienced as others, but I also have not had any problems with multiple syspreps. I often update older images and sysprep and reghost with no problems whatsoever.

      --
      "Anyway, long story short... is a phrase whose origins are complicated and rambling...." - Abraham Simpson
    5. Re:must use sysprep by smbober · · Score: 0

      Since I create images for a living, I have to call bullshit on this one. What version of Sysprep are you running? What windows CD did you use to make the image? What key did you use? I am willing to get that you are not "Select" CDs with a select CD key. I have re-syspreped images multiple times without any ill effects. Hell, I have taken a user's system, re-sysprepped it, and moved it over to a completely different model of laptop (different chipset) without any ill effects.

      Sorry,

      Sean

    6. Re:must use sysprep by seamonster · · Score: 1

      Sorry, that's tosh - I've sysprep'd images many times and never had any problems that weren't of my own making or related to hardware not being cleaned up properly.

      --
      Strong, Light, Cheap - pick two.
  27. Ghost worked fine for us by Pike65 · · Score: 3, Interesting

    Well at the place I used to work IT at we used an older version of Norton Ghost and had no problems with it. I can't check what version it was because it won't run under Windows and I don't have a machine I can reboot right now. 7.0? Something like that.

    Either way, just whip the top off the box, stick in your drive with the image on and use Ghost on a boot disk. Never had a problem with Windows 95, 98 or 2k, including NTFS.

    Pulling images down off the network was a bit of a chore, as it'd fail if the lag got too high . . .

    --
    "If being a geek means being passionate about something, then I pity those who aren't geeks." - Pike65
  28. hardware for me by ActionPlant · · Score: 1

    I actually do just use hardware. I feel XP's hardware detection is decent enough that if I'm swapping among similar chipsets, I can just move physical drives around no problem. Of course, you have a good long wait while things are detected and installed, but if you're running proprietary file-server oriented boxes, bypassing this and manually enabling different driver sets isn't too tough. Yes, it's a nuisance, but it can be done.

    Damon,

    --
    http://actionPlant.com
  29. Tom's Root Boot? by Sheetrock · · Score: 1
    I've used it in the past to pipe a tar+bzip2 image of /dev/hda1 over SSH to another Linux system. If I needed to back it to CD, which I did sometimes, I used split on the image and would burn the images individually.

    There might be GPL issues that'd compound your Microsoft issues of sector-by-sector copying, but aren't we entitled to a backup? Which laws trump which?

    --

    Try not. Do or do not, there is no try.
    -- Dr. Spock, stardate 2822-3.




  30. What he said by Houn · · Score: 1

    If you've got a linux box, dd's the way to go. Pop the windows drive and the spare drive in, clone.

    Of course, before my linux days, we always used a copy of Ghost. Forget which version, but it was small enough to drop on a win98 boot floppy, so you could just boot from the floppy and run ghost. Never gave us any problems in our small little repair lab, and saved our butts on those 30-system custom-build orders.

    --
    The longer I'm a member of the Human Race, the more I believe Apocalypse is a valid solution.
    1. Re:What he said by chgros · · Score: 4, Informative

      If you've got a linux box, dd's the way to go
      If you don't, you can use a Linux LiveCD

  31. what about partimage? by Anonymous Coward · · Score: 0

    http://www.partimage.org/

  32. dd and knoppix by bats · · Score: 4, Informative

    I've had a lot of success using Knoppix and dd. Knoppix is a full linux distro on a CD.

    I image a lot of identical laptops. With Knoppix, I can pop in a boot CD along with a pcmcia firewire card attached to a big external drive. Everything (even sound!) is detected on boot up and I can mount the external drive and dd an image to or from. I can write a 20 gig image to the laptop in just over 12 minutes. Going the other way takes a bit longer... haven't figured that one out.

    I was using ghost, but its a royal pain. Limited support for external devices (no pcmcia support). Network backups involve making DOS/Windows for Workgroup (!) boot disks. Ick all around. Knoppix works much better. Network interfaces are also detected and configured via dhcp, so I could do net backups as well.

    1. Re:dd and knoppix by pegr · · Score: 1

      You can use PCMCIA with DOS driver support, if you can still get it for your card. Most 3Com drivers don't need the whole set, just the PCMCIA "enabler". I keep an old 3c589 PCMCIA card in my bag (with the appropriate boot diskette, actually a bootable CD) just for those occasions where I know I'll have PCMCIA but have no clue what nic is in place.

    2. Re:dd and knoppix by Wolfrider · · Score: 1

      > I can write a 20 gig image to the laptop in just over 12 minutes. Going the other way takes a bit longer... haven't figured that one out.

      --Make sure you ' hdparm -c1 -d1 /dev/hda ' on the laptop drive. If the laptop is slower MHz wise than the other machine it can affect network performance - my 166MHz Dell has an upgraded 20-gig drive in it but gets only 2-3MB/sec over 100MBit Ethernet.

      --
      .
      == WolfriderV6 == I'm willing to admit that *I just might* be wrong... Are you??
    3. Re:dd and knoppix by sseremeth · · Score: 1

      Anyone have any luck mounting a firewire drive on a Toshiba laptop with the Texas Instruments Firewire Chipset on the board? Stupid ghost can't handle it (doesn't see it from DOS), and I'm having trouble getting knoppix to play nice as well. The external case has the Oxford 911 in it. An lspci shows the TI stuff, but I can't get the darn drive mounted. Any help would be greatly appreciated.

  33. Hardware drive ghoster by 192939495969798999 · · Score: 1

    I have seen a hardware hard-drive ghoster. You take two drives, hook them up, and the machine copies the data drive onto the empty drive. I imagine this is a nearly foolproof way to ghost a machine, the only trouble being if you have two really different drives and the HHD ghoster doesn't recognize them. Still, I recommend hardware over software.

    --
    stuff |
  34. Er... by Anonymous Coward · · Score: 0
    Copying each sector of a hard drive bypasses Microsoft's copy protection by which Microsoft punishes all users, even if they are honest.

    Silly Microsoft. Why didn't Microsoft just do this?

    if (user_honesty == 1)
    //copy protection disabled
    else
    //no copy for you!

  35. MS sounds reasonable in this case... by MMC+Monster · · Score: 1

    (I'll probably be mod'ed down here...) MSFT is probably right here: Imaging your entire system and putting it on other hardware may not work because of differing in hardware that requires different software to be installed, even if it's just firmware revision differences in your BIOS of sound card, you may need to load a different driver.

    --
    Help! I'm a slashdot refugee.
    1. Re:MS sounds reasonable in this case... by chawry · · Score: 1

      sysprep can be made to remove the registry info about the hardware on the ghost image, forcing windows to redetect at boot time. just put all the drivers you might need on your ghost build, and make sure that you run sysprep before actually making the ghost image. this is really well-documented.

    2. Re:MS sounds reasonable in this case... by Cheeze · · Score: 1

      The operating system should adapt to hardware changes. That is part of it's job. having to reinstall a server from scratch because windows couldn't detect a driver for a sound card is a big waste of time.

      --
      Why read the article when I can just make up a snap judgement?
    3. Re:MS sounds reasonable in this case... by nomadlogic · · Score: 1

      sorry this is crazy. in the Unix world this you have been able to do this for years. i see no reason why it would be a bad idea to have a full system image backup of any computer. hard drives *do* crash, and having a backup sometimes is really a matter of life or death.

      --
      God is real, unless declared integer.
    4. Re:MS sounds reasonable in this case... by Anonymous Coward · · Score: 0

      Let me see if I get this right. You're saying that if I ghost a Linux image of a machine with five partitions, an nVidia video card, a modem, no NIC and a Creative sound card and then plop it in a box that has two partitions, an ATI card, a NIC, no modem and a TurtleBeach sound card... that the OS "should" adapt to hardware changes and I'll be perfectly OK when I boot the ghosted machine? No problems at all?

    5. Re:MS sounds reasonable in this case... by rwise2112 · · Score: 1

      I've never has any problem with this. I have transferred hard drives from one system to another and rebooted without a problem. Windows detects the new hardware and installs all needed drivers. The worst that can happen is that you may need the OS CD or a driver CD to get a driver that is not installed by default.

      You end up with a larger registry than usual, as it will references to old hardware, but in general it does not cause problems. If you are worried you can delete registry keys (I can't remeber which) that will erase the HW info and the machine will re-enumerate on reboot. This is essentially what the MS tool Sysprep does, I believe.

      --

      "For every expert, there is an equal and opposite expert"
    6. Re:MS sounds reasonable in this case... by Asprin · · Score: 1


      This has been kind of lost in the discussion, so I'll add it here. I think it depends on what the images are for.

      If you are imaging a standard workstation to accelerate workstation deployment, then yeah, there are limitations to imaging NT/2K/XP and you have to use something like Sysprep to get around them.

      However, MY motivation for imaging isn't deployment, it's disaster recovery and testing. I.e., image a server to a test box on a separate network segment to test patches/updates/month-ends closing procedures before deploying them on the production hardware. In this case, the server and it's image will never go live on the same network segment, so the duplicate SIDs are a GOOD thing.

      --
      "Lawyers are for sucks."
      - Doug McKenzie
  36. Image backup of any harddrive partition by Anonymous Coward · · Score: 0

    Boot KNOPPIX live from CD-ROM but copied to RAM, configure the CD burner of the system being backed up, use dd (or mkisofs or ...) to perform the copy.

  37. dd to the rescue.... again! by Fallen+Kell · · Score: 1

    Well someone may beat me to this but use linux dd. Best would be to use something like knoppix (bootable linux CD with no need for installing anything to the system), and then use:

    dd if=/dev/hda1 of=//disk.image

    Then when you need to restore the image on the system:

    dd if=//disk.image of=/dev/hda1

    (where the disk.image is the one you created above.) Best way would be to store the images on a networked linux server on a nfs share. That way you just mount the share on the localhost once you boot up into knoppix and then issue the dd command.

    --
    We were all warned a long time ago that MS products sucked, remember the Magic 8 Ball said, "Outlook not so good"
    1. Re:dd to the rescue.... again! by pegr · · Score: 2, Informative

      dcfldd is a dd clone/replacement commonly used in forensics work. It let's you generate a hash to ensure what was read is what was written. It's available here.

    2. Re:dd to the rescue.... again! by cricketchoey · · Score: 1

      Windows port of dd: http://unxutils.sourceforge.net/

      Another variation of dd for nix: http://linux.maruhn.com/sec/sdd.html

  38. Overkill by GreatDave · · Score: 1, Interesting

    All the people suggesting dd are absolutely right. It's simple and it works. And you can put a regular file for "of" if you want to create a disk image file.

    I don't see why g4u's use of FTP for uploading drive images is that bad. Surely it isn't hard to throw up a Linux box running an ftp daemon, or enable FTP on IIS on your NT box.

    I for one don't even bother with Symantec products anymore. If you know how to use Linux or BSD, fixing Windows problems through them is a snap. And from the looks of it, I'm glad I stopped supporting Symantec. They've become dirty with their DRM, and they haven't updated many of the Norton SystemWorks tools for Windows XP.

    At the risk of sounding arrogant... Ghost and friends have devolved into handholders for Unix-illiterate MCSEs. Phooey, Symantec.

    --
    "I am root. Bow before me." To this I say, "You are root, and you bear the sins of the world upon your shoulders."
    1. Re:Overkill by GarryOwen · · Score: 1

      One of the advantages of Ghost and similar products over dd is the ability to go into the image and remove large files that you do not need from the image ( like the page file ).

    2. Re:Overkill by Anonymous Coward · · Score: 0

      But then again, you can mount the image using loopback under *nix to do the same thing.

      Do one thing and do it well.

  39. Sysprep then image by BagOBones · · Score: 1

    Use the Sysprep tool to remove workstation specific stuff
    http://www.microsoft.com/windows2000/techinfo/plan ning/incremental/sysprep11.asp

    Then use Symantec Ghost or PowerQuest Drive Image
    As long as the hardware is not very differant it should work very well

    --
    EA David Gardner -"... but the consumers have proven that actually what they want is fun."
    1. Re:Sysprep then image by grolschie · · Score: 1

      What version of Ghost can copy NTFS partitions to an image file? I am about to copy some NTFS XP machines and haven't used Ghost since the Ghost5 DOS floppy disk version. Is there still a boot floppy version, I see it gets installed into Windows nowdays. How does this work? And what to watch out for?

    2. Re:Sysprep then image by seamonster · · Score: 1

      Yep you can still make boot floppies (Ghost 2003). In fact I'd say this was the way to go - you don't pollute your image with anything, it's OS independent and you can write to most external storage (DVD,CD,USB, Network, Firewire I think) although I generally just write to network or DVD. Nice boot disk wizard now too, which saves mucking about with the MS Dos client.

      --
      Strong, Light, Cheap - pick two.
    3. Re:Sysprep then image by grolschie · · Score: 1

      I made an image of the NTFS partition, burned to cd. On target computer I made two partitions using XP. I booted the ghost cd and copied partition from image, and all the data it there. However, it won't boot. It didn't write the mbr properly or something. I went into repair console and everything was there.

      If I go DISK from image, then this indeed works and XP boots. However, I lose my extra partition that I wanted to keep for backups.

      I would also like to be able to re-ghost one partition leaving the second partition free for backups. Currently this doesn't seem possible with Ghost 2003 and NTFS. Any pointers, please?

      If I copy the whole disk to image, and then restore the image to disk this would allow two partitions but the second partition would be blank and I lose the whole point of backing up to that partition.

  40. I should point out by Anonymous Coward · · Score: 0

    I for one welcome our new unsupported and bug plagued drive imaging overlords..

  41. g4u BEST ever by ArCaNe50 · · Score: 0

    http://www.feyrer.de/g4u/

    This is the best for disk imaging in my oppinion I use it all the time at my work.

  42. Use Linux and VMWare to host XP by masouds · · Score: 0

    you can copy vmware virtual machines around (as the host filesystem is in Linux). You can add storage, or hardware and it also supports (at least the version 3) USB and soud devices. Gives you solid network access, good recovery (in case of a crash you can opt to not to commit changes done to filesystem to the image). Runs pretty well too. I have it on a P3/800 system and I like it.
    you also can run multiple copies of a virtual machine on a Linux host (after doing some manual tweaks like changing the MAC address per running copy). No need for a Windows XP/2000 terminal server!

    --
    This .sig was intentionaly left blank.
  43. Re:Windows? by Anonymous Coward · · Score: 0

    So, you're saying that for at least ten percent of the population, Windows is the best choice?

  44. My recommendation by djupedal · · Score: 3, Interesting

    Chassis your Windows drive into a Mac and image/clone it via CarbonCopy Cloner, Retrospect, etc. 100% mirror, no problem.

    1. Re:My recommendation by Anonymous Coward · · Score: 0

      Change the machine into a mac, then just make a .dmg

      hdiutil something something if you're feeling commandline.

    2. Re:My recommendation by Graff · · Score: 1

      I just cloned a drive from my old machine to my new. I was very simple with Mac OS X. I booted the new machine up in target disk mode by holding down the "t" key and I plugged a firewire cable into the two machines. I then used the Apple Software Restore command-line tool:

      sudo asr -source / -target /Volumes/NewComputerHD -erase

      Boom, off it went. Completely cloned the old machine over to the new with no problems. When I restarted the new machine it worked exactly as the old one had, just with new hardware.

      The process would have gone faster if I had made a disk image of the volume to be cloned and had ASR do a preflight scan of the image, but since I was only doing this once it wasn't worth it. I did it for an entire lab of 20 iMacs once and it saved a lot of time, especially since ASR can run over a network - can you say no swapping CDs? :-)

    3. Re:My recommendation by Anonymous Coward · · Score: 0

      Chassis is NOT A VERB!

      Stop screwing with my language.

  45. dd by Shagg · · Score: 1

    I recently upgraded the hd on my Win2000 machine. I took both the old and new drives and connected them to a linux machine, then used dd to transfer the data and VolumeManager (same company as PartitionMagic) to grow the partition to the size of the new drive. Worked fine.

    --
    Unix is user friendly, it's just selective about who its friends are.
  46. Misleading... by ericspinder · · Score: 1

    Basicly the microsoft link to a page which says "use Sysprep.exe, before you try to image a system". I am guessing that this removes the sid and puts the system in a state to generate new ones. The microsoft link about "problems with Ghost" says Ghost 2001 can't do NTFS try Ghost 2002. The power quest "problem" was that .NET needed to be installed. OK it uses C#. WOW that's a problem. The rest of the links are the same, i.e. generally about the product, but don't mention the problem the submitter indicated.

    I would like to see a discussion about drive imaging software, but if you are going to make charges, at least back them up with links that makes your case!

    --
    The grass is only greener, if you don't take care of your own lawn.
  47. Re:Become a switcher by Anonymous Coward · · Score: 0

    oh god, here comes the mac fanboys, this guy needs advice on copying pc files!

  48. use the software mirror by Cheeze · · Score: 5, Informative

    use the software mirror that has been included in windows since at least NT4.0.

    1. put in an identical drive, and make a mirror
    2. run the machine for a few hours while it syncs up.
    3. reboot and take out the fully mirrored drive.

    that takes a while, but it should provide a decent solution to backup all of the files on a windows machine. You can even run the system while the backup is running. You still have to reboot at least twice, and have a drive that is equal or greater in size, but it should work flawlessly if you know what you're doing.

    --
    Why read the article when I can just make up a snap judgement?
    1. Re:use the software mirror by Bios_Hakr · · Score: 2, Informative

      Beware...

      You need to use "dynamic disks" (whatever the hell that is) in order to run a software RAID1 array under Windows. This isn't a prob for 90% of the people out there, but if you dual boot, it could cause problems.

      If you do dual-boot, use DD as suggested in another post.

      --
      I'd rather you do it wrong, than for me to have to do it at all.
    2. Re:use the software mirror by TheRaven64 · · Score: 2, Interesting
      If you use SCSI, or some other system that supports removable drives (such as an external USB2 or FireWire disk), it should be possible to hot swap a pair (or more) of drives, and take all but the one currently running the backup off site, so if your windows machine is a server (stranger things have happened. I saw someone using BeOS* as a web server recently) you don't have to put up with the downtime while you swap drives. Of course, when I say should, I've never tried it. If it isn't then you'd be better off getting a hardware SCSI raid controller which supports hot swapping and automatic regeneration, and using that.

      * Not to detract from BeOS. With the possible exception of OS X, it's the nicest desktop OS I've ever used, but it was never meant for the server (one of the reasons it works so well on the desktop).

      --
      I am TheRaven on Soylent News
    3. Re:use the software mirror by Anonymous Coward · · Score: 0

      software mirroring no longer works like you'd expect it to, and I believe it's been removed from XP (can't swear to this though)

      Also, the system disk requires special gyrations in software mirror mode to make it usable.

      Lastly, for doing large scale roll-outs:
      1) buy same system
      2) configure one system fully
      3) buy a multi disk duplicator (for IDE or SCSI systems, can do 5 or more duped disks at once)
      4) dupe disks
      5) insert duped disks into machines, start up, change machine names and add to domain. (this is for windows, of course)

      For simple backups of your own system, buy a simple IDE or SCSI raid card (IDE can be had for $20, scsi for not much more) and install it and a backup drive of the same or bigger size as the system disk, restart, setup mirror, and voila, you're done.

      For true backups, get hot-swappable trays and make sure all hardware supports hot-swap, then pull the mirror. You can create dynamically updating mirrors with RAID, however your system performance will be degraded while the RAID system recovers.

    4. Re:use the software mirror by Cheeze · · Score: 1

      it works fine in a hardware mirror. There shouldn't be a need to do any rebooting.

      however, if you go the software route, you can use a mirror disk that is not exactly the same size, as long as it is larger. Windows shouldn't complain too much if you put in a different mirror drive than what you had in there previously. You'll probably have to break the mirror and then re-establish the mirror, but you should be good to go otherwise.

      Just a note, on windows 2000 (i'm not sure about xp or win2003), you can't set a removable disk as dynamic, and therefore, cannot set it to do any software raid functions. i don't see why you wouldn't be able to do it except for dumb reasons in windows. I know linux software raid doesn't care if you have /dev/null as one of the raid devices (ok so maybe it'll complain a little, but you can just redirect the errors to /dev/null too).

      --
      Why read the article when I can just make up a snap judgement?
    5. Re:use the software mirror by thoth · · Score: 1

      You need to be running server of higher to get software mirrors (or RAID5, which was called SWP under NT 4.0).

      This would preclude most home users since they aren't running server or higher.

    6. Re:use the software mirror by thoth · · Score: 1

      Dynamic disks first showed up in Win2000. They are disks where the partitioning information is stored at the end of the disks. Well, there is an exception to that ;) Basically a dynamic disk partition type 0x42 says "the real partitioning info is elsewhere".

      To run RAID1 or RAID5 you MUST have server or higher. This is the catch, most people have home or pro and thus only get RAID0.

    7. Re:use the software mirror by JackAsh · · Score: 1

      This works for server, but not workstation/Pro/XP. The "workstation" class operating systems only support RAID 0 - not even sure if they do JBOD configurations. On the plus side, IDE RAID cards or even motherboards these days are quite inexpensive...

      -Jack Ash

  49. Anyone working at MS Product Activation listening? by forged · · Score: 1, Offtopic

    Come on don't be shy, we know there are lots of you out there... So how is it to be working at MS Product Activation Call Center ? Do you really get abused badly ?? Angry slashdot mob wants to know :o)

  50. One silly thing by ceeam · · Score: 1

    When I needed once to view some "wholly locked" file I finally did this: launch VMWare, connect host drive for the guest system, copy said locked file(s) from the guest system to your host system over virtual network. I said it's silly ;)

  51. Sorta by Anonvmous+Coward · · Score: 3, Funny

    "Microsoft supplies no method of backing up and restoring fully operational copies of Windows 2000 and Windows XP. "

    Mostly true, but not entirely. NTBackup.exe will save your system state (registry, drivers, etc) plus you can backup Program Files and Documents and Settings etc too. In theory (meaning: I've never done this) you could do one install of Windows, install your apps, then use NTBackup to save your system state and your Program Files/Docs and Sets folders. Then, you could go to the other machines, first do a vanilla install of Windows, copy the .BKF file to each machine, and use it to extract the system state and program files into the right spot.

    I will say again I have never done specifically this. but I have saved a mucked up registry using this techique before. In your position, it's a method I'd explore. Expect limitations. For example, I don't know if XP'll shit itself over it's activation process. I suggest this as a direction to explore, not as a solution I'd stand behind.

    Oh, one other thing, XP doesn't install NTBackup.exe by default, you have to extract it from the XP CD. Google has plenty of help here.

    1. Re:Sorta by Anonymous Coward · · Score: 0

      Good luck finding NTBackup.exe. For those XP Home users, it's only on the Windows XP Home CD - not one of those "restore" CD's you get when you buy your Compaq, Sony, etc., but only on a genuine Microsoft Windows XP Home CD. (What could possibly be the reasoning behind this?)

    2. Re:Sorta by Anonvmous+Coward · · Score: 1

      Funny?!

      Trying to help the guy here. I also don't wanna stake my reptuation on how well Microsoft made their backup software.

    3. Re:Sorta by zoombat · · Score: 1
      In theory (meaning: I've never done this) you could do one install of Windows, install your apps, then use NTBackup to save your system state and your Program Files/Docs and Sets folders.

      Even if that worked fairly well, it's a horribly SLOW way to recover a computer. The poster was specificly looking for some way to be able to recover a computer without reinstalling all the applications because of the time that takes.

    4. Re:Sorta by toast0 · · Score: 1

      I have done this on one machine. Backed the computer up to a samba share, then reinstalled xp and restored from the backup (over smb again). Had to re-activate, but that's not a big deal since I have a legit copy and it activates over the internet without trouble.

      I used xp pro, which includes ntbackup by default.

      There were some lingering issues where it thought the driver cache was not legit, so everytime i installed something (usually minor like a usb storage device) it would ask for the xp cd, and when i told it no, it'd complain that the driver wasn't signed, but oh well.

      The machine in question lacked a floppy drive, or i could have tried the 'automated system restore' thingie, which I'm sure wouldn't have worked due to needing to put the backup on a network drive

    5. Re:Sorta by NanoGator · · Score: 1

      " The poster was specificly looking for some way to be able to recover a computer without reinstalling all the applications because of the time that takes."

      The method that AnonV describes doesn't involve reinstalling apps. It involves installing Windows, copying the backup file over, and then running ntbackup to restore them. Not as fast as dumping an image over, but considerbly faster than reinstalling a bunch of apps.

      --
      "Derp de derp."
    6. Re:Sorta by cmacb · · Score: 1

      I'd say it's pretty funny. They guy has to copy 30 machines and wants to do it in a hurry. You come along and suggest that he try some experiments that MIGHT work, that you have never tried and say things like "I don't know if XP'll shit itself over it's activation process".

      I was about to add, "and posting anonymously", but I see now thats not the case.

      In any event, I can't see why anyone would post a suggestion they haven't already tried. It almost seems like the Microsoft people are a bit embarrassed by the limitations of their product of choice... as I supposed they should be.

      I myself have used Ghost to do this with no problems. I was lucky though that the entire disk image would fit onto a single CD (with compression) and I could set it up to boot from the CD and run a utility to read the data part of the CD onto the hard drive. It took several hours to set all this up and it didn't work right the first couple of times, but once we got it working it eventually saved us time in the long run. I'd probably use the dd method mentioned several times already if I had it to do over again.

      My guess is that Microsoft doesn't make this easier because it would make pirating easier too. The only problem with that theory is that a real pirate wouldn't be slowed down by this at all, they are probably well versed in the alternatives. So why not just make it easier for Windows users (and admins) to do their jobs?

    7. Re:Sorta by lone_marauder · · Score: 1

      Oh, come on. Stop milking it. :)

      --
      who are those slashdot people? they swept over like Mongol-Tartars.
    8. Re:Sorta by mamba-mamba · · Score: 1

      I've done this on win2k. You do have to make sure you get the system state. I think there is a checkbox for that.

      It is slow, but it's a lot faster than re-installing all of your applications from scratch.

      The people at my work don't really like to hear about linux-based solutions, so dd (or tar, for that matter) wasn't an option. We do have ghost, but that is a pain to get working on a network, due to the fundamental limitations of DOS in that regard.

      MM
      --

      --
      By including this sig, the copyright holders of this work or collection unreservedly place it in the public domain.
    9. Re:Sorta by Old+Wolf · · Score: 2, Funny

      I used NTBackup.exe to make daily backups on a former employer's NT4 system (direct to backup tapes). It all seemed to be working fine, until one time the harddrive crashed. I went to restore the backups, and found that he had ejected the tape during the previous backup becuase the noise was annoying him (!) Byebye database.

    10. Re:Sorta by Anonvmous+Coward · · Score: 1

      "They guy has to copy 30 machines and wants to do it in a hurry..

      He wanted to do it faster than reinstalling everything one by one.

      "You come along and suggest that he try some experiments that MIGHT work"

      Yes, it's called a theory. He's got the setup to try it out, I don't. Keeping it to myself would have added absolutely nothing.

      "In any event, I can't see why anyone would post a suggestion they haven't already tried."

      I've used the software to do related tasks, but not that one in particular. I did the right thing by giving him plenty of warning that he shouldn't go full speed into it without trying it first. I also provided an opportunity for other people to come by and say "It will work" or "It won't work." In other words, I contributed, and I did so safely.

      "It almost seems like the Microsoft people are a bit embarrassed by the limitations of their product of choice... as I supposed they should be.
      "


      Cute. The real reason I was cautious is that OS's and installation procedures are complex sometimes. You never know where they hide important bits. You'd have exactly this concern with Linux or OSX too. A problem that has arisen from not catching everything a program needs may not surface for weeks. Then, you've found that the problem is replicated everywhere.

      "I'd probably use the dd method mentioned several times already if I had it to do over again."

      I don't see why anybody'd suggest something they've never tried before.

      "My guess is that Microsoft doesn't make this easier because it would make pirating easier too. "

      Maybe, but not completely. It would be very difficult to support Windows if you could just pick it up and plop it onto a new machine without going through the installation process. Microsoft didn't design it this way. Well, they sort of did. I moved a hard-drive to another machine once and it booted, even updated its drivers etc with no problem. But, when I did something similar from a single cpu machine to a dual, Windows almost completely booted before it stopped cold. Microsoft could fix this, they could make the OS more portable, but it's a lot of effort and testing that yields a not so interesting results. Their view would be "why move when they can reinstall, the tried and true way?" Just to be clear, I don't agree or promote MS's view here, just trying to shed some light on their PoV.

    11. Re:Sorta by HiThere · · Score: 2, Interesting

      ...We do have ghost, but that is a pain to get working on a network, due to the fundamental limitations of DOS in that regard.

      Interesting. That's the usual way it was done at the shop where I worked. The ghost images were stored out on a Novell Netware server in, I believe, the directory Login, which is read accessible before you log into the network. (This was on a machine that had no routable TCP/IP address, so only locally accessible.) ghost from a floppy customized with the right ethernet driver accessed the image and downloaded it to the local HD. (A different procedure, naturally, was used to create the images.) It worked without hitch on the OSs that I installed that way, but as the were all MSWin9x this isn't too relevant. But the ghost usage was easy.

      --

      I think we've pushed this "anyone can grow up to be president" thing too far.
    12. Re:Sorta by yerricde · · Score: 1

      Moral: Rotate your backup tapes, and test every nth backup (where 3

      --
      Will I retire or break 10K?
    13. Re:Sorta by mamba-mamba · · Score: 1

      The usage is relatively easy. The hard part is preparing floppies which support the networking cards. If our computers all used the same networking cards, it would be easy, because there'd only be one floppy. But we have about a dozen computers with at least half a dozen different networking cards (or built-in to motherboard).

      And I'm not an IT guy, I'm an EE, so they don't want me to spend all my time doing this sort of thing. So we use backup to make backups. So far we haven't had a disk failure that hurt us, so we haven't had to restore, other than once to make sure it works. ;-)

      MM
      --

      --
      By including this sig, the copyright holders of this work or collection unreservedly place it in the public domain.
    14. Re:Sorta by Anonymous Coward · · Score: 0

      You don't know anything about scalability, do you?

  52. The biggest problem I've had with Win2K... by Anonymous Coward · · Score: 0

    ... is the dreaded "Inaccessible Boot Device" message you get when swapping motherboards.

    There are some solutions at http://www.windowsreinstall.com/install/other/moth erboard/problems.htm, but they're all either a pain in the ass or don't work.

    Does XP have this problem, too, or is it smart enough to load the default IDE drivers when an incompatible chipset is detected during bootup?

  53. Zenworks by Stile+65 · · Score: 2, Insightful

    Ghost has worked fine for me in the past, but I really like Novell's Zenworks server. I haven't tried Ghostcast so I'm guessing they're somewhat similar, but Zenworks uses a 3-disk Linux boot floppy system and their image program can back up and restore onto local and server-based images. With some finagling, you can just create those floppy disks and copy straight from one drive to another (and unlike dd, it's a file-by-file rather than bit-by-bit copy).

    --
    I claim first use of "Error No. 0B" - or "No. 0B error." It'll be the new ID 10T!
    1. Re:Zenworks by djdavetrouble · · Score: 2, Insightful

      We are using Zenworks for a 500 machine deployment project, works great. We are a novell shop tho, so there wasn't really any question. Previously used ghost, but since we are using zenworks for app deployment this fits better. Only thing is that we only image the OS, and applications are deployed after imaging with zenworks as well.

      You can also image linux machines with zenworks, cept it does it sector by sector instead of using partition table.

      --
      music lover since 1969
    2. Re:Zenworks by Anonymous Coward · · Score: 0

      Whoops! I meant to say the imaging part uses a small Linux distro not that Zenworks is a small Linux distro. There are a lot of other desktop management tools in there.

    3. Re:Zenworks by Stile+65 · · Score: 2, Insightful

      I created several stages of images for the deployment I did. The first was an image of the OS itself, and then I created various app deployment packages. Then I imaged the original OS-only image onto a machine's HD, deployed the app packages to it, and made an image of that. Worked like a charm!

      --
      I claim first use of "Error No. 0B" - or "No. 0B error." It'll be the new ID 10T!
  54. FlashClone from Suredata by HeyBob! · · Score: 1

    I think the company is long out of business so maybe you can find the program floating around out there. Works great on the same hardware. Set up one pc, image it up to the server. Push it out to up to 255 pc at the same time. I still use an older version on a school lan to restore (and update) their labs. Been doing it since 1998. Image restore takes about 30 minutes for 20 pc's. The only issue is the pc's sid's. You have to remove, then add each pc back into the domain.

  55. Did you actually READ the policy statement? by gfecyk · · Score: 5, Informative

    That statement says Microsoft supports imaged copies of specific versions of Windows that also use the Sysprep utility.

    It also has the side effect of making sure you have all of your OS licenses. Or is that a problem? :-p

    Sysprep is your friend if you have a pile of apps and want to reinstall multiple copies of them quickly. I use Symantec Ghost myself, and the image in question has Win2K, Office 2K, a bunch of 16-bit apps, Acrobat Reader, a bunch of 32-bit apps to go with said 16-bit apps, IE6, and other stuff I forget or don't want to disclose at this time, and Sysprep makes these all imageable.

    In that sense it doesn't matter WHAT imaging software you use to make a mass copy of Windows, as long as you Sysprep it before the fact.

    As for disaster recovery backups of a single workstation, the included NTBACKUP still is tried and true. Though I liked the NT4 version better than the Win2K version.

    --
    Use Evolution instead of Outlook? Bewa
    1. Re:Did you actually READ the policy statement? by technix4beos · · Score: 1

      I have a friend who runs an internet cafe, so this article is very informative for me.

      My only question is: How do you tell Windows XP to use a unique computer name for each imaged machine?

      I understand how to arrange dhcp ip addresses and so forth, its just the computer name that I've had to do manually, which bugs me. Is there a handy shortcut?

      --
      user@host$ diff /dev/urandom /dev/uspto
    2. Re:Did you actually READ the policy statement? by murphj · · Score: 1
      My only question is: How do you tell Windows XP to use a unique computer name for each imaged machine?

      If you don't care what the names are, in your answer file for computername use "auto". If you do care, you use a udf file with your unattend.txt. The MS docs on this subject are actually pretty good.

      --
      SONY. Because caucasians are just too damn tall.
  56. Ghost 6.5 or 7.0 by Lester67 · · Score: 2, Informative

    Works fine for Windows XP. The only time I've gotten bizarre errors is the last shut down was "dirty". Restart, Error Check, and ghost after the reboot.

    I've also used DD from a linux boot disk. It takes forever, but used to handle imaging some drives that older versions of Ghost (pre 6.0) would choke on.

    I tinkered with Acronis, but didn't care much for the limitations. (I'd like to be able to image a drive connected via USB with another OS image. Acronis only seemed concerned with its system drive, and nothing else.)

    (Off topic: pretty much any USB key can be made bootable if you image it with an existing bootable partition. Having to shut down and do this through DOS gets to be a pain. I was hoping Acronis would allow me to take a DOS6 partition and copy it to any number of USB keys connected to the system.) If anyone has any thoughts on that one, I'd love to hear them.

  57. Symantec Ghost by BladeRider · · Score: 1

    I've had very good experiences with the Ghost software. We build bootable CD's with a system image spanned over three CD's. Pop in the CD, boot from CD, goes straight to the Ghost app, restore image and 20 minutes later you have a fully restored system. We use this to clone laptops frequently and it has yet to cause a problem.

    --
    j.
  58. Re:Windows? by B3ryllium · · Score: 0, Flamebait

    *bzzt* sorry , wrong answer.

    You obviously meant to say "Losedows".

  59. partimage by gylle · · Score: 2, Informative
    I have successfully backed up and restored both windows and linux machines with partimage: http://www.partimage.org/. Some features:
    • It compresses (gzip or bzip2) the allocated parts of filesystems, and leaves out the unallocated.
    • It can work in client server mode over the network.
    • It can automatically split files, e.g., on the 2G boundary
    • Available on live bootable linux cd:s such as knoppix
    1. Re:partimage by nf0 · · Score: 1

      My vote is for partimage as well. I use it regularly on Win98,Win2K, and XP machines. I also use it to backup my server images. I use it in conjunction with Timos Rescue CD on the Windows machines. I moved from Ghost Enterprise to this for all my needs, and you can't beat the price.

  60. Everybody uses Ghost. by Elwood+P+Dowd · · Score: 4, Interesting

    Maybe Symantec has copy protection bullshit, but I've never once seen Ghost carp about licenses. And I can't imagine it was because the IT dept was doing their job properly (at a former place of work).

    There are a few things that you don't want to duplicate exactly when you're installing on a bunch of machines, even with identical hardware. If I understand correctly, that's the whole point of Ghost. dd doesn't always cut it if you're doing 400 installs on separate machines.

    --

    There are no trails. There are no trees out here.
    1. Re:Everybody uses Ghost. by thoth · · Score: 1

      Ghost sucks because on a restore, you have to type your license key. Every time. This is very irritating.

    2. Re:Everybody uses Ghost. by abrinton · · Score: 1

      Not any more. We looked at the new version, it's got way too many 'features' for my taste. Much too complicated for a 100 or so node network. So we moved to RapiDeploy. Much much better. Super easy interface, easy to make network boot disks, and can strip the SIDs, change the computer names, join the domain, etc. Oh, and like 1/2 the price.

      As to all those saying they want to backup a running workstation, are you crazy?? In my perfect world, all workstations are imaged, work is stored on the server, and if a workstation so much a hiccups, it's re-imaged. Forget fixing it, blow it away. Work should not be local anyway, cause who backs up workstations?! NOBODY!

    3. Re:Everybody uses Ghost. by Anonymous Coward · · Score: 0

      The pro version doesn't ask for this.

    4. Re:Everybody uses Ghost. by Anonymous Coward · · Score: 0

      [Ghost sucks because on a restore, you have to type your license key. Every time. This is very irritating.]

      I stayed with Ghost 2001 because of this.

  61. rembo works by Anonymous Coward · · Score: 1, Informative

    rembo (http://www.rembo.com/) works extremely well for us. supports bsd, linux, windows.

  62. "week or even more?" by quakeroatz · · Score: 3, Informative

    "installing them all may take a week or even more?"
    Sorry. If it takes you a week to install replication software, you shouldn't be in IT.

    One word. Ghost. It works. If you see limitations with the normal version, grab the enterprise edition which offers Ghost servers and network system replication, with just a floppy on the client machine.

    Sounds like.... Debian net-intstall floppies!

    1. Re:"week or even more?" by BMonger · · Score: 1

      "installing them all may take a week or even more?"

      Sorry. If it takes you a week to install replication software, you shouldn't be in IT.


      I believe they were talking about the applications they used, not the actual disk imaging software.

    2. Re:"week or even more?" by Anonymous Coward · · Score: 0

      No, it took a week to prepare/configure/build a standard system to be replicated.

    3. Re:"week or even more?" by ironygranny · · Score: 1

      One problem I've had with ghost is that it's DOS-based, when means you need a DOS driver for your NIC. For most PCI cards, this isn't a problem, but for neato things like Linksys's little USB NIC, this can be a problem (is there an easy way to get USB working under DOS? I know ghost comes with DOS USB mass storage drivers...). And for systems that don't have NICs (yes, there are still some out there) or whose NICs are so new there aren't any drivers except the XP/2K ones on the manufacturer's web site, this little USB NIC is a lifesaver. And what about wireless, etc? In general, I'd say, driver support is better (or at least easier to find) on linux than on a DOS-type platform.

  63. Altiris by Anonymous Coward · · Score: 0

    We used Altiris to reimage all 10,000 machines on our network with Windows XP... not an easy job but we were able to do it all remotely and even on different types with a single image.

  64. One more for Ghost by i.r.id10t · · Score: 1

    Works great. We don't install it on the machines, instead we setup a machine, make an image using the boot disks to net dump it to the ghost server, and then either burn to cd to manually do single machines or we broadcast it to a whole lab.

    Installing stuff for Ghost? Ours runs completely off floppy - either the client or the server.

    --
    Don't blame me, I voted for Kodos
    1. Re:One more for Ghost by just+some+computer+j · · Score: 1

      The installing stuff is just the Image Manager (I can't remember the actual name) So you can take out any program or files from the image before you make your "offical" image. It was nice to have if you were rebuilding a friend's computer and didn't want them to see your My Documents folder with all your "special" files. ;-)

      --
      eh, this sucks, I am going back to bed....
    2. Re:One more for Ghost by grolschie · · Score: 1

      Which version of ghost can still run off the floppy instead of installing on Windows? Which can also copy XP NTFS file system correctly? I plan to use sysprep sometime soon.

  65. Tried DD? by SharpFang · · Score: 1

    dd if=/dev/hda of=/backup/today/hda.raw
    where /backup/ is a removable harddrive for backups - possibly one from which you booted the system to Linux to make the backup.
    Then eventually run "gzip" or "bzip2" over that. You get a perfect mirror, that recovers everything, including MBR, partition tables, deleted files for undelete and empty diskspace (which is lucklily very compressable).
    Recovery?
    dd if=/backup/thatday/hda.raw of=/dev/hda

    --
    45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
    1. Re:Tried DD? by karnal · · Score: 1

      But with an 80GB disk, that resulting file would take 80GB (or more)... is there a way to stream it directly to "bzip2" to get the compression on the fly, so to speak?

      I'd hate to try to image my drive, when it's 1/2 the size of my largest drive in my fileserver, not to mention the fact that I don't have that much space free....

      --
      Karnal
    2. Re:Tried DD? by SharpFang · · Score: 1

      dd if=/dev/hda | bzip2 >backup.raw.bz2
      (or something around that threads. YMMW-RTFManPages.)

      Note empty disk space is not necessarily zeros and thus not really good to compress. ("deleted" files get just 'unlinked' as opposed to 'wiped'). It may be a good idea to stuff the harddrive with a big zeros-filled file (dd if=/dev/zero of=/mnt/windows/zeros.nul) or use some "anti-undelete security tools" that actually zero the empty space.

      --
      45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
    3. Re:Tried DD? by SharpFang · · Score: 1

      I thought of another thing yet.
      You may write down your partition settings (so you could recreate a partition table of the same sizes, it's pretty deterministic, so if you give the same number of sectors etc on new hdd, it will be just like old), then make image-backup of your "system volume" (where all the "evil unreadable" files reside) - say, it's a 10G partition. And backup the remaining 70G using old-fashioned "CD copy" or whatever - non-native-windows stuff should be backupable by any standard means.
      Just dd if=/dev/hda1 ...

      --
      45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
  66. Another huge problem... by HungWeiLo · · Score: 1

    Back when I did IT support for a large university, we had a problem of disting Windows images to each machine (for those who are not familiar, it's to synchronize each machine with a master image upon logout). It was easy on the Mac, but the best we could do in the Windows world was to use PC-RDist, a piece of software written probably by high school kids in their parents' garage. It did not handle Microsoft software very well. Even with a fully-functional image set up, we had to manually go to each machine and install the MS software (WindowsUpdate patches, Office, etc.) BEFORE we can download the updates from the master image. Plus, any updates to the registry would not be copied because of Windows Protection. Eventually, we just gathered up enough funding (it was hard) to get disk imaging software whenever we needed to hose down a machine and start from scratch. I'm glad I don't have to work in IT anymore. :-)

    --
    There are a huge number of yeast infections in this county. Probably because we're downriver from the bread factory.
    1. Re:Another huge problem... by pegr · · Score: 1

      Centurion Technologies makes a product that removes all changes to a filesystem between boots. A friend of mine that works in a university lab environment uses it (as well as Ghost) and swears by it.

  67. try Altiris by thePredator · · Score: 0

    Try Altiris out, www.altiris.com, it just sucks that it cant do disk to disk duplications, has to be done over a network.

    -r-

  68. Microsoft MAY have a point by obsidianpreacher · · Score: 1

    As an anecdote, here at college, it's the M$ way or the highway (tongue only partially in cheek). The main way that the sysadmins monitor and successfully update/upgrade university-owned computers on campus is by a sector-by-sector disk image over the network. This results in horrendous problems because not all of the machines are identically hardware compatible -- it's caused problems with display adapters (no, the LCD monitor's native resolution in the Windows Lab in the science building is NOT 640x480x8 ...), inabilities of people to log onto machines because the machines have not been "verified as authentic" and numerous other problems. As much as I hate to say that Micro$haft may be right (there goes my karma), they do have a point that it's best for individual installs and then updates. Perhaps M$'s software is just too stupid to recognize that the $PROPRIETARY_HARDWARE_DISPLAY_ADAPTER is not available and should go with something else?

    --
    topreacher@signature.slashdot.org 1% rm -rf sig
    1. Re:Microsoft MAY have a point by SharpFang · · Score: 1

      Well, there are always two solutions to each problem:

      1) Say "Go screw yourself, it won't work and it stays that way"
      2) Fix it.

      Microsoft just went for the former. At least they documented that "feature".

      --
      45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
    2. Re:Microsoft MAY have a point by Anonymous Coward · · Score: 0

      or, reading the original posters's comments...

      3) say 'they broke it, not my fault I don't know how to fix it, so it *must* be their fault'

      4) whinge that the only solution you know doesn't work this time, all other solutions are inferior.

    3. Re:Microsoft MAY have a point by Anonymous Coward · · Score: 0

      Bullshit. This is just UNIX-weenie FUD. NT has a lot of back-up options, and the PnP support for recognizing different hardware (video cards, etc.) is FAR better than what Linux or FreeBSD does.

      In general, if you swap video cards on a Linux install, that is using X11, it goes tits up, and you have to boot to text mode to fix things. NT/XP? It just works.

    4. Re:Microsoft MAY have a point by SharpFang · · Score: 1

      Sure. You just boot to VGA16 mode instead of text mode. What a great improvement.

      So if it has so many built-in backup options, why are you posting this as AC? Just list them all because that's an "ask slashdot" article on this very topic and that's exactly what you're supposed to do.

      It happens I was using a dual boot Linux/NT system at work for over a year. You can't imagine my joy when my boss allowed me to reformat all NT partitions for Linux and run this as 24/7 Linux workstation... because it never found any decent use in NT and worked great as backup server for everything. Need WWW? 10 mins later we have WWW. Need to boot a Solaris box with broken bootsector? TFTP up and running. Need to recover crashed SCSI disk contents? The CD writer card has 6 spare SCSI IDs yet. And of course my infamous backup system which was a billant design nobody used. :) For the NT box, I found one decent use over these years: Networked Quake2.

      --
      45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
  69. Why would you back up the OS anyway? by pointbeing · · Score: 1
    True, you can't back up open files in Windows without a third-party program. I don't necessarily see this as a bad thing.

    Most large corporate IT shops have a standardized software load and no requirement to image a running PC - for the times we do need to image a machine we use Symantec's Ghost and image the machine to one of five snap servers. Works every time.

    The only time I've had Ghost balk at an image was when I tried to image a RAID5 array - and RAID support with Ghost is kinda hit and miss - it's officially unsupported.

    My unsolicited thoughts on this issue are that one should backup data, not the OS. If things are screwed up enough to require a wipe and restore you probably don't want to restore the OS anyway :)

    I don't back up the OS - I keep everything I need in my "My Documents" folder - and I have a batch that runs every night that copies my "My Documents" folder to my wife's computer and vice versa.

    --
    we see things not as as they are, but as we are.
    -- anais nin
    1. Re:Why would you back up the OS anyway? by bahamat · · Score: 1

      You've obviously never worked in corp IT.

      Most corp IT shops can't afford a week of downtime if the system fails so the admin can reinstall and configure all of the software, users, directory, files, permissions, etc, etc...

    2. Re:Why would you back up the OS anyway? by pointbeing · · Score: 1

      I've worked in corp IT for many years.

      --
      we see things not as as they are, but as we are.
      -- anais nin
    3. Re:Why would you back up the OS anyway? by Baldilocks · · Score: 1

      Not to mention that reinstallation sucks as a disaster recovery plan. It's not very easy to restore a server in 48 hours if you start from scratch.

    4. Re:Why would you back up the OS anyway? by Anonymous Coward · · Score: 0

      We were under that same assumption with out Linux servers until we had to rebuild one from scratch. It took way longer than we thought. (Theory vs. Practice). We ended up buying Storix the next day. Now I can get a system back up in about two hours. Wait until you have to do this some time and you will regret not having some sort of disaster recovery software.

    5. Re:Why would you back up the OS anyway? by bahamat · · Score: 2, Informative

      Yea, that may be a problem, unless one was using Debian.

      Old box:
      dpkg --get-selections > selections.txt
      Copy selections.txt to new box

      New box:
      Install base system (about 30 minutes, maybe an hour)
      dpkg --set-selections dpsyco to help copy configuration files from backups, or to multiple other systems.

      Make sure you learn about the tools that are available. If you don't, and you screw up, guess who's fault it is?

    6. Re:Why would you back up the OS anyway? by pointbeing · · Score: 1
      I think I see where we're missing each other, baltimat -

      We do image servers. I was under the impression the article was talking about workstations, though - and we have a standard desktop Ghost load that contains the OS and all the office automation products 90% of the users need. If a tech took a week to restore a desktop user's data I'd fire the tech :)

      --
      we see things not as as they are, but as we are.
      -- anais nin
  70. Power Quest - Drive Image by hookedup · · Score: 1

    Here at work, we use Power Quest Drive image

    I have yet to have a problem with it, and ironically enough, i just re-imaged my workstation with it in a couple of minutes across the network before seeing this article. We can save disk images to the network, and pull them across that way, or simply put them on cd(s).

    1. Re:Power Quest - Drive Image by SWTP_OS9 · · Score: 1

      Same here. We also use it when a problem system comes in. Allows us to restore if a problem occured durning a repair job.

  71. KNOPPIX + PartImage by Anonymous Coward · · Score: 1, Informative

    Knoppix comes with PartImage, a ghost clone for linux. Here's the PartImage web page:
    http://www.partimage.org/

    Also, you can resize partitions with knoppix using qtparted:
    http://www.partimage.org/

    Download the ISO, burn, enjoy.

    You also might want to check out this link here for a related discussion:
    http://developers.slashdot.org/develo pers/02/11/02 /1752208.shtml?tid=130

  72. Disk cloning by ThePlumber2 · · Score: 0

    I haven't tried g4u, free, open source software provided under the BSD license g4u has the drawback that it writes only through FTP. There is no way to write to a network drive or a CD-R.

    You can get an add-on program for linux that will mount http and ftp sites. This is then a network drive. It's called unbelievably enough "ftpmount".

    --
    Thanks, Steve
  73. The REAL reason that they do not allow backups. by dr_db · · Score: 1

    They would prefer that you did not back up, because Windows slowly fucks itself over time with the abortion they call the registry. This way you have to do a clean install every now and then, and it cleans up whatever little problems it has.

  74. linux? by Lord_Dweomer · · Score: 1
    From the article:
    "Can you recommend a program,"

    Linux? Ba-dum-dum.....hey, stop throwing cans at me!

    --
    Buy Steampunk Clothing Online!
  75. What about Veritas Backup tools by Intelopment · · Score: 1

    Veritas has Backup Exec which provides such capabilities. It's not cheap, but quite powerful.

  76. Linux live CDs by batura · · Score: 1

    A great way I found to get around the Windows system copying problems as well as Windows "Secured" directories is just boot under a Linux Live cd and mount the harddrives.

    Running cp /dev/hda /dev/hdb seemed to work great for me. For a friend that had to access those "Protected" directories, I was able to mount the NTFS partition and create a new FAT32 partition and copy whatever files I wanted from the NTFS. It worked great, and he was able to save his 10 GB of "personal files" =)

    1. Re:Linux live CDs by shadowofdarkness · · Score: 1

      does "cp /dev/hda /dev/hdb" actually work since I have never heard of that being done. Were you thinking of "dd if=/dev/hda of=/dev/hdb"?

    2. Re:Linux live CDs by batura · · Score: 1

      It actually ended up doing an exact copy of the drive. It was pretty trippy. Managed to keep the partition table and everything.

  77. Zenworks Imaging Engine by Spleen · · Score: 1

    I work in a college environment, and we use the Zenworks Imaging Engine. It is a linux based CLI and it can natively read/write NTFS filesystems. It supports both Unicast and Multicast. I even wrote a simple bash script and put it on the boot cd to do backups in the format of machinename-date.zmg They have a windows based utility to add/remove files from the image after you've created it. The only drawback to this solution vs something like ghost, is that it does require a server running E-directory. If your Novell shop it's a great fit, if your not it might be a bit pricy to get E-Directory and Zenworks.

  78. using dd to clone over the network by djtack · · Score: 4, Informative
    dd bs=8192 if=/dev/sda of=/dev/sdb

    I'm not sure if this was a serious suggestion or not, but this is exactly how I do it! I use this method to clone linux cluster nodes, but it would work for windows as well.

    I use a boot floppy, with the grub bootloader (you could skip the floppy entirely if your hardware supports PXE booting, and you feel like messing with it). The bootloader grabs a kernel and ramdisk image from a tftp server. Then, a shell script creates a fifo, connect it to the tftp server, uses dd to copy to/from the image.

    Here's an example of the shell script to make a backup (just do the reverse to restore):
    tftp_server=192.168.0.253
    mknod img0001 p
    tftp ${tftp_server} <<-EOT &
    binary
    put img0001
    EOT
    dd if=/dev/sda1 > img0001

    This method was adapted from the clone HOWTO, which has more in-depth instructions.
    1. Re:using dd to clone over the network by yack0 · · Score: 1

      > I'm not sure if this was a serious suggestion
      > or not, but this is exactly how I do it!

      It was a serious suggestion.

      --
      -- There is no sig line, only Zuul.
    2. Re:using dd to clone over the network by rog · · Score: 4, Insightful
      Be careful transferring large amounts of data without application-layer error detection. It's possible to get undetected CRC errors, as Stone and Partridge describe

      Ssh may be a better idea than netcat.

      --
      Saving random seed...
    3. Re:using dd to clone over the network by Anonymous Coward · · Score: 0

      FYI, TFTP DOES use application layer checksums. The application is UDP based, but it uses a "stop and wait" flow control method. Basically the requestor acknowledges each datagram received.

    4. Re:using dd to clone over the network by Anonymous Coward · · Score: 0

      When I give this a try, it uploads about 32 megs of data to the tftp backup server, and then craps out. I get the error message "borken pipe". Anybody have a clue what might be going on?

      thanks

  79. All you need is good procedures. by dannycarroll · · Score: 2, Informative

    Dude, you can skip C:\pagefile.sys

    But seriously, I just finished a contract at a large bank maanging the disaster recovery for a w2k advanced server environment(over 100 servers around the world, terabytes of data). To make it more complicated it was exchange (now there is a backup anoyance).

    I never had any problems even using the internal NT backup (before they chose a solution).

    All you need is a good DR procedure.
    In short:

    1. Make backups (Full, diff and incremental to taste)
    2. Have OS install disks ready.
    3. At disaster time, install the OS and any drivers necessary to access the backup hardware.
    4. Restore over the top of the OS, wipe everything.
    5. Reboot and get coffee, done.

    It is more complicated for Active Dir DC's and GC's etc but it's not rocket science.

    Some apps require special backup programs (like e2k) or that you simply shut down services while you backup but to tell the truth, this happens in the Unix world (and mac world) as well.

    I have never seen w2k fail on a file that is critical and distinct to each instance. A new install just makes a new file (for example pagefile.sys)

    I seem to remember our turnaround was 12 hours for an e2k server with 10 databases and 350gb of mail storage. (Assuming the SAN did not have to be rebuilt, then it was more like 20 hours).

  80. mondo by sboss · · Score: 1


    Mondo is a linux/unix utility but it can backup and restore windows whatever partitions/drives. Depending on the filesystem type it might also be able to resize the partitions on restore. It makes .iso images that can be burned to disk or stored on a network filesystem. The first .iso is bootable also.

    may or maynot work for you.

    Scott

    --
    Scott
    janitor
    sdn website family
    email: scott at sboss dot net
  81. Min install on to another partition by Malc · · Score: 1

    If you want to stick to just Windows, and you don't want to use something like Ghost (which find very effective), then have a minimal NT (4/5.0/5.1/5.2) install on another partition. Boot in to it and you will have what you need. I recommend hiding the other partitions before doing a multi-boot NT system to avoid them sharing the same boot.ini/ntldr/etc - you can add the entries to boot.ini later.

    Personally I would just go with Ghost. We use it a lot (several times/day for several years now), and it's not that big a deal.

  82. Related by mrtroy · · Score: 1

    Related to this, what would one do about an older laptop without a working cdrom, with no OS on it. Wish to get win98 on it, but having issues since I cannot get my network card working. It is PCMCIA, and the boot disks/setups I have tried have not supported it, so I cant do much! It does have an a: drive which works, and the network card WILL work.

    I am thinking of resorting to opening the case, pulling the HD, and putting it in a friends lappie that has a working cdrom

    --
    [I can picture a world without war, without hate. I can picture us attacking that world, because they'd never expect it]
  83. drive image and newsid by jd142 · · Score: 1

    We use Drive Image 2000 (so I can't speak to the problems people report with the latest version) and we have never had a problem creating or restoring an image. Boot from the boot disks into dos and away you go.

    As far as sysprep is concerned, we've seen some problems with it on xp machines in that after sysprep is run, some of the settings that *were* in the default user profile are no longer there. We came to the conclusion that sysprep is junk and unnecessary if you replace it with NewSID from sysinternals.com. A much better piece of software that is less complicated and does exactly what we want, instead of what MS wants.

  84. More Anti-MS FUD by chumpieboy · · Score: 2, Insightful

    I fail to see what the linked MS KB article has to do with drive imaging for backup or transferring purposes.

    The article clearly states that MS does not support drive imaging as a *deployment* method. Nowhere does it say that disk duplication software is not allowed ever.

    Back to the question hidden at the end of the /. story. If you're looking to take all of the files on the HD (including those in use or flagged as being important to the OS) then you can use the native W2K/XP backup utility to back up to a file. No tapes are necessary. If you want to do a full restore to the same system, you can do so. If you want to restore to another system you can do so.

    There are other misleading statements in the original poster's message. He includes a link implying that Ghost is Microsoft's recommended tool for drive imaging when the KB article says nothing of the sort.

  85. Re:Become a switcher by gbjbaanb · · Score: 2, Funny

    lol. external firewire drive?? Then you only have to worry about your data-retention issues!

  86. Norton Ghost Enterprise 7.5 works great... by keefebert · · Score: 1

    for me. I am in a University lab with 130+ Dell machines with WinXP. I have used Ghost Enterprise 6, 7, 7.5, and the home edition, and the only one that works well is 7.5. I have about 10 different images for different rooms and 3 different configurations of computers. Once I got a system for ghosting in place, everything works well. I occasionally run into weird quirks with the software (identical images doing slightly different things after ghosting, etc.), but these issues are easily fixed. While 7.5 lacks some functionality I would like, I have managed to create startup scripts, .bat files, and other little tweaks to get everything to work fine. I was able to roll out 130 computers with 5 different configurations in 2 weeks (1 for making all 5 images and 1 for actually unpacking, setting up, and ghosting all the computers.)

    And don't listen to people that say to switch to Mac and use CCC and Netrestore and ASR, with either firewire or an Xserve. It is in no way easier or more intuitive than ghost, and takes 3 times as long to do 16 iMacs compared to 60 Dell computers.

  87. Hard Drive Imaging by Merlinium · · Score: 1

    Well, I might have a small bit of knowledge in this area, as I dupe like systems in various sized lots from 1's and 2's up to 50 - 80 units at a time. I have a ton of Dupe software, but if your one that does this Duplication on a frequent basis like I do, then the only solution is to get a hard drive mass duplication machine, currently I am using the ImageMasster 2000 by ICS. Other software that I have found useful and work well with W2K and WinXP, is Nortons Ghost 2002, DriveImage by powerquest.

    The key is to create a Bootable CD (I have worked hard at the start of our venture to remove all Floppy Drives - waste of resources and useless) So the only way to boot a system other then through the HD is via Network or CD, Network has its advantages, but the CD is the best way to go. I create a bootable CD (there are several different types of Dos style boot images out there, I currently use an old Win98 Basic DOS boot, and PCDos) with Ghost on it and then boot with that CD and both HD's (be careful when doing this that you have the correct source and destination drives). I also did the same thing with DriveImage software though I only use that for really persistant and tough HD's. As this software takes far longer to Dupe, but does a pretty thorough job.

    For really bad drives with images that can not be removed or repartitioned, I use a combo boot CD with AEFDisk on it (this little utility will repair or remove and partition you have set onto a HD's Disks).

    Well good luck and I hope you haev found this of some use.

    --
    If firefighters fight fire and crime fighters fight crime, what do Freedom fighters fight?
  88. vmware by NynexNinja · · Score: 2, Interesting

    use vmware and image the disk as one big .vmx file... when the stuff breaks, just copy a vmx file across the network and you're done.

  89. ZEN works 4.01 and Symantec Ghost 7.5 Corp by Anonymous Coward · · Score: 0

    ZEN works 4.01 and Symantec Ghost 7.5 Corp both work beautifully for me. We have 110 Dell Optiplex Workstations(identical hardware).

  90. Fish out of water by JSmooth · · Score: 1

    Isn't this discussion similiar to one you would NOT have when calling up Microsoft asking them how to image a *nix workstation? /. is a *NIX site not a Microsoft site (MS Bashing perhaps). I would advise the poster to go hang around some of the MS boards, of which there are plenty.

    This issue, has been discussed and resolved many times over by many different people.

    Ghost, PQ Magic, SYSPrep, etc. I have seen 1000s of corporations roll out imaged systems just fine.

  91. Novell ZenWorks Imaging by I_am_Rambi · · Score: 3, Interesting

    Working for computer services for my university, we have recently dropped Ghost for Novell ZenWorks imaging. This is a linux based imaging software, that I think is fairly simple, if you don't mind typing. example:

    For a image residing on a server that you want to bring down:
    img restorep server //server/path/to/image/file

    The only issue that I have ran acrossed is that sometimes it will give the wrong error. I've received the error that it couldn't find the server, but it was a hard drive issue. I think though this is an easy imaging software, and if you are up for fun, its seems that you can edit some of the config files to automatically image stuff, but I'm not for certain.

  92. http://www.paragon-gmbh.com/f_fm.htm by P2PDaemon · · Score: 1

    I use Paragon Hard Disk Manager. Does a few things more than just copy images but seems to work with copying XP (at least I haven't had any problems). Granted, I'm only a home user, but maybe this could work for you.

  93. Simple solution by akira69 · · Score: 1

    C:\>format C:

  94. My Pick by airjrdn · · Score: 1

    I've been using Drive Image 7 for months. I've used both DI and Ghost in the past for years. It's been my experience that DI7 is faster than Ghost, and you can backup right to a CD or DVD from within Windows. IMO it was the nex logical step. I also initially didn't care for the .NET framework requirement, but haven't noticed any ill effects after installing it, and I'm pretty anal about things like that. My vote is for DI7.

  95. "System" files. by SharpFang · · Score: 1

    Legacy from MS-DoS, "system files" get screwed up that way. Same as you can't move vmlinuz around the harddrive without running 'lilo' (or whatever) later, plain 'cp' doesn't give warranty that files copied back to harddrive land exactly in the same disk sectors...where some system tools could expect them. So rather go with 'dd' than 'cp'.

    --
    45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
  96. Ghost 2004 has a few kick a** features by ejoe_mac · · Score: 1

    While I know the pain of reinstalling, some times it just works better. For doing backups of one machine, where as I want to upgrade my drive, Ghost 2004 has a few slick features. Install it under Windows, tell it what drives you want to back up and where to (cd-r/rw & dvd-+r/rw drives supported, including disk spanning). Machine reboots, and runs it's backup. To restore, put in disk 1. It's that slick.

  97. SYSPREP by nurb432 · · Score: 1

    If you aren't educated enough in Microsoft administration ( which seems to be the case ), grab a book and read up on sysprep. Its designed to deal with this very problem with transferring images to other hardware. I belive even 'box purchasers' get this.. but it might only be enterprse level...

    Add any imaging product you want to this, and your problem is solved.

    If you have an enterprise setup ( which I doubt due the question ) check into RIS to distribute your 'image' via the wire..

    --
    ---- Booth was a patriot ----
  98. dup versus packaged install? by Anonymous Coward · · Score: 0

    If you just want back up dups to blowback the image after a cataclysmic event then any dup software will work.

    If you want to install 1000 "core loads" then you need to script the install working with a wise type installer and using the M$ install tools.

    M$ is more than willing to work with any company that has a large number of desktop machines to build/rebuild on a regular basis.

    They are two different problems. You shouldn't really be using a full dupe image to do installs anyway...use the right tool, a scriptable build tool(not that it won't work but it's not a good practice given that keys and generated hashes are becoming more prevelent in all of technology.) For backups an image dupe works fine.

    BTW, the article you linked to was about fixing the SIDS after a dupe not about how you couldn't do it. They did state that they don't provide support to OSes installed in this manner as a side note however.

  99. novell zenworks by uuesley · · Score: 1

    cant believe no one has mentioned zenworks... very flexible, you can script it, add-on images...

  100. tar xvf archive.tar by ENOENT · · Score: 1

    Works every time! At least, it does on systems that are worth using.

    --
    That's "Mr. Soulless Automaton" to you, Bub.
  101. Fully automated NT, 2K and XP OS and app install by gibber · · Score: 2, Informative

    Four years ago I worked at the the Taylor University computer science department. We had 70+ dual-booting NT/Linux machines running 80+ DOS/Win3.1/Win95/WinNT applications. To further complicate this, Ghost (ImageCast, etc.) would not work since the hardware was widely varying and we wanted several different installation profiles (including/excluding certain apps).

    We came up with a solution which allowed an individual to install and configure
    70+ machines in two hours (requiring only about 30-40 minutes of the
    individual's time). This tool, called JACAL, is still being used and was expanded to work with Win 2K and XP.

    Here is our solution:

    * A boot disk containing only a DHCP kernel-autoconfig NFS root kernel
    * an NFS server with the NT i386 image and a base unattend.txt file. This NFS server doesn't necessarily need to be a Linux box. This could be an NT box running WarNFS or something like that if someone wanted to do that.
    * a series of perl scripts which, given the machine name and hardware probe information, customize the unattend.txt file
    * a perl script which sucessively launch installation of apps after the initial NT build is complete
    * a perl script which installs diffs from Microsoft's SysDiff program (we have really augmented this process if you are rightfully having doubts about the standard SysDiff process)
    * a script which does DLL and other file conflict and version resolution
    * a SaMBa server which houses the diffs of the applications
    * a series of ScriptIt files to install apps that don't SysDiff well (MS IE 5, MS Publisher 2000, MS NT SP 5 (6? not yet baby, not yet), sense a theme. Typically these are things which perform OS upgrades (are apps supposed to do that>??))
    * Perl and ActiveState Perl run the system from the Linux and NT sides

    Features (for both OSs):

    * All applications installed and ready to run
    * Drivers installed and working (detection done with Linux)
    * Centralized log of hardware from each workstation

    Other things that we considered but never implemented:

    * Remote network PXE(bootp/dhcp) instead of current floppy/CD kickoff disk
    * Multicasting file copies

    Keep and eye out for a post by "nathane" as he is a maintainer of the current JACAL system at Taylor University.

    There is also a **woefully** out of date website at jacal.sf.net.

  102. Does DD work this way? by xNullx · · Score: 1

    I've been wondering for some time actually how dd treats partition tables. Say I have a 40gb drive and image it using:
    dd if=/dev/hda of=/root/hda.11-12-03

    If I then get a 120gb drive and go to restore that image will it create only the 40gb partitions and leave the rest of the space unused/unpartitioned? I've never had enough hardware laying around to find out.

    1. Re:Does DD work this way? by Cowclops · · Score: 1

      Yup. I had an old crappy 2GB drive running my "server." I plugged in the new 40GB drive, used dd to copy the contents of the 2GB drive over, unplugged the 2 and made the 40 master, and it booted a-ok. Then I just repartitioned the remaining ~38GB of space and used it for my /home directory.

      DD is great because it doesn't give any bullshit, just copies every bit from one drive to the other.

      On a side note, I asked if this was possible on #linuxhelp on efnet, and one person said "nope, its not possible to do that if the drives aren't precisely identical." Then they called me an asshole because I asked why they were so sure it wouldn't. Good work, retards. Give me the wrong answer, refuse to explain why they would think they're right, and then call me an asshole.

  103. Frisbee: Fast, multicast. by pschmied · · Score: 1

    Frisbee is a university project that we use to do software regression testing. We have to reimage machines all the time.

    Read the whitepaper for how it works. The long and the short of it, is that I can take a hard disk image that previously was deployed via Ghost and 5 CDs and distribute it to N machines on our LAN in about 4 to 5 minutes. Cool stuff.

    -Peter

  104. I've given up on imaging altogether by John+the+Kiwi · · Score: 1

    While I like Norton Ghost and have used the Enterprize edition many times for rollouts I have found that it's more trouble than it's worth.

    With Ghost you HAVE to have the same (or almost the same) hardware on every machine, Windows 2000 isn't too bad with it's improved PnP but NT4 is a bitch to image even with the "same" machines, just one little diffeence and you have to update and test your ghosted changes.

    I use my own three pronged approach.

    Install Windows. I have a batch file that creates a partition on the fly, copies the cabs to the hard drive and installs the OS.

    Once the machine logs in it runs a batch file (according to department) which installs every software package as an MSI file.

    Finally I use Robocopy to back up the users data directories to a remote server periodically.

    Robocopy > Ghost

    It isn't as fast as restoring an image, but it's hardware independant and it's easier to maintain and update packages.

    Right now I'm working on something similar with rsync on Linux, it's easier but harder to learn.

    John the Kiwi

  105. Win / Lin / Mac by Anonymous Coward · · Score: 0

    Windows we use ImageCast. (think Ghost over a network) to date we have never had a known good image used to re-image go sour without bad hardware being involved.

    Linux / MacOSX
    www.Radmind.org - Note this is not "backup" software perse, instead its a file maintanence solution. An image is based off a transcript + files. The transcript is downloaded to the client and a file system comparison is run to check for any file differences. Any file changes are restored by downloading that file only from the server, and any extra files not on transcript are deleted. (you can of course have non-maintained folders)

  106. Is Booting a LiveCD too Much Hassle? by TheWanderingHermit · · Score: 1

    It might be too much to do for a large number of machines, but if you're backing up to an NFS mount, is it possible to boot a live CD like Knoppix (altered for your use, of course) and copy all the files over to an NFS partition?

    I'd think it would be possible to modify Knoppix or another live CD so it would boot, backup, and exit (if possible, then, reboot the hard drive??).

    1. Re:Is Booting a LiveCD too Much Hassle? by EvilTwinSkippy · · Score: 1

      I use the Gentoo LiveCD to backup onto an external USB drive. Faster and you don't slog the network.

      --
      "Learning is not compulsory... neither is survival."
      --Dr.W.Edwards Deming
  107. Suggestions by duffbeer703 · · Score: 1

    Sysprep installation images can encapsulate all of your apps and you just reimage to restore. The Microsoft licensing/activation crap does not apply to corporate users.

    IBM has a program called ImageUltra that will let you make modular images.

    Once you build the images you need, you can rebuild workstations in 5-15 minutes without administrator intervention.

    There is no legitimate reason for backing up workstations -- they should be as "throwaway" as possible. Backing them up is doing nothing but wasting time and money.

    --
    Conformity is the jailer of freedom and enemy of growth. -JFK
  108. BootCD, what about bootsector? by phorm · · Score: 1

    I've had luck copying drives over using a bootCD and simply tarring or tar-gzipping the drive, but there's still annoyances with bootsectors, etc, etc.

    Does anyone know a good tool for making/installing a bootsector image that is windows-friendly?

    On a side-note, sometimes using images to move to upgraded hardware is a pain, especially with XP/2K/etc. You do get all your DLL's and program links, etc, but you also get a bunch of hardware drivers that don't match unless you move to pretty much an identical machine. Major hardware upgrades usually ensure that my PC gets a much-needed format+reinstall, at least for my windows drive anyhow...

    1. Re:BootCD, what about bootsector? by Stevyn · · Score: 1

      I recently had my dell laptop's hard drive crash again, so this time I got Norton Ghost to make a copy of the c drive after I spent more hours setting it back up. The image is stored on my external firewire drive which I trust more than these laptop drives. I haven't had the need to restore it yet, but I imagine that using the "fixmbr" command on the windows 2000/XP cd should do the trick. Windows 95-ME had the "fdisk /mbr" command that would fix the master boot record. That should do the trick, if the ghost software doesn't do it anyway which is should.

  109. REDUNDANCY by Anonymous Coward · · Score: 0

    If the issue is a large system that you're afraid you're going to have to duplicate on the fly there are other things to consider. Make sure to use protections such as Raid (software or hardware) and/or clustering of multiple servers.

    Even then you may need to install a machine but at least you have time to perform the task at hand.

    Next, look at backup solutions such as Legato Networker. Many of these create a recovery floppy that you simply insert and it retrieves what you need 'automatically' this assumes you have the tapes in and ready and such but the system can rebuild itself.

  110. Aww, go away. by CaptainSuperBoy · · Score: 2, Insightful

    So Microsoft has crippled file systems, their policy on imaging sounds laughable to you, none of the disk imaging software is adequate for your discriminating tastes, and HOLY CRAP you just realized that you can't XCOPY a fucking modern operating system to another computer.

    Why on earth are you sticking with a platform that you obviously despise? Your best solution seems to be, move to another platform already! Listen carefully, Linux is calling to you... You sound like the type of user who would rather use a platform he hates and constantly complain about it, instead of actually solving his own problems.

    Your second best solution would be, write your own damn imaging software. Seriously if Ghost is so deficient it should be pretty easy to write better software, right?

    The fact that Microsoft doesn't support disk imaging doesn't mean it isn't possible. Everyone does it, and by everyone I mean like 99% of fortune 500 companies. If they can all figure out how to use Ghost perhaps maybe YOU are doing something wrong? I've never had the problem you describe with Ghost, either.

    Oh and finally? You're actually completely wrong. ASR along with backup software (such as Windows Backup) can completely restore your system from media in the event of a crash.

    1. Re:Aww, go away. by flacco · · Score: 1
      and HOLY CRAP you just realized that you can't XCOPY a fucking modern operating system to another computer.

      why is it that when anyone points out one of the myriad ways that microsoft os's suck donkey-balls, someone claims this is because it's a "modern" os?

      --
      pr0n - keeping monitor glass spotless since 1981.
    2. Re:Aww, go away. by Anonymous Coward · · Score: 0

      Thank you! Finally an explanation for the name of mozilla's "modern" theme!

  111. NTBackup by hotgazpacho · · Score: 1
    I actually just researched this last night for my XP Pro desktop. NTBackup, included with XP Pro, does indeed allow one to do a full system backup while running XP. It uses Shadow Copy to copy system files. It allows you to backup to ANY media (shy of CD's) that Windows XP can write to... I backed up to my FireWire Harddrive.

    Then, in the event that your hard drive fails, you can use the Automated System Recovery to completely restore your system to the state it was in the last time you backed up... including all programs and settings. Basically, what it does is do a minimal Windows install, then boots into Windows and prompts you for your backup media, and promptly restores it. I have yet to try the restore, but this site describes the process in detail with screenshots.

    Note that this is for XP Pro... I don't know about XP Home or 2000.

    1. Re:NTBackup by Anonymous Coward · · Score: 0

      XP Home: only if you have the "full" version of Windows XP Home, see
      this comment.

    2. Re:NTBackup by Creepy · · Score: 1

      I'm actually kind of surprised by this, since the OEM version is only supposed to lack manuals and support, but since I worked tech support once upon a time for a major PC builder (I can't say whom due to NDA), I know we were required to send actual Windows diskettes or CDs if the customer asked for them and paid a media fee (you own the software, the expense is the "replacement" diskettes or CDs themselves and a shipping fee). I believe this is required by either law or Microsoft's contract.

      If I had this issue, I would call my PC manufacturer's tech support and ask them for a CD with the missing Windows pieces, or for them to identify a download site where I can get them, and if that fails, contact Microsoft and complain about not getting a full version of Windows with a new computer... and if that failed, sue Microsoft for falsely providing different versions of the software and not informing the consumer or the PC maker for not providing a full version of Windows.

  112. Can always use an unattended install.. by nich37ways · · Score: 1
    Try the unattended install system Unattended
    It runs an install from sources on an NFS share and it also allows for the setup of batch scripts to automatically install any programs you may want once Windows is first installed.

    Supports booting from floppy, cd or PXE boot and away you go with a fully unattended windows + applications install.

    Takes slightly more setup than a ghost system but can be exteremely useful and more importantly free..

    --
    37 - what does it stand for really...
  113. PowerQuest Drive Image Pro by StyleChief · · Score: 1

    I have used this software for many years and have been very satisfied. I generally have an additional hard drive specifically for holding a full size image. Kind of like a manual RAID system, if you will. If the primary HD goes down, I simply unplug it, rearrange cable and the jumper on the back-up so it is the master, run an FDISK /mbr, and it boots as if nothing happened. In a short period of time I am back up and running. I have also used the backup to CD-ROM feature before, but that is fast becoming too much labor. I have also restored a compressed image to save a system with great results. In my opinion, the software is worth the money. It will recognize EXT3 file systems too.

    --
    StyleChief
    Strange women lying in ponds distributing swords is no basis for a system of government! -M. Python
  114. CASPER XP worked for me by Anonymous Coward · · Score: 0

    I recently copied a running XP PRO system from a 9GB disk to a 36GB disk. There was a minor issue with my not selecting the correct function the first time, but after clearing that up, it worked like a charm. I got a 36GB single partition with the same bootable XP system running in it.

  115. Undisker... by woodsnick · · Score: 1

    I'd personally use dd if I had a Linux box around and could, but if you'd like a simple inexpensive tool for Windows that just works try Undisker

  116. Western Digital's Data Lifeguard by Chuckaluphagus · · Score: 1

    For personal use, I recently used Western Digital's Data Lifeguard software (http://support.wdc.com/download/) to ghost a 40 GB partition onto a new, blank 80 GB drive. The software can be run either off of a boot floppy or through Windows, and it copied a Windows 2000 SP2 install perfectly, without any issues. The new drive became the primary hard drive in my system, and I've been using it for six months without any problems.

    The downside is that this isn't for large-scale ghosting; I believe you need to have both drives physically present in the machine in order to perform the operation.

    1. Re:Western Digital's Data Lifeguard by crmdgn · · Score: 1

      I've used WD's Data Lifeguard utilities release 10.0 to do the same, upgraded a from 10G drive containing 2 partitions, both NTFS, one the W2K boot partition to a larger 40G drive without a hitch. Now that the 40G is failing me I tried the same thing, going to a 120G WD drive using Data Lifeguard release 10.2 and it's no go, something about not supporting NTFS. I dug around and found the older 10.0 release disk and I was able to get the boot partition copied. I booted W2k, did a chkdisk (scandisk?) and I'm back up and running. (Now all I have to do is cross my fingers that the old drive will come back up one more time so I can get the partition I failed to copy the first time).

      Anyway, there may be newer Data Lifeguard software on Western Digital's web site that will again allow copying NTFS partitions but at least one copy I had refused to do so, forcing me to go back to an older release.

    2. Re:Western Digital's Data Lifeguard by 3dvideo · · Score: 0

      Problem I have is my nt2000 server is on drive J. After I put the new drive in the system no go. I think it's because the drive leters got changed... Wish I could get this fixed... d

      --
      stereoscopic multimedia pioneer view3d.tv
    3. Re:Western Digital's Data Lifeguard by Anonymous Coward · · Score: 0

      Partition magic helps me from mucking up my drive letters too much. although once in a while they cant be seen from explore (the icon, typing in the location bar gets around this no problem, programs and everything else still see the drive no problem)

  117. Acronis PartitionExpert works on WinXP Home NTFS by openmtl · · Score: 1

    I've used Acronis PartitionExpert to copy partitions from disk to disk. The Trueimage does this role but PartitionExpert seemed more flexible for what I wanted as I did upgrade by physically installed the disk and then copied over and automatically resized my partitions 1 by 1 over a period of time (week or so). The software created a bootable CDROM for you to get around the silly windows file locking. Very neat. IMPORTANT SAFETY NOTE: remember to edit the old c:\boot.ini to add in the new physical location if you've changed the count of the partitions i.e. primary verses logical for partition 1,2,3, etc. It its identical then OK, but sometimes you may wnat to stick in a spare partition to keep aside for alternate OS (especially on some great big 120 Gig drive which even most peoples MP3 collection would have trouble filling). You can edit this file in Notepad.exe before you copy the partition else it won't boot correctly on the new disk (error message like can't find C:\windows\system32 etc etc).

    --

  118. um... use dd :) by RevAaron · · Score: 1

    I've used Linux's dd before and it's worked. Athough I wasn't creating backups so much as doing HD dupes, the OS was Windows and the drives were identical. I booted into Linux on a floppy that had little on there except dd.

    One caveat- the drive copying was SLOW AS HELL. I have no idea why... We're talking about 8 hours to dupe a 4 GB HD with

    dd if=/dev/hda of=/dev/hdb ... anyone know why that would happen?

    --

    Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    1. Re:um... use dd :) by shadowofdarkness · · Score: 1

      You probably forgot to turn DMA on or the hd's were slow or both

    2. Re:um... use dd :) by smcavoy · · Score: 1

      You missed the part about MS KB articles 314828 (XP) and 162001 (2000).

      When you duplicate it via DD or simliar systems, all the duplicated systems have identical machine SID's.
      Which is a very bad thing.
      Micrsoft doesn't offer any solution for fixing this, I think you could regedit the Keys, but I have no idea what the ramifications of that would be.

      as for the speed thing, make sure dma is on (hdparm -d1 /dev/hda && hdparm -d1 /dev/hdb)

    3. Re:um... use dd :) by michael+noah · · Score: 1

      They have a tool specifically for this problem, mentioned earlier: sysprep

  119. Altiris works for me by Maskull · · Score: 1
    Around here we use Altiris's Deployment Solution. Although this isn't really intended for one-off machine upgrades, its great for managing a bunch of physically identical boxes. You can image a single machine (set up with the OS and applications that you want everyone to have), create a bunch of profiles for new machines, and then all you have to do to set up a new machine is network boot it and select the profile you want.

    You can also build packages, essentially by doing an OS-wide diff to build a "patch". You can use these to deploy individual applications, configuration setttings, or whatever. So, for example, around here I have an image containing Windows XP and Office, and then I have packages for the optional stuff. Packages are usually deployed remotely, from the server, but they're just normal EXEs, so you can run them manually.

    Although I haven't tried it yet, you could migrate a user's settings by making a package from the differences between his/her current machine, and the original image.

    You can also do fun things like schedule deployments (complete with Wake on LAN) remote-control computers, or just spy on people.

    1. Re:Altiris works for me by guitarded · · Score: 1

      Altiris is absolutely fabulous, does everything i need it to do and more. You can image a whole lab, from creating the image to imaging all the machines without leaving your desk, in a very quick and efficient manner. you could even put it on a schedule to reimage all machines at midnight if you wanted. It can even be conditional! Love the software. The RIP(rapid install package) software is amazing. If i want to make a registry change on all my machines, regardless of which windows version all i have to do is create an exe with alriris' software and "blast" it out to all the machines.
      and thats only the beginning!

    2. Re:Altiris works for me by Graymalkn · · Score: 1

      My company is trying out Altiris right now and we haven't been very impressed. The software for setting up an entirely new image works great but the Personality Transfer (or whatever they call it) for migrating a user from one machine to another takes *forever* - on the order of six hours for about 1GB of user data, and this is with both machines plugged into the same hub.

      --

      *******
      "What good is science if no one gets hurt?!" - Professor Chromedome

    3. Re:Altiris works for me by guitarded · · Score: 1

      altiris pc transplant was never intended to xfer that much user data i dont think. It was a program intended to transfer a users customization settings. instead of using pc transplant why not make a rip of the users data or even just back it up, and not include it in the pc transplant procedure.

    4. Re:Altiris works for me by Anonymous Coward · · Score: 0

      Altiris used to be quite slow for us. But then our network admin noticed the support guys set the altiris server up wrong. Now it takes 5 mins to image 700mb over the network

  120. Re:Become a switcher by Beebos · · Score: 1

    Wish I had moderation points right now. I'd give you a "Funny"

  121. Frisbee Disk Imaging : Free Software by shashibg · · Score: 1

    http://www.emulab.net/software.php3 This is the best disk imaging solution as far as we know. We use it in emulab to reload disks very frequently. Read the Usenix paper mentioned in the above page for details.

  122. The Biggest Problem with Reimaging Software by Enonu · · Score: 1

    I've tried out numerous sytems, and they all require DOS for the actual reimaging process!

    What this means is that we techs have to deal with the nastiness of CONFIG.SYS and AUTOEXEC.BAT as well as getting a proper driver stack working. Indeed, every NIC card manufacturer out there has to employ a few goons who know how to code 16-bit DOS TSRs so that Corporate America can use their cards en mass.

    Anybody out there want to make some real $$$ out there? Finish up the NTFS module for Linux, and from there enterprising souls will be able to write a decent reimaging solution that's current and maintained. Symantec, Altiris, and the rest will be put out of business overnight.

    Oh, and don't even get me started on multicast!

  123. for me too by hhnerkopfabbeisser · · Score: 2, Informative

    The strength of dd is its simplicity. It does nothing but reading and writing data. You can read data from a device and store them in a file. Then you can compress that file.

    To do it on the fly:
    dd if=/dev/hda1 bs=1048576 | gzip -c > /some/place/winxp_backup_current.raw.gz
    An 8Gig-Partition should give you a compressed backup-File of about 3 Gigs.
    This you can store on a large partition, split and store on several CD-Rs or mail it to your granny.
    Splitting is quite easy too, you can tell dd to read a certain part of the partition.

    To restore the backup, just uncompress the file, then use dd to read the file and write the data back to the partition.

    I use this for backups of my WinXP-Partition (which I use solely for gaming). It works so well I have no intentions of looking for another solution.
    Still, if you have other needs, this might not be for you.

    Pros:
    - simple
    - reliable
    - scriptable (like everything on the command line)

    Cons:
    - a few minutes downtime for the backup, I don't think there is a way to do this reliably while Windows is running
    - no flashy bits, like looking at what's inside the backup without actually extracting it

    1. Re:for me too by WNight · · Score: 2, Informative

      Well, assuming you're like me and you keep your files (including backups of the Windows machines) on Linux, you can mount the disk image in loopback mode and browse through it.

      This is hard with compressed images, but if you either temporarily uncompress them or investigate a compressed filesystem driver.

  124. Problems with the GX260's and 270's using ghost. by Anonymous Coward · · Score: 0

    The GX260's/270's use SATA and Ghost won't even start up with it unless you disable a resource. In this case I use a switch ghost.exe -fni to disable the IDE bus. Then it will load just fine. Symantec said they wouldn't give us the patch for this unless we have the ulta-super dooper support license for them. Which is rediculous provided we just bought version 7 from them.

  125. Technet Paper: by Ececheira · · Score: 1

    Using Disk-Image Copying in Microsoft Windows Deployment.

    If you are considering imaging a drive, you should seriously read that paper. If you don't, then you open up a whole bunch of security breaches as you'll end up with duplicate Security Identifiers. Joe could acess Sue's file if they both have the same SID!

  126. first psot by Anonymous Coward · · Score: 0

    howdy hoes

  127. Tape Backup 'disaster recovery' by JoeCommodore · · Score: 1

    I have used an HP parallel port backup unit with "disaster recovery" (HP Colorado 14GB drive) to move an installation from one machine to another and to install on a set of new PCs. Most of those portable backup hardware solutions offer a "disaster recovery" method in ther software to get you up and running again as easily as possible.

    --
    "Enjoy what you're doing! If it becomes drudgery, you're doing it wrong!" - Jim Butterfield
  128. 1 that always works for me by piznut · · Score: 1

    http://www.fssdev.com/

    CasperXP. I've used it several times and never had a problem. The typcial scenario is when I or a friend want to upgrade to a larger hard drive without having to reinstall everything. Attach the hard drive, copy existing hard drive to new hard drive, boot from new hard drive. It even runs on top of windows without having to boot into a special utility.

  129. Bare Metal Restore by bolix · · Score: 1

    The restore OS option is a last resort and done with a pretty non-functional machine.

    The larger backup vendors Veritas BackupExec/NetBackup, Legato Networker and IBM Tivoli all offer the capability to generate system restore disks (cd/dvd) to facilitate a complete system + user data restore from a blank drive. Of course, you have to pay mucho dinero for the functionality.

    Dantz are fast playing catchup (e.g. see the Multi-session capabilities introduced in Retrospect 6.5) and promise the capability soon.

  130. Norton Ghost experience by Anonymous Coward · · Score: 0

    I used Norton Ghost 2001 & 2002.

    Both required that I make a boot floppy (not CD) and boot into their DOS program.

    The program usually worked fine once you get the hang of their cyrtic and misleading error messages. Especially during restore from CD. For example, the error message "Can't read file XX" realy means "Insert next CD."

    Also their CD-R support sucks. It usually dies on making CD 6 of 7, and you have to restart from step 1, not from CD 6 on.

    I found the best thing to do was (and you need 2 partitions or disks to do this), set Shost to write in 620MB chucks, and then have it write the 1st partition to files on the 2nd parition. Then, reboot, to Windows and write those 7 620MB files to CD using Nero.

    The direct disk-to-disk and partition-to-partition workd well enough with Ghost. Of course, you could just use PartitionMagic to do that and not have to boot using a floppy.

    Other thoughts ... I used to make a partition image once I had done a fresh install of the system. That way when my mahcine needed a rebuild in the future (because back in the Win98 days, Windows needed a complete rebuild about every 9 months) I could just insert 7 CDs as opposed to all of the various CDs for the programs. I'd then just have to run any patching software. Also, keeping all data files on a 2nd HD helped.

  131. VMWARE by FraggleMI · · Score: 1

    Why not use vmware. Especially with their new Virtual Center. Quick and easy way to backup your systems, and create system templates.

    --
    huh?
  132. ImageCast by Nidhogg · · Score: 1

    Our guys use Phoenix ImageCast (formerly StorageSoft) and they don't seem to have any problems with it.

    Or at least if they do they don't report it to me.

    1. Re:ImageCast by nurbman · · Score: 1
      We use it too. Works great.

      I've even tested it on servers to see if it works with hardware raid arrays. (It does)

      The only problem is that they aren't going to have any new versions after IC3 4.61. I called to get support and that's what they said. It looks like and end of life product or that they will shift focus to the manufacturing sector. Too bad because it's great. They have a wizard for Sysprep called Win2kprep that works great for migrating images from one motherboard chipset to another. (although I haven't tried single to dual processor yet)

      On the server you could use it for disaster recovery because I don't trust the backup programs that claim bare metal restores from an image made when Windows is running.

      The only trick is getting the boot floppy working with new network drivers but it's usually just a matter of finding the right version of the driver.

    2. Re:ImageCast by Anonymous Coward · · Score: 0

      Works great for us as well, 3000+ machines in a public school district. We send our images back to a centralized server and image out from there!

  133. Paragon Drive Backup by Anonymous Coward · · Score: 0

    Works for me. To upgrade my laptop HD, I bought a USB hard drive holder, and did image+resize onto the new disk. Swap disks, power on, and it worked. $40 or so.

  134. Remember to strip the SIDs first! by cscx · · Score: 5, Informative

    You need to strip the security identifiers from NTFS before making an image... I suspect this is what the (obviously ignorant) author of the article didn't do and instead chose to write up this little FUD escapade. Microsoft has a little tool called "sysprep" that does just this.

    From the article: Microsoft Windows 2000 and Windows XP have crippled file systems

    Bullshit! That one statement shows that the article writer has a serious case of rectal-cranial inversion... For the uninformed, here is MS's definition of SIDs: "A security identifier (SID) is a unique value of variable length that is used to identify a security principal or security group in Microsoft(R) Windows(R) 2000 and Microsoft(R) Windows NT(R)." They are almost like *nix UIDs/GIDs, but a little bit more complex... NTFS is more complex in general. They actually contain information specific to the machine/domain/etc in the permission. To be more clear, an NT machine on a domain is treated as a leaf node in a tree... and each file in the filesystem of that leaf node can be assigned specific permissions relating to any user on any machine in that tree (domain). This allows very complex definition of file/registry/system permissions! Unix works in a similar way, but lacks those extra capabilities. What you need to do is strip the machine-specific parts of the SIDs out before you image the machine! (Here's a thought question for ya... ever tar a set of files on one unix machine, move them to another, untar and notice that the UIDs/GIDs are, as Strong Bad would say, "weirded out?")

    Obviously the article writer is an amateur and knows nothing about how Windows or NTFS work... which makes me suspect he is not qualified to do his job. Assuming you can't image Windows machines based on the premise that Windows and NTFS are "fundamentally broken" is the most ludicrous thing I've ever heard. My university must have > 10,000 shiny brand new Dell computers, all running an identical version of Windows XP... and someone means to tell me they didn't image them, instead installing XP from scratch on each one? Please!

    dd is great for quick-and-dirty imaging, but I'd be wary writing that image to a disk of a different size, etc... unless you hacked the partition table to make the new disk "think" it's smaller than the image, if the new disk is indeed bigger.

    1. Re:Remember to strip the SIDs first! by larien · · Score: 1, Insightful
      The problem is nothing to do with SIDs. The problem is that there is no way to back up a live (i.e. running) Windows XP (or NT, or 2000) system on NTFS in such a way that you can restore it to a fully functional system without going through (a) installation of XP/2k/NT (b) installation of all software packages individually and then (c) going through the hassle of applying the multitude of security patches on Windows and every package. This probably entails about 10+reboots and a considerable period of time. NTFS locks too many files which are required by a running system (pagefile.sys, registry, etc, etc, etc).

      Backing up linux/Unix is a matter of backing up the filesystems with tar/dump/ufsdump/whatever to tape. Restoration involves booting from CD, reparitioning the disk and restoring from tape, installing a boot block and rebooting. If you're being picky, you shut down apps first and backup from single user mode, but 99% of companies get by fine with live backups (other than Oracle and DBs etc).

      As far as I'm aware, the only way you can possibly back up a live NT system fully is to run disk mirroring and break off one mirror and back up that using some drive imaging. Restoration involves a complete restore of the entire filesystem, however.

    2. Re:Remember to strip the SIDs first! by cscx · · Score: 1

      Ahh, I may have misunderstood the original intent... he did seem dead-on about imaging software, not backup software, which is why I thought otherwise.

    3. Re:Remember to strip the SIDs first! by stinkwinkerton · · Score: 1

      I agree with you.
      Make note: The author makes note that this is to backup the operating system. While it costs money, there is this application out there called "Backup Exec" -- this IS a solution, and a good one, for corporations. And yes, you can restore to a different computer if the original is dead.
      Use tape backups in a corporation. Making a copy of the operating system by copying disk to disk? A real corporation couldn't afford the downtime of the production system while the files aren't accessed so you can do the copy!
      And NO I don't work for Backup Exec, but JEEZ who hasn't heard of tape backups-- they aren't the only vendor out there.
      If you want to do a large rollout of systems that are identical (or near so) use Ghost or a hardware disk copying solution and sysprep. I am sure that is exactly (or some form thereof) what Dell, HP, Compaq, Gateway, etc use. We just did it on a rollout of 350 systems to Win2k.

      --
      "Look! There! Evil, pure and simple from the Eighth Dimension!" --Buckaroo Banzai
    4. Re:Remember to strip the SIDs first! by raodin · · Score: 1

      The first thing I thought when I read this article was "This guy doesn't know what he's talking about"

      I know for a fact that MS uses imaging software in house, PowerDrive, if I rememeber correctly. My laptop came with a self booting Ghost image installer cd, and its running XP Pro. Its obviously not hard, or impossible, or even slightly difficult.

      Anyway.. why would you even TRY to do a file by file backup to some other location? That seems to be what he was having trouble with, but I think the first thing anyone would do when backing up a whole drive or partition is break out the imaging software.

    5. Re:Remember to strip the SIDs first! by uberhund2 · · Score: 1

      The "crippled file systems" comment wasn't about SIDs, it was about not being able to copy certain system files *while Windows is running*. Of course if you boot off a floppy (for dd, ghost, etc.), the operating system isn't using those files.

    6. Re:Remember to strip the SIDs first! by TheRealSlimShady · · Score: 2, Informative
      The problem is nothing to do with SIDs. The problem is that there is no way to back up a live (i.e. running) Windows XP (or NT, or 2000) system on NTFS in such a way that you can restore it to a fully functional system without going through (a) installation of XP/2k/NT (b) installation of all software packages individually and then (c) going through the hassle of applying the multitude of security patches on Windows and every package. This probably entails about 10+reboots and a considerable period of time. NTFS locks too many files which are required by a running system(pagefile.sys, registry, etc, etc, etc)

      Nonsense. Backup using Windows backup to whatever media you need. Now for DR. Install Windows whatever on the machine (nothing else), insert the tape and restore the filesystem and the system state. Reboot. Voila - full restore.

      You have to jump through a few more hoops to restore an AD/Exchange/SQL server, but that's it.

    7. Re:Remember to strip the SIDs first! by ptudor · · Score: 1
      dd is great for quick-and-dirty imaging, but I'd be wary writing that image to a disk of a different size, etc... unless you hacked the partition table to make the new disk "think" it's smaller than the image, if the new disk is indeed bigger.
      In that situation (source disk is 5G, destination is 10G for example) I copy the raw 5G partition and then afterwards on the new machine use the NT command "diskpart" to extend the volume to occupy the entire disk; no hacks, no wasted space.
    8. Re:Remember to strip the SIDs first! by Anonymous Coward · · Score: 0

      "You need to strip the security identifiers from NTFS before making an image."

      Why?

      This isn't going to be a deploy image. It's a one-of-a-kind backup of a particular machine.

      if you need to restore the image, due to a disaster, don't you want the machine to have the same SIDs that it has before?

      you make no sense.

    9. Re:Remember to strip the SIDs first! by Enucite · · Score: 1

      I think the first thing anyone would do when backing up a whole drive or partition is break out the imaging software.

      I think he was saying he doesn't know of a way to do this on a live windows system.

      Is there software now that lets you make the image without shuting down?

    10. Re:Remember to strip the SIDs first! by ratboy666 · · Score: 1

      Slim:

      Um... you hit the problem on the head...

      To restore you

      1 - Install Windows
      2 - Insert tape and...

      Its Step 1 that shouldn't be needed.

      The idea here is a FULL backup. This restores the machine to the same point as when the backup was made. OS, applications, user data.

      No hoops. No muss. No fuss.

      Also, your instructions don't actually work. Some software must be re-installed. I've struggled with this (and I *won't* buy "ghost" or whatever -- this should be part of the OS).

      Ratboy

      --
      Just another "Cubible(sic) Joe" 2 17 3061
    11. Re:Remember to strip the SIDs first! by TheRealSlimShady · · Score: 1
      The reason you need to install windows is so you've got something to read the tape with. Unfortunately, this is necessary in a Windows environment, no matter whether you say it shouldn't be needed. It is. It's a fact of life. Doing this, you restore the entire filesystem and system state over the top of the one you just installed (which you can do, and I didn't make clear) and you get to the point where the backup was made i.e Full restore

      What applications have you needed to reinstall - I've yet to come across any?

    12. Re:Remember to strip the SIDs first! by ratboy666 · · Score: 1

      Display driver -- that was interesting. Blue screen of death until I installed OS followed by display. May not have been, but all I got was the blue screen.

      After that, I didn't trust any of the drivers to be restored; installed Windows again, and all drivers, rather than rely on restore.

      Some application defaults were not restored properly (extension bindings) -- no biggy, and this *may* have been my fault (in that they may have been wrong at backup time, I wouldn't really know).

      So, it was installation of OS, drivers, and updates (3 or 4 hours), followed by user data restore (1 hour). This is problematic because this should have take 1 hour.

      Annoyed me.
      Ratboy

      --
      Just another "Cubible(sic) Joe" 2 17 3061
    13. Re:Remember to strip the SIDs first! by bigpat · · Score: 2

      "Ahh, I may have misunderstood the original intent... he did seem dead-on about imaging software, not backup software, which is why I thought otherwise."

      So... do you still think the original poster has a "serious case of rectal-cranial inversion"?

      Or "suspect he is not qualified to do his job"?

    14. Re:Remember to strip the SIDs first! by TheRealSlimShady · · Score: 1

      Did you restore the system state? That should have restored all your settings, including drivers and extension bindings.
      You only really need to do install basic OS (no patches), then restore from the backup, overwriting the system files you're using to run the restore and overwriting the system state. That should get you to exactly where you were when the backup was run. Should take about 1 to 1.5 hours

    15. Re:Remember to strip the SIDs first! by quantem+placet · · Score: 1

      Among other things, you can not copy the SAM (Security Accounts Manager) file of a running NT/2000/XP system because it is locked by the OS. Go ahead and try, the file lives here: %systemroot%\system32\config\sam.

      I think the author was referring to this problem when he caharacterized the file system as "crippled".

    16. Re:Remember to strip the SIDs first! by Anonymous Coward · · Score: 0
      They are almost like *nix UIDs/GIDs, but a little bit more complex... NTFS is more complex in general. They actually contain information specific to the machine/domain/etc in the permission.

      Bullshit. A SID is _JUST_LIKE_ UID on UNIX. It's just a GUID (Globally Unique ID) instead of an int. Like UID, it encodes no special information. The username is linked to it, as are permissions and everything else.

    17. Re:Remember to strip the SIDs first! by adam872 · · Score: 1

      A method I favour on our Unix/Linux network is to use automated installation tools such as Jumpstart (Solaris), Roboinst (IRIX) or KickStart (Linux) to rebuild a system unattended. If we have a root disk go bad on a machine, I tell the system to install over the network, with all of the little config changes in a central set of files and scripted to be put in place. For instance, we turn off Sendmail on most of our machines, so the script handles it. Other systems need particular kernel tweaks for running Oracle etc. The script also handles that. I can get a machine back online from a complete disk failure in about 30 minutes. Of course, if the system is *really* important, we mirror the O/S disks anyway, so there's little or no downtime.

      On our desktop PC's we use a variation of this, but with a standard reload CD (using Ghost, I think), which has all the SP's etc etc needed to get a machine up and running quickly. The systems are partitioned into C: and D:, with all user data on D: (or network drives), so it will either be untouched or restorable from our backup system (depending on the severity of the failure). This has worked pretty well with our 50,000+ PC's so far.

    18. Re:Remember to strip the SIDs first! by Anonymous Coward · · Score: 0

      Unfortunately that is not true, at least not with ArcServe 2000. You must install the OS to the exact patch and SP level as the backup (including installed system options such as IIS, FTP, etc). Otherwise your restore will fail in very wierd ways.

      BC

    19. Re:Remember to strip the SIDs first! by scdeimos · · Score: 1

      "Obviously the article writer is an amateur and knows nothing about how Windows or NTFS work... which makes me suspect he is not qualified to do his job."

      Just because someone asks a question doesn't automatically make them an amateur or unqualified. Would you rather have someone screw-over a server farm because they were too afraid to ask a question?

      In the context of Backup as opposed to Duplication, I think the author's reference to a crippled filesystem is alluding to the fact that the Windows keeps a number of files locked open with exclusive access. As a result these files can't be opened by a backup program for archiving. This isn't really a filesystem problem though, it's a process semantics problem.

      In the case of Windows 2000/XP/2003 platforms the list of files locked open with exclusive access starts only with the pagefile(s) and the System/Logged-on-User Registry hives. A number of programs and services like Miscrosoft SQL Server do the same thing as well (database .dat and .log files in this case).

      To get around this, you either spend megabucks on things like "Agents" for Cheyenne ARCserve or you do offline backups with disk imaging software.

      For system duplication (using identical hardware) as opposed to backups, we setup a "master system" which is not a doman member and image it with Ghost Enterprise. After duplicating to the target systems we then use SIDchanger to change the target's SID, rename it and join a domain. Of course, we're still paying megabucks to MS for licenses.

    20. Re:Remember to strip the SIDs first! by Anonymous Coward · · Score: 0

      Using dd of the drive itself duplicates the partition, which lives on the first few blocks of the drive, or the extended partitions which live further along. This wastes and requires resizing of larger drives.

    21. Re:Remember to strip the SIDs first! by Mover · · Score: 1

      1. Eliminate Step 1. If you make the target drive a slave on another W2K machine, you can restore a Ghost image or tape backup to it without installing W2k on it first. If you're using a Ghost boot disk, the host PC doesn't have to be W2K to image a drive. On Ghost: Just this morning I ghosted a failing drive from a W2k PC to its replacement drive, tested it and sent back to it's home. No problems. All installed applications functioning properly. We use ghost extensively to set up new PCs with our standard set of applications. Just run sysprep to prep the install. In XP, I set it too require the key to be entered and re-activate each setup online. I believe that you could use the same key for several or installations and it will activate OK, but I don't know for sure so I take the safe route.

  135. Altiris by sdhughes · · Score: 1

    We use Altiris Deployment server -- it clones FAT32, NTFS, and later versions have ext support. It works WONDERFULLY, and has desktop management tools included. Just the imaging portion of it is cheap -- I don't think its licensed per-client.

    http://www.altiris.com

  136. No trouble w Norton Ghost by Anonymous Coward · · Score: 0

    I hadn't heard of any troubles with Norton ghost. The version I have just came out a month or two ago and is supposed to be the best they've done. It's also possible that they are using the standard version in a setting where the enterprise version would be better. From all the reviews I've seen using the standard version as a backup tool works great. Ghosting to other machines is also fine if they are the same hardware. If you need more options get the enterprise version. Hopefully I'll have no troubles.

  137. 2 Windows Partitions by ianjk · · Score: 1

    This is kinda ghetto, but you can always make 2 partitions. Set one as active, install Windows, and all the apps you need. Next, set the second partition as active and repeat... If nothing critical is stored locally and you don't make changes to the system, you always have quick backup if Windows chooses to turtle.

    1. Re:2 Windows Partitions by BestNicksRTaken · · Score: 1

      Me and a couple of friends came up with something like this idea. Basically you can have a tiny WinXP backup drive to boot to, which will provide NTFS support and drivers for whatever RAID/SCSI/CD-RW/Network/Firewire etc. equipment you have, but most importantly, a nice GUI! ;o) So when you main Windows partition goes tits up, there's no need for boot disks etc. just set the backup partition to active and restore using Ghost or whatever LIVE.

      --
      #include <sig.h>
  138. Uninstalling Ghost by Larry_Dillon · · Score: 1

    Uninstalling Ghost does not uninstall all the Ghost software.

    I always use the Ghost boot floppy -- nothing to un-install. That and newsid.exe from WinInternals.

    --
    Competition Good, Monopoly Bad.
  139. What a royal pain in the arse by scarolan · · Score: 1

    Yes, I've had this experience many times. Trying to back up the entire hard drive and it won't let you touch any of the files that are in use.

    The only other way to do it that I"m aware of is to use Norton Ghost or some other similar utility, boot into DOS, and copy the entire drive.

  140. Yup... by Greyfox · · Score: 0, Troll

    I've done that too. Actually just DD'd partitions to files, but same difference really. Too bad dd's going to be illegal under the DMCA and the new FCC regulations because it ignores the broadcast and DRM bits...

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  141. win98 or better = linux by northwind · · Score: 1

    Harddisks are cheap these days so I see to that I always have identical duplicates of disks.

    For that purpose Linux always comes through. disk duplication is not a problem. But of cause if you don't have identical drives then it is more problematic.

  142. If it's for backup and not deployment... by davegust · · Score: 1

    why not try one of the many good backup software packages. I like Tapeware by Yosemite technologies. Good windows backup software will create a bootable recovery CD-ROM that will enable you to restore without first re-installing windows.

  143. Casper XP by HappyOscar · · Score: 1

    One that I've used recently that's worked phenomenally has been Future System Solutions' Casper XP. It let me copy my active system drive (while the system was running off it) off a 30 GB drive to an 80, resizing the partiton, all without having to stop anything. I did this to move from an older drive to a newer Serial ATA drive. It works like a charm, everything behaves exactly like it did before, it's only $45, and it's pretty easy to use. Probably not as fast as Ghost, but I found the interface to be somewhat more pleasant.

    --
    "Your mouse has been moved. Windows 95 must be restarted for the change to take effect."
    1. Re:Casper XP by Anonymous Coward · · Score: 0

      I have to agree with this review! I have been copying partitions since the old days of dos, but Windows XP - what a PITA. Then I found this little software gem. The free version will still copy an XP partition (just no resize). This is a slick utility that I highly recomend for anyone who copies and XP partition once in awhile.

  144. Norton/Symantec Ghost by gabe · · Score: 1

    I don't know what issues you had, but I spent 4 months doing contract sys admin work at Sun/Netscape Alliance's (later iPlanet) training center in Mountain View and Ghost was essential to my work. We had maybe 10 classrooms in the building, with 30 or more machines in each. After the classes were completed I would reset all of the computers in the classrooms for the next class, using either Solaris JumpStart for the Sun boxes, or Ghost for the PCs. Ghost was a bit more of a pain than JumpStart since I had to stick a floppy in each PC and reboot it to get it going, and then choose the image to install, etc. whereas I could reboot all of the Sun boxes from a server and set them automatically installing via JumpStart with a single command. But still, Ghost performed flawlessly. Like most of the others who have replied to you so far, I'd say give Ghost a shot.

    --
    Gabriel Ricard
    1. Re:Norton/Symantec Ghost by Anonymous Coward · · Score: 0

      My Toshiba laptop comes with WinXP + Utilities in a 2 disk Ghost setup. I have installed from scratch several times. No issues.

  145. g4u uses dd but makes it easy by Orien · · Score: 1

    g4u (short for Ghost for Unix) just uses dd to make copies, but is in a nice bootable floppy form that makes it very easy to use. I highly recommend it.

    The submitter is right in saying that g4u only using ftp, but why is that a problem? Just keep one ftp server running for image deployment. It doesn't use anonymous ftp, you can specify the account to use. Just don't have it accessible to the internet and you are fine.

    I have been shocked at the wide range of NIC cards g4u has been able to detect and use. The latest Compaq EVOs (blech) that we have around here have a new intel nic card that gives me all kinds of problems in Linux. I have not found a distro yet that will auto-detect it on install, but g4u does just fine.

    It also lets you copy just one partition at a time.

    It boots from a floppy or a CD so there is no software to install.

    Best of all, it is FREE!

    I have never had it crash on me, and the only time I have had a deployment not work is when copying to a drive that is smaller than the image.

    The only downside that I have found is that both image creation and deployment take longer than ghost does, but for me it is well worth it.

  146. Actually you can do it with MS... by ConceptJunkie · · Score: 1

    "Microsoft supplies no method of backing up and restoring fully operational copies of Windows 2000 and Windows XP. "

    Not entirely true. I had an ex-Microsoftie show me how to do it with robocopy (from the Windows RK). I don't recall the specifics (sorry) and I think he might have had to play with some of the security settings on the file system first, but we used to maintain about 4 different Windows environments (NT, 2000, with AD, without, or something like that) that we could test with our software.

    Just reboot to a second partition, issue a robocopy command, wait a couple minutes and reboot to the original partition.

    It was fast and efficient and worked just fine. I just wish I knew how to do it now.

    --
    You are in a maze of twisty little passages, all alike.
  147. OSS Solutions by Mike+Lococo · · Score: 1

    Partimage (http://www.partimage.org/)
    Mondo (http://www.microwerks.net/~hugo/)

    Both are on the Knoppix CD. Partimage runs right off the disc. Mondo needs to create it's own disc, but it looks like this can be done from a knoppix boot.

    I use Partimage, as the Mondo support boards seem fairly hostile to users with questions about imaging windows systems. Last time I was there the devs were actually pissing on some guy who was trying to contribute patches HE HAD ALREADY WRITTEN because they were oriented toward improving NTFS support.

    Mike Lococo

  148. do yourself a favor by Anonymous Coward · · Score: 0

    get rid of Windoze and use Linux...

    the learning curve of Linux is a lot less hassle than the trouble you will have with Windoze & all its vulnerabilities and weaknesses...

  149. Ask Slashdot sucks now. by pmz · · Score: 0


    Geez, any camera--digital or analog--is perfectly good at taking images of hard drives. Are you really so dense that you couldn't figure this out?!?

  150. Ghost works best on MyCrowSucks XP by Anonymous Coward · · Score: 0

    Personally I just hate the way MyCrowSucks Windows XP mixes up the application programs, data, and operating system into a real mish-mash.

    MyCrowSucks could use a lesson in going back to some of the basics of computer science and keep the operating system separate from the applications and user data.
    Maybe it would help improve the security ?

    It would be nice if Windoze ran from a read only directory - with no user data in it, and no application data in it.

    All application data and registry info should be in the applications directory.

    Windoze basic structure makes it overly hard to deploy 1000 machines...

    Norton Ghost makes the whole ordeal almost bearable.

    It would be nice if Windows and it's most common apps could just boot and run from CD, with user data on the network or local hard drive (encrypted of course).

  151. Sysprep and Remote Install Services work for some by MightyTribble · · Score: 1

    If you have an Active Directory setup, and If you have machines that may differ in hardware but all use certain Ethernet cards, you can use SysPrep and RIS to deploy OS and Applications. It's better than Ghost in that the image is not hardware-specific - but it's harder to set up. It's also cheaper, if you already have an AD domain. :)

  152. Altiris by Mithrandur · · Score: 1

    For hard-core enterprise image management, I suggest Altiris. They make a client-server imaging solution that can also do scripted OS installs, and run arbitrary code on the managed system. This is great for a QA environment where you have a lot of the same hardware and can share images readily.

    It's probably pretty expensive though. Go with dd if you're on a budget :)

    --
    vi is my shepard, I shall not font.
  153. Mod this flamebait/off-topic post down by ObiWonKanblomi · · Score: 0

    Ok, why the heck does this post get the mod of "insightful"? It has nothing to do with the topic, nor does it answer the guy's question. He's asking for WINDOWS backup/restore, not what OS he should convert to. Totally off topic!

  154. What about ntbackup.exe? by Mastedon · · Score: 1

    Are you complaining about the ability to backup, or to clone drives?

    NTBackup utility has shipped for a long time. Does fine for backups and restores, can backup to tape device or file image, and has always worked for me.

  155. DriveImage and TrueImage by stevel · · Score: 1

    I had been using DriveImage 2002 (6.0) and liked it, except for the need to reboot to do the imaging. Acronis TrueImage solved that problem, and I bought it, but it has a fatal (to me) flaw - no ability (or at least when I bought it) to schedule backups - you had to do it manually. Also, TrueImage has very few options.

    A few weeks later, DriveImage 7 came out and I am quite happy with it. It does online, unattended backups AND has a wonderful feature for me - a "keep at most N copies" setting if you're backing up to another disk (as I am). I can also set up different schedules for different combinations of partitions.

    I have saved and restored XP systems using DriveImage, including one it burned to multiple CD-ROMs with a self-loading restore program included, and it worked just fine.

    I do wonder what will happen to DriveImage in the future, but today, it is my solution of choice for this category.

    1. Re:DriveImage and TrueImage by darrylo · · Score: 1

      Yes!

      I'll second the recommendation for DriveImage 2002 (the DOS version of which, I believe, comes with DriveImage 7.0). Anyway, the MSDOS version of DI 2002 is very/muy/sehr/totemo nice, especially if you put it onto a bootable CDROM with network drivers (so that you can backup partitions to a samba share). The advantage here is that you don't need to install anything to your hard disk, and disaster recovery becomes much simpler (you restore from the image, and do not have to bother reinstalling windows).

      (side note: it's best if you create your own bootable CDROM with network drivers. I think the DI 2002 comes with a way of doing so, but I could never get it to work. I found it easier (and better) to use Bart's network boot floppy instructions and make it into a bootable CDROM.)
    2. Re:DriveImage and TrueImage by stevel · · Score: 1

      Actually, a full version of DriveImage 2002 comes with DI7, as DI7 doesn't support older versions of Windows.

  156. Re:Fully automated NT, 2K and XP OS and app instal by gibber · · Score: 1

    I should note that the above details were accurate when the system was created. These details have changed (they are not, for example, still running MS IE 5 or NT w/ SP 5, etc.). NathanE can better expound on what the install looks like today.

  157. But does it work for NTFS? by FatSean · · Score: 1

    I sure as hell don't have FAT on my 160GB drives! I googled, but no confirmation.

    --
    Blar.
    1. Re:But does it work for NTFS? by hhnerkopfabbeisser · · Score: 1

      It sure does. It creates a byte-by-byte-Copy of the original.
      The internal structure of the partition doesn't matter, because is's restored as a whole.

    2. Re:But does it work for NTFS? by Anonymous Coward · · Score: 0
      I sure as hell don't have FAT on my 160GB drives!

      of course not - you keep the FAT for your gut, and between your ears FatSean ..

      personally I use ext3 and xfs - always worked fine for me.

  158. Sector by Sector Software by Supp0rtLinux · · Score: 1

    I too have used many "imaging" or "mirroring" softwares including Ghost, etc. Sometimes, they worked great. Many times I had issues. After having a drive fail and needing to send it to disaster recovery, I discovered quite a few softwares that do sector-by-sector copies. I played with a few and the best was http://www.dtidata.com/.

    These days, I just buy a nice large disk and set it up the way I want it... software and all. I use sector-by-sector copying software to mirror it to new drives, then let them boot up and let hardware detection run, install any needed drivers, change the hostname, and I'm ready to go. A sector-by-sector copy of a 200Gb drive takes 1.25 hours for the full drive when both are connected to a Promise UATA 166 card.

  159. HHOS... by Lodragandraoidh · · Score: 2, Funny

    I hate to echo what has already been said, but this needs to be hammered home:

    Why not give up that overpriced POS operating system - and find freedom and ease of administration in the *nix fold.

    If you are stuck using the unmentionable OS - then I feel sorry for you, and will light a candle and say a prayer for your safe passage from the dark side.

    As an aside, isn't it funny that the most easy to use and useful tool for backing up your drive images is itself a linux tool?

    --

    Lodragan Draoidh
    The more you explain it, the more I don't understand it. - Mark Twain
    1. Re:HHOS... by DeBeuk · · Score: 1

      dd is not a "linux tool" !
      It's been around since the 1970s and is one of the original unix-tools.

      --
      Reality has a notoriously liberal bias -- Stephen Colbert
    2. Re:HHOS... by davegust · · Score: 1

      Anyone who thinks dd is the easiest way to do backups is certainly wearing rose colored glasses - ease of use has come a long way since the 70s.

      It's funny how some people who espouse free and open are so often closed minded toward commercial software.

    3. Re:HHOS... by Lodragandraoidh · · Score: 1

      If I can type a command in less than 2 seconds - and then walk away from the machine while it does what I wanted, and the application is free, I don't see how any commercial software can compare to that - either on price or ease of use. Nothing beats the command line for speed and ease of use - unless you are a monkey.

      And for the other guy who wanted to point out the pedigree of 'dd' in such detail: get a life. I guess I need to preference everything with 'GNU/Linux' or '*nix' to make you happy. What I said was not untrue: dd is a linux tool. It is also a Unix(c) tool, and a GNU hurd tool, and its probably been compiled other OSs that I am not aware of atm.

      --

      Lodragan Draoidh
      The more you explain it, the more I don't understand it. - Mark Twain
    4. Re:HHOS... by davegust · · Score: 1

      Unfortunately the dd solution (or any disk imaging solution) stinks as a backup tool because:

      1) You can't selectively restore files, which is one of the most useful things to do with backups.

      2) You can't restore to a different type/size of disk or to a different file system

      3) You can't do it while you are using the partition

      4) A windows dd solution has no easy to use disaster recovery options

      5) You can't do differential backups

      6) You can't span multiple media types, or backup to tape at all

      7) It doesn't compress on the target media

      dd is not a backup tool -- it is an imaging tool. There are several good commercial backup products on the market that do all of these things. This was my point.

      Not only that, commercial imaging tools are better at their job than dd because of:

      1) Windows UUID

      2) Media spanning

      3) Compression

      4) UI Feedback

      5) Ease of Installation/Online help (vs cygwin for most windows users)

      6) For Windows users, not having to wrestle with hd0 and other unix style device notation

      So dd loses out on everything but the free argument, which is all most of your type is interested in - not paying.

    5. Re:HHOS... by Lodragandraoidh · · Score: 1

      Excuse me. I thought the discussion was about disk imaging tools - not backup tools.

      There are several uses for this:

      1. poor-man's mirror
      2. transfering a system to another machine.

      That is what the discussion was about, and dd is the best tool for that job. Its about picking the right tool that fits the job - not being satisfied with a 'one size fits all' solution that falls appart when you try to do anything out of the ordinary.

      Finally, 'your type' is about classifying everything and everyone into neat little boxes. Fortunately, everyone does not fit into your boxes. You should really see a doctor about that xenophobia. Don't fear the 'many small CLI tools' paradigm - try it out and make an effort to understand it, instead of bashing it.

      --

      Lodragan Draoidh
      The more you explain it, the more I don't understand it. - Mark Twain
    6. Re:HHOS... by davegust · · Score: 1

      I've been using Unix style tools in my profession for 15 years, but that doesn't mean I think they're easy to use -- which was your claim. They're not. They're for power users.

      Most good commercial software is designed around the layman's behaviors and knowledge, and yet still has the features and automated interfaces for power users. It enables the common man to use the computer to accomplish powerful things. Most people in the Windows world want a checkbox for "compress" not "| gzip -blah -blah -blah". They don't want to read the man page, read a FAQ, or post a message to a forum. They want a wizard to help them set up a backup profile. They don't want to learn a scripting language to automate their backups.

      The discussion was about using disk imaging tools for BACKUP -- your initial post establishes that. That's why I pointed out why dd is poorly suited for Windows backup. In addition, for your benefit, I also discussed how dd is lacking commonly needed features for Windows imaging.

  160. Image Blaster by tickticker · · Score: 1
    I used to use the Imageblaster software. I still have plenty of floppies and some images stored on various hard drives, as the product has "evolved" and been bought a few times in the past. Currently Altiris has turned it into rapideploy. While I haven't used this latest incarnation, the nicest thing about it was that it did a bit-by-bit copy (I believe) so that corrupted files meant nothing. I never had an image fail if the HDD was good. I could never say that about any other product, as I've had plenty of Ghost and other solutions fail on a bad file or file system.

    Image blaster was sweet though, and the server and the client fit on the same floppy. The only drawback was that I never set it up to use IP, just IPX, so I would flood the hell out of our network if I needed to cross the backbone.

    -- This is my best sig yet.

  161. PowerQuest Deploy Center 2.0 by Ummagumma · · Score: 1

    ..works perfectly fine for me. I've rolled out well over 50 machines using a combination of PQDI installed on a networked file server with client boot disks, and Microsofts SYSPREP utility. Never have any problems at all. It even creates (Caldera) DOS boot disks with network drivers (either supplied by Powerquest, or by .dos files provided by you), and you image right over the network.

    I use this tool every day, and would recommend it in an instant, for both 2000 and XP clients.

    --
    "The natural progress of things is for liberty to yield and government to gain ground." - Thomas Jefferson
  162. use dd but zero out the partition first! by Anonymous Coward · · Score: 0

    Before installing Windows you should first boot
    Knoppix Linux and zero out the partition by
    doing something like: dd if=/dev/zero of=/dev/hda1
    then install windows, then boot Knoppix again and use
    and nfs mount a drive from one of your Linux
    servers. Then do something like this to make
    the backup image: dd if=/dev/hda1 bs=32k | gzip -9c > /mnt/remote_nfs_server/windows_backup
    By zeroing out the partition first you will make
    the backup image much smaller. This process took
    about 2 hours on a Celeron 900 for a 8GB partition!

  163. HD Copy by Compulawyer · · Score: 1
    I've had good luck with HD Copy which I downloaded from http://www.zsoftware.de

    I have no idea if it is still available, or how because the site seems to be somewhat abandoned lately.

    --

    Laws affecting technology will always be bad until enough techies become lawyers.

  164. doing the same with dd... by gimpboy · · Score: 3, Informative

    yeah and while dd does copy the entire partition, there is nothing stopping you from pipeing the output into bzip2 to compress the disk image down a bit. you could probably pipe the output of bzip2 to split to split the image file into managable chunks.

    just some thoughts...

    --
    -- john
    1. Re:doing the same with dd... by hhnerkopfabbeisser · · Score: 1

      I prefer gzip, bzip2 is a little cpu-intensive for my taste.

    2. Re:doing the same with dd... by Snags · · Score: 1

      I've done this (using gzip), and the problem is that there are file size limitations. Even if the compressed version comes in under 2GB, the uncompressed one probably won't. Then you need to find a spare partition to get your data back.

      --
      main(O){10<putchar((O--,102-((O&4)*16| (31&60>>5*(O&3)))))&&main(2+ O);}
      LN2 is cool!
    3. Re:doing the same with dd... by AndroSyn · · Score: 1

      Just make sure your tools are all compiled with large file support and that your filesystem supports large files as well. I would have figured most everybody was using large file enabled tools by now :P

    4. Re:doing the same with dd... by netsharc · · Score: 1

      Unfortunately dd saves the whole partition, if the partition has a lot of cruft leftover from deleted files, they will also be saved by dd (dd can't see the filesystem structure and decide if the space is empty or used by a file). Doing this at work, we first did a dd if=/dev/zero of=/dev/hda , extracted the Windows image from Ghost and then did dd if=/dev/hda|gzip bla bla . The resulting file contains info about the empty space, but because (if?) they're all 00's they won't take a lot of space when compressed.

      --
      What time is it/will be over there? Check with my iPhone app!
    5. Re:doing the same with dd... by Jeremiah+Cornelius · · Score: 1
      I pipe this through bz2 AND netcat...

      to a listening port on my fat disk machine...

      --
      "Flyin' in just a sweet place,
      Never been known to fail..."
    6. Re:doing the same with dd... by Anonymous Coward · · Score: 0

      let me know when you do, along with the IP address of your fat disk machine .. i need some new credit card numbers ;P

    7. Re:doing the same with dd... by Micro$will · · Score: 2, Informative

      Another little tip if you have to use dd for a drive image: Before installing anything, boot with knoppix and fill the entire disk with zeros, then partition, format, and install. The image will compress a lot more than if it had random data still on the drive. I've done this with fairly small disks (4 - 8 GB) and it only takes about 10 -15 minutes on older hardware.

    8. Re:doing the same with dd... by GaelenBurns · · Score: 1

      So? How often are you going to be doing a restore of a file system while other processes are running to share out CPU time to? It doesn't matter if takes up a lot of CPU time, since it's the only process running that you care about.

    9. Re:doing the same with dd... by pod · · Score: 1

      As long as you pipe things in and out of gzip, there's no file size limitations, except those in your system, depending on what you do with the output (pass to split?). Anyhow, this has been my experience with gzip on Solaris (where gzip crapped out after 2GB). The solution is to use redirection; cat doesn't care about some 2GB limit, and to gzip it's just a never-ending stream of bytes.

      --
      "Hot lesbian witches! It's fucking genius!"
    10. Re:doing the same with dd... by eyegor · · Score: 1

      That works for much of the file space, but doesn't help you much for files that have created and deleted during the installation process.

      Another way to get a similar result is to install the os, then create a file filled with zeros to derandomize the unused space on each partition. Afterwards, erase the file and image the drive.

      --

      Don't anthropomorphize computers, they don't like it.
    11. Re:doing the same with dd... by webweave · · Score: 1

      Me too, on Win2000. I Boot Knoppix and put the compressed image on the network. DD works so well I also use to rotate the drives.

    12. Re:doing the same with dd... by Kent+Recal · · Score: 1

      dd if=/dev/hdax bs=10M | split -b 1999m img`date`.

      works ok for me.

    13. Re:doing the same with dd... by Kent+Recal · · Score: 1

      Oops, sorry...

      dd if=/dev/hdax bs=10M | split -b 1999m img`date +%y%m%d%H%M%S`.

      That one _really_ works now.

  165. My MS Tale of Woe by Anonymous Coward · · Score: 0

    I first had problems with MS policy back in the days of Windows 3.1 and small hard drives. I used to use Windows' own backup utilities to back up to a second hard drive. When I got a CD writer, I copied the backup sets to a CD-R, and used the hard drive for something else. It didn't even occur to me to check that I could restore from the CD-R: after all, the files were there, weren't they? Well, one day I did need to restore some files, and the MS software told me that it wouldn't do it, because the files were not on the medium on which they had been created.

    This was one of the defining moments of my computing experience. I have taken every opportunity since then to migrate away from MS software, including its crookware (= software that is deliberately designed not to do what you reasonably expect it to). I resorted to Winzip for backups, and Partition Magic for duplicating system partitions. Now I use Linux, and I am delighted that I can back up a system partition using tar, and, if necessary, restore the tarball to a fresh partition, edit /etc/fstab, and boot into the new partition by using a GRUB boot floppy. No files need to occupy the same blocks as they did in the original partition. Try doing that with Windows! If I really want to image a partition, dd does the trick.

    Goodbye, Bill, it was a nightmare living with your software, but thankfully I no longer have any use for it.

    Anyone who experiences similar grief because "MS Backup" really means "MS Copy Protection" should switch to an OS whose authors have their users' interests at heart, and don't try to prevent you doing reasonable things like backing up your machine. A company that doesn't respect its customers won't be getting any more of my hard-earned cash.

  166. The original post is more /. bunk by Anonymous Coward · · Score: 0

    I wonder if the original poster even _read_ the very MS article he links to. It is clear that one can "copy all the files" that Windows XP installs using disk mirroring software. The article points out that doing so means that the should-be-unique system identifier will also be copied. That system identifier (SID) is used in the monikers of system users for the purpose of the security system identifying them. Creating a second system with a cloned SID is a security problem. It might also interfere with networking.

    But note how helpful the MS article is!!! The list all of the registry keys that you need to change after using the disk duplication software. Although they don't support it, listing those keys is a tacit communication that they want to help. It's simply that anyone who uses this installation method is off the MS beaten path, and shouldn't expect support. That seems fine; if you're the kind of person who thinks you can uniquify SIDs after disk mirroring, you ought to be able to support yourself.

    Once again, old, old news gets slanted by slashdot and posted here as though it were journalism. Slashdot's "editors" really ought to get unbent when it comes to MS. It's funny to see how high the Slashdot team will jump to spread anti-MS FUD. It has eroded Slashdot's credibility with me completely.

    1. Re:The original post is more /. bunk by money_shot · · Score: 0

      I agree completely... everytime I read an article like this (and there are sooo many on /.), it completely undermines the message that /. eveangelizes because the /. community loses credibility.

      I would be much more impressed if /. actually mirrored the experiences most users have with linux and windows rather than a certain OS fanboy point of view.

  167. Hardware Cloning by Anonymous Coward · · Score: 0

    Use a hardware cloner such as the Omniclone from Logicube. The product that I work on doesn't even have a recognizable filesystem, but the Omniclone copies it perfectly ever time.

  168. Here's a solution by Kazymyr · · Score: 2, Interesting

    Backburner will backup anything you throw at it. It's a collection of Perl scripts, thus very small. It can backup and restore partitions or raw disks, with or without compression. It can write the backup to multiple CDs. You can even send it over the network to a NFS mounted volume. Been using it for over 3 years with no problem whatsoever.

    --
    I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
  169. Backing up live system drive, 3 reviews.... by BestNicksRTaken · · Score: 1

    Three main problems I've found when (briefly) looking at the demos of Ghost 7, DriveImage 7 and TrueImage 6:

    1. you can't backup a system disk live - i.e. you can't boot into Windows and backup your C: drive (DI7 can do this)

    2. Linux/XP support - only the very latest versions (and usually only the corporate versions) of these programs can backup ext3/NTFS partitions.

    3. Boot sector copying - I've never managed to properly restore a dual boot system (see below) as nothing seems to properly backup the MBR/LILO.

    Drive Image 7:

    DI7 can't handle any Linux partition types and I've heard that "it can't handle dual boot systems" which I can only assume means that it doesn't snapshot the MBR either.

    Most people I've talked to agree that DI5 was the last decent version, but only worked from DOS.

    Acronis TrueImage 6:

    When I tried Acronis when I was getting a bigger HD for my laptop, it backed it up, then couldn't copy it to my RAID drive as it didn't have drivers, and I never got networking to work. When I eventually managed to backup to my IDE drive, the image was then un-restorable for some reason, which I think had something to do with not saving NTLoader from the MBR.

    Symantec (Norton) Ghost 7:

    I've not tried Ghost7 much myself, but a friend managed to backup an ext3 and NTFS dual boot system, but could only get Linux to work when he restored it - XP just wouldn't boot, which might also have been an MBR issue....

    --
    #include <sig.h>
    1. Re:Backing up live system drive, 3 reviews.... by jkirby · · Score: 1

      Check out my software:

      http://fileforum.betanews.com/detail.php3?fid=10 43 424705

      --
      Jamey Kirby
  170. Veritas OpForce by Anonymous Coward · · Score: 1, Informative
    For a complete provisioning and management solution, as well as basic OS snapping and provisioning, Veritas OpForce is well worth a look.

    One really nice feature is incremental snapshots of an OS.

    And for the Linux geeks amongst us, the x86 software that does the management and image snapping/provisioning, is a very stripped down version of Linux. it's a tiny bit more clever than dd commands ;-)

  171. Cat the harddrive to udp-cast by Anonymous Coward · · Score: 0

    udp-cast is a pretty amazing tool for harddrive imaging over a network.

    "cat /dev/hda | udp-sender" on machine with the harddrive you want to copy.

    "udp-reciever > /dev/hda" on the machine you want to write the image to.

    Combine this with the knoppix terminal server, and you can automate harddrive imaging on multiple machines with a cron job every night if you want to. All you need to do is turn off the computers you want to image. Better buy a gigabit ethernet switch that supports multicast though.

  172. Used them all by fudgefactor7 · · Score: 1

    I've used every one of the methods described by the author, from Ghost, or Drive Image (aka: DeployCenter), g4u, and some other wacked out ideas like getting a tftp session and dd to do the work for you.

    Believe me when I say that they all suck, just in different ways. The only winning combination I have found is the one that you like the best and gives the least headaches on the supported hardware.

    That's a cop out, you say? No, it's not. Look, Ghost is great--still not too Ext2 friendly (can funk some things up pretty badly); Drive Image/DeployCenter is just as good as Ghost--and has its own little issues; dd with netcat works but the source and the destination needed to be the same size or it would barf (apparently) randomly...it might work, then it might not...not a good thing there.

    In a Windows environment, you can't beat Ghost. For GNU or Linux, dd is pretty nice. It's also free.

    The best possible solution is for some OSS person to write an all-in-one solution that boots from a floppy or CD and works for Linux/Unix and Windows, but that just ain't happening.

    You could try this, but I can't vouch for it.

    Like I said, none of the solutions really work well. After all that is said and done, the best thing is to just start from scratch, taking lots of time, but at least you know you won't get bit in the ass by some random failure of a third party application that has control of your drive.

  173. Microsoft reps disagree. by Futurepower(R) · · Score: 1

    Not so. Microsoft technical support reps have several times said that Microsoft provides no way to make functional backups of Windows 2000 and Windows XP.

    1. Re:Microsoft reps disagree. by Anonymous Coward · · Score: 0

      No shit.

      Do you see code to make a functional backup of a Linux-based desktop anywhere in the kernel? No. Because that is not an operating system's job. It is the job of a utility separate from the operating system. In the case of Linux, this may be "dd" as many have mentioned, or various other things. In Windows, this would be one of the myriad disk imaging programs that you speak of which are immensely useful, though NOT distributed by Microsoft.

      The only thing you need to worry about with Windows is running a MICROSOFT SUPPORTED PROGRAM called sysprep that many others have mentioned in these comments.

      I don't see where the conspiracy is?

    2. Re:Microsoft reps disagree. by TheRealSlimShady · · Score: 1
      Bullshit. What's the Windows backup utility for? Using that you can make functional backups of Windows 2000 & XP. And restore it as well.

      For disk imaging, they also provide other tools like RIS, which allows you to make a generic image and restore to multiple hardware platforms, provided they use the same HAL.

    3. Re:Microsoft reps disagree. by wangotango · · Score: 1

      Since SysPrep is not available on the web; clinking on this link http://www.microsoft.com/windows2000/downloads/too ls/sysprep/license.asp Would be of absolutely of no use......

    4. Re:Microsoft reps disagree. by Eyezen · · Score: 1

      ummm...

      here

    5. Re:Microsoft reps disagree. by Eyezen · · Score: 1

      and click I agree...

    6. Re:Microsoft reps disagree. by F_SMASH · · Score: 1

      There is a fundamental difference between a 'Backup' and a 'Drive Image'.

      You would be correct saying that the backup utility (NTBACKUP.EXE) in Win2K/XP/NT can make 'backups'. However, this util can not make a 'disk image'. To restore the 'backup' created by NTBACKUP, you must first install a copy of the OS.

      A 'drive image' utility does not require you to do anything more than install the hardware (hard disk and maybe a NIC) into the PC.

      Windows NT/2K/XP complicate 'drive imaging' because they 'key' themselves (in different ways) to the hardware when the OS is originally installed. If you do not change this 'key' when you apply an image to a new drive, the OS may not work correctly or at all. Many comercial drive image utils can handle this and seamlessly change the 'key' for you.

      I would say for a home/small business user, a 'backup' from NTBACKUP is probably sufficient.

      However, if you are doing a large rollout of PC hardware, you will want some kind of 'drive image' utility (GHOST is about the only good one, IMHO)

    7. Re:Microsoft reps disagree. by TheRealSlimShady · · Score: 1

      You are correct, see many of my other posts in this thread where I detail the imaging method. If you're doing a large rollout, you can these days do it all entirely without third party software - only MS. Also, provided you use a volume license key version of Windows, you don't have to worry about hardware changes upsetting activation. You can also restore images to hardware that has the same HAL, even if the other hardware has changed, provided you included a location for the drivers in the image. So the "keying" you refer to above isn't necessarily a problem.

  174. Is dd simple enough ? by steveoc · · Score: 1

    Assuming that you have a CDrom in the machine, and an identical type of hard disk to create your backup ..

    Step 1) boot a live linux CD (knoppix, SoL-diag, etc)
    Step 2) # dd if=/dev/hda of=/dev/hdc (Where IDE-0 master is your windows-infected disk, and IDE-1 master is your DMCA violating 'backup for personal, educational use only' disk)

    All they need to do now is to embed the CPU serial number, and/or the hard disk serial number into the kernel, and none of these techniques will work in future.

  175. backup software. by Anonymous Coward · · Score: 0

    okay, I have to find this thread funny. Its inconceivable that there's no good, simple, fast solution for backup or cloning of a PC users hard drive. As an Apple Specialist, my shop deals in all in and out of warranty repairs on the Mac side. We back up and clone hard drive's on a daily basis, as small as a couple hundred megs, as large as multiple dozens of gigs. Ironically, its' all done with a freeware application. Carbon Copy Cloner copies all the resources, invisible files, and data on the source disk, to the target disk, while leaving everything in exactly the same place, and in working order. Its an amazingly simple solution that keeps the UNIX environment of the Mac working and happy, on a new drive. It also works for backing up and cloning pre-OSX drives as well.

    As users of the predominant platform in the computer industry, I dont know why microsoft hasnt been forced into providing a solution.

    phiber811
    www.modyourmac.com

  176. I regularly restore my Windows system by Skapare · · Score: 1

    I regularly restore my Windows system. No, this isn't because something just broke; I do it as a preventative measure.

    First, I installed my Windows system very carefully, ensuring I have all the applications I need. Everything is installed on the C: drive which is made reasonably small so it is easy to backup and restore. It's about 2 GB. Then I change "My Documents" and other things over to the D: drive, and make sure other configurations are tweaked as needed. Then I shutdown Windows cleanly and boot up a Linux rescue CD (one I created myself so it has all the tools I like on it). I then read the partition image of C:, compress it, and transfer that over to a Linux machine. Then I reboot back into Windows and make sure I was working with a good shutdown. Then I do a restore test by powering off (not shutting down) Windows, then booting the Linux rescue CD again. This time I pull the file back in from the Linux machine, uncompress it, and write it to disk (using a program I wrote that works similar to "dd" but shows a running status as it goes). Then I boot back to Windows and verify that the archived image is in fact a good one.

    Every few times I use Windows, I simply restore that same image again. I've found I get messages that bug me about daylight savings changes. I dealt with that by restoring the image, changing daylight savings, and saving a new image so I have two, one for each daylight savings time setting.

    The D: drive is NOT regularly restored, but it is regularly backed up file by file with FTP. If you run Samba on your Linux/BSD machines, you could use that instead to make file by file backups. Restoring data involves restoring the empty D: image (very small compressed), then reloading all the files (no weird system files on D:). I'd sure love to have an rsync client or server that runs on Windows, though.

    --
    now we need to go OSS in diesel cars
    1. Re:I regularly restore my Windows system by wayne606 · · Score: 1

      Got a lot of free time on your hands, huh?

      Seriously, this is way too much effort for an operating system that's "for the masses". Why can't they provide a good answer to the question "how do I protect myself against my disk getting fried and spending a week getting back up to speed?"

    2. Re:I regularly restore my Windows system by Skapare · · Score: 1

      My method doesn't take that long to do. The initial install takes some time, but the rest of the effort saves having to do that again, and saves having to deal with the little things that periodically break. Of course the big disadvantage of my scheme is the need to have a Linux machine on the LAN to store the backup. Alternatively (and I've done this, too), the backup image can be on the same machine. A smart enough program can buffer many megabytes reading, then write it all, to minimize head thrashing between partitions. Of course if the whole drive dies, that's no good. A 2nd drive might be a nice solution. Make it the same size or larger, and it can be an image of the first one. Boot the CD that includes the imaging software to make backups and do restores.

      If the disk dies, any restoration has to come from some other medium. This can be done with so many choices, but Linux based ones do work (and Linux only needs to run during the usage; it does not need to be installed on the machine). The question should be, what is your other media? Another partition (bad if the whole disk dies)? Another disk (what if the machine is stolen)? Removeable disk (e.g. USB/FireWire drives)? Tape (slow)? Network?

      The main point of my comment, though, is that Linux based imaging does work, and I use it regularly to get the benefits of a Windows configuration that stays clean.

      --
      now we need to go OSS in diesel cars
  177. Dantz Retrospect for Windows by greed · · Score: 2, Interesting
    While this isn't drive imaging software per se, it does handle the restore a system to an operating state feature. Dantz Retrospect has an add-on which they say can make a bootable disaster-recovery CD which will regenerate any client of the Retrospect backup server. AFTER the client has failed.

    I've never used that feature, as my primary use of Retrospect is on Macintosh; I have a Windows client, but have not had to try to regenerate it following a total system loss. (And I don't have the add-on to do it anyway.)

    But the rest of Retrospect is common across Windows and Mac. (Disaster recovery on Mac seems to be a lot easier.) The important part for this discussion, in addition to the 'disaster recovery CD' add-on, is the way it does a so-called 'snapshot' when it takes an incremental backup. This lets you get both the speed of doing incremental backups, plus the ability to restore a system to precisely the contents it had at that time. (So basically, it can handle deletes too, so it doesn't need to restore files from the full backup which were deleted when a later backup took place.)

    I bought Retrospect for Macintosh after Norton 'Crash Gaurd Causes Crashes' Utilities removed their backup/restore software in a newer version. (Fortunately, the id10ts at Symantec offered a satisfaction guarantee on software. The store didn't believe it, they had to place a toll call to Symantec to find out they weren't kidding.)

    I've been using Retrospect for Macintosh since System 8 came out, through OS X, and now with a Windows 98 client. It's my very favourite backup program, and what's more, the restores work.

    Just need to get the upgrade to 5.1 for Mac so I don't need a separate backup system for my Linux box.

  178. One mans ease of use is anothers security flaw by azaris · · Score: 2, Insightful

    The author of the "story" is wining and bitching about how hard it is to make a functional copy of a Windows installation and how supposedly this is some kind of "license enforcement" issue when anyone with half-a-brain can read the KB article themselves that the reason it's not supported and will cause problems is that you're violating the internal security policy of your own network by having duplicate machine SID's on your network. To make it work you have to change the SID, but since MS obviously feel it's not reliable enough they're recommending it as a workaround (since, hey, if anyone could just change the SID no questions asked we'd get another Slashdot article about how Windows is fatally flawed). Had they simply put in a safety that stops the image from working completely, I'm sure the crap would have flown even further.

    Not to mention that there are perfectly fine methods for doing large-scale Windows roll-outs for those who need them, which don't involve 3rd party software kluges like Ghost.

  179. Re:Fully automated NT, 2K and XP OS and app instal by gibber · · Score: 2, Informative
    Silly me, I forgot that Joel Martin and I (Aaron Brooks) presented a white paper on this at 2000 USENIX LISA-NT conference. Here are the links:

    I'm terribly sorry for forgetting this. It's been three years since the conference and two years since I've touched JACAL at all (or worked at the university).

  180. Yep, worked for me too by silence535 · · Score: 1

    Booted Knoppix and used partimage to make a bzip2 image of my NTFS Win2k installation.

    And yes, the restore worked fine. What good would a backup be, if you never knew whether a restore would actually work?

    -j

    --
    Dyslectics of the world, untie!
  181. Software Imaging Sucks by twos · · Score: 1

    We use an OmniClone HDD Duplicator from Logicube. Never fails. Just make sure you buy the NTFS option if you use Winblowz. We can burn 5 drives at once loaded with the OS and all user apps in under 7 mins. Our staff delivered 40 new PC to the end users in under one week. With software products it would take you that amount of time to get a call back from the tech support ppl as to why the copies are continually corrupt.

    --
    Phear The Phat Penguin
  182. Remote installations by Digital+Dharma · · Score: 1

    Have always worked for me. If the hardware supports it, you can have a 20 gig image blasted to a client in 20 minutes, assuming you have a 100mbit network. Windows 2000 ships with remote installation server, which took care of installing Win2K on about 200 machines at my old place of work overnight. We then used group policy to publish applications like Office 2000, so that they were installed only when the user opened a word document. After repackaging a ton of in-house applications into .msi format and publishing them as well, scripting out a ton of administrative changes like adding printers and deploying software update services which patched all the workstations automatically every night at 3am, we pretty much eliminated the need for a support tech to ever visit the workstations as well as getting everyone off of local admin status. The 99.9% uptime was nice until they fired me for not doing anything, because there really wasn't anything left to do. Note to self: Break more things next time.

    --
    End of Line.
  183. Norton Ghost by AciDive · · Score: 0

    Ghost has always worked for me with Win2K. With XP it is sketchy sometimes, but you just have to make sure you turn off the recovery feature in XP before you make the image. If you are working in a corporate environment I would also suggest getting a corporate license for W2K/XP. Also if you are in a corporate environment I would suggest using M$'s sysprep utility before you make your image. Also make sure you are making your image with Ghost from a bootable floppy with Ghost on it as Ghost will not work from within Win2k/XP.

    --
    "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect." Linus Torvalds
  184. what about my Geek Superpowers... by twoslice · · Score: 1
    ( GET RID OF THOSE GODDAMN DISKETTES ALREADY!!! )

    But that would negate my geek superpowers - such as when I can recover a user's workstation from the dreaded "Operating system not found" message by the push of a single button which ejects the non-bootable floppy disk out of the drive - after which I say "you owe me a beer"

    --

    From excellent karma to terible karma with a single +5 funny post...
  185. Go back to FAT32 ! by spamhog · · Score: 1

    If you have to use crippled neoconservative malware like windows XP, why not bite the bullet and install it on FAT32?

    I for one don't like to use a proprietary filesystem I can't write to from another OS.

    With a proper data mirroring and system backup policy, who cares if the OS dies once in a while?

    In my opinion, the pluses far outweigh any disadvantages from loss of journaling.

    And there are plenty of ways of encrypting sensitive data.

    Moreover - I know, this is just wild association - as someone added NTFS to DOS, did anyone manage to do ext3 or reiserfs on XP?

    1. Re:Go back to FAT32 ! by Anonymous Coward · · Score: 0

      You are a moron.

    2. Re:Go back to FAT32 ! by spamhog · · Score: 1

      You might just be right in calling me a moron,
      but would you elaborate a bit?

      TIA

  186. Another Ghost vote by dr00g911 · · Score: 1

    Gotta say, I've used Ghost and found it to be the most reliable and versatile imaging/backup/rollout utility that I've found.

    The coolest part of it:

    If you're rolling out, say, 50 machines, you can boot off a floppy and then pull the image off the network. Ghost will handle reformatting/partitioning the disk for you. In this case, make sure you don't pre-register any of your software (duh)...

    You have to make sure that the machines that you're backing up from/to have similar (if not identical) hardware in terms of motherboard/cards/most peripherals or ghost will freak out (for ovbious, driver-related reasons). It handles copying to different sized HDs/partitions well, although it'll complain about the drive serial numbers not matching and give you a short little copyright monologue before you can continue.

    You can leave Ghost running in the background, constantly updating a mirror drive image of the machine in question (or on a schedule) -- that way it's an hour or so to reinstall if the drive crashes, etc.

    It's saved me lots of hours deploying new boxes/OSes on existing boxes.

  187. Ghost works good in my experience by Law_Spider · · Score: 1

    So far so good using then newest version of Ghost (think its 7) We are currently in the process of updating all of the computers here at work (500+) and are nearing the end of it. We are using basic Compaq/HP EVO 510 and 530 machines (2.4, 256-512 RAM, 40GB hard drive) and so far the only problems we have run into are the newer 530's have a Broadcom gigabit nic built in that seems to be a bit flaky sometimes.

  188. gnu parted by Roadmaster · · Score: 1

    I've had great success booting with knoppix and using gnu parted for this. It's terminal-based but works fine for me.

  189. tar works for me by Anonymous Coward · · Score: 0

    I usually boot into linux and tar up the filesystem, not the disk image itself.
    I have never had a problem reinstalling from this tarfile. Admittedly, on a new disk, you have to make sure the boot sector gets installed, but I believe doing a format /s from a windows boot disk solves this problem.. untar on top of that.
    I've never tried this on a non-fat filesystem though, so YMMV.
    Tar'd up windows install saves hours of pain when trying to bring up a system with a mess of drivers that only work properly together if installed in the correct order. Almost like playing dragon's lair: left, forward, sword, DAMMIT! left, forward, down, DAMMIT! left, forward, left, sword! YES!

  190. Worried about copy protection? by LilMikey · · Score: 1

    We use Ghost here and have few complaints. The new versions seem to work very well.

    More to the point; you're already running Windows with one of the most insane-restrictive w3 p0wn5 j00 EULAs on the planet. Symantec's copy-protection, while evil in it's own right, should be the least of your worries.

    --
    LilMikey.com... I'll stop doing it when you sto
  191. Re:Fully automated NT, 2K and XP OS and app instal by moquist · · Score: 1, Interesting

    I also worked on JACAL at Taylor University (www.css.tayloru.edu).

    Here are a few more details about the system:

    The Linux installation runs and completes first, without requiring any reboots, of course. Then the Windows installation proceeds, automatically rebooting and continuing several times.

    To start the JACAL process, the administrator only needs to input the hostname of the workstation, and select two or three menu options having to do with partitioning and whether the machine is to single-boot (Linux or Windows) or dual-boot.

    Linux Installation:

    We had a "base" Red Hat installation shared via NFS to the JACAL workstations (that is, workstations currently going through the JACAL install process), and this installation was rsynced to each installation target, where hardware detection and the admin-entered hostname were used to customize certain files. The rest was cake.

    Windows Installation:

    The real work was here, of course. :)
    To get the installation files, we let a Windows installation progress to the point where it starts paying attention to what hardware is on the system (that would be the second or third reboot, IIRC). We powered off the machine at that point and used 'dd' to grab the boot partition of the drive, and made a tarball of all the files on the Windows partition.

    After a lot of guesswork, trials, and errors, we developed a short script that knows which bits of the Windows boot partition are machine-independent, so for each workstation going through the JACAL process, JACAL un-tars the tarball onto the newly formatted (fat32) partition and copies the bits it will need to boot and continue the Windows installation. It also copies a chain of Perl scripts into the c:\temp folder. Then it reboots, and for the rest of the JACAL process the machine is running Windows.

    Using the RunOnce registry key, we started a Perl script that used sysdiff (and other various things) to install applications hosted on a SAMBA share. That perl script would then set RunOnce to run the next perl script, and then reboot. The next perl script would install the video driver, set RunOnce again, and reboot. The next one did some substitutions in c:\winnt\system.ini (or something like that) to enable SMP, and rebooted. Etc.

    Since I was there I know they've updated the entire applications installation process (SysDiff can't do *everything*), and they're running XP now instead of NT 4.0.

    I know that we were interested in making this more of an open-source project while I was there, but getting Windows to install this easily takes quite a bit of work to implement; there's no easy way to just pack up an all-inclusive tarball and send it off to somebody else, especially since a lot of the essential pieces are copies of non-free software packages. But I know that JACAL saves Taylor's CompSci department hours and hours of clicking through dialog boxes each year. (Need to fix a machine's configuration? Just sit down with a JACAL bootdisk for 5 minutes and the problem is solved 45 minutes later!)

    I think it would be great if more people could start to make use of the work that's been done, so it could be this easy for everyone.

  192. Drive Imaging by JWSmythe · · Score: 1

    What I've done for people who have needed to transfer their Windows install, without loosing anything (i.e., not having to reinstall the 100+ applications they've installed), I boot up with a Linux CD (distro or one of my own), and use cat to duplicate the data. I know a lot of people use dd, but hey, there's always more than one way to do it. :)

    cat /dev/hda > /dev/hdb

    For my Linux stuff, I use tar, something like this:

    cd / ; tar cvpzf /some_path/backup.tar.gz .

    I suppose it may work with Windows installations, if you have CONFIG_FAT_FS, CONFIG_MSDOS_FS, CONFIG_VFAT_FS, and CONFIG_NTFS_FS, depending on what filesystem your Windows machine is using. Try it once, and see what happens. You may find this works, and is free, rather than the expensive alternatives.

    mount /dev/hda /dos ; cd /dos ; tar cvpzf /some_path/backup.tar.gz .

    --
    Serious? Seriousness is well above my pay grade.
  193. Does no one use Image Cast? by Iwanabe2 · · Score: 1

    I'm not one of the big boys, but I image a lot of local Windows workstations (100 a year). I have never had a miss with IC3. I had to go up to version 4.6 with Win XP machines.

  194. The big deal by 3ryon · · Score: 1

    Ghost works great if you are willing to have your system down for a few hours while the data is being backed up. I am interested in creating images of Production Servers thus Ghost isn't really an option. TrueImage supposedly will take an image while the OS is running (a dream come true), but when you go to restore the image you have to have a DHCP server give you an IP address. Well, in the data center there is no DHCP. I wrote their staff to tell them that I'd buy a site license if they'd give me the ability to specify an IP address...haven't heard back.

    I can't believe that no vender has yet to create a product that can take an image of a production server (including the OS drive) with no down time, and allow you to restore it w/o DHCP.

  195. Robocopy by Hoi+Polloi · · Score: 1

    A quick Google search came up with this for whatever it is worth:

    http://www.infotech.jyu.fi/~jej/NTcommand_list_s yn tax.html#ROBOCOPY

    --
    It is by the juice of the coffee bean that thoughts acquire speed, the teeth acquire stains. The stains become a warning
  196. What those of us in Iraq are using... by Anonymous Coward · · Score: 0

    I'm at the CJTF-7 HQ in Baghdad (the war room place). We are currently using Norton Ghost for our needs. We've had a very successful run with it. Every laptop at the is base has been ghosted using Norton Ghost. We haven't had any problems whatsoever. At all. Of course military intelligence is an oxymoron. Oh well. At least I joined the Air Force and have a hell of a lot more training than my Army counterparts I'm forced to work with.

  197. NovaStor Instant Recovery does imaging by Fencepost · · Score: 1

    It's perhaps not completely ideal, but it works reasonably well in the experimenting I did. Depending on the drive, it can write directly to CD-Rs with compression (along with other drive types, but I've never tried those). You can do bootable CDs from it for recovery, etc. One interesting thing about it is that it's Linux-based, I suspect based off a standard distribution. Really there's nothing there you couldn't do with what's available standard under most Linux installs, it's just a question of putting it together.

    Instant Recovery

    --
    fencepost
    just a little off
  198. yes... by gimpboy · · Score: 1


    while i've never changed that many things at once, i've changed video cards, nic's, etc. and kudzu (under redhat 8 & 9) detects that the old hardware has been removed and the new stuff is there. it will then ask me questions like "do you want to configure the 3c509 blah?". i can tell it yes and to use dhcp and everything is dandy.

    problems can exsist, i'm not denying that, but changing the hardware is something that should be possible without reinstalling.

    --
    -- john
    1. Re:yes... by Anonymous Coward · · Score: 0
      Well that's nice but to the extent to which that is possible, Windows does exactly the same thing with probably the same success as Linux, assuming I don't want to fuck around with config files and modprobe. Your point about reinstalling is stupid insofar as you'd probably have the same problem with any other OS, especially if the drivers are fucked up enough. I've had some wonderful experiences with open source video drivers in the past that absolutely killed X to the point it was cheaper to just reinstall (I keep /home somewhere else so no big deal except for time). Ditto for some Windows drivers (ATI comes to mind here).

      Then again I use Linux as a friggin' server, which is where it belongs. So I really don't lose any sleep over how crappy fonts look in X, because I never see it anymore.

      If you're trying to make an argument that Windows is not good at detecting changes in hardware (or that Linux is better), you need to lay off the drugs. RH 7.3 wouldn't handle a NIC card change to save its life if the new one used a different chipset - you had to do it by hand if you were interested in using the thing. Don't get me started on USB drives... or $deity forbid, FireWire. Windows 2000 was doing it in 1999. Certainly Linux has gotten better now, but I guess you don't want to hear about such things.

      Hope that helps.

  199. VMWare by ElitusPrime · · Score: 1

    I do all of my Windows development inside of VMWare. It hogs disk space and there's a performance penalty... but I can easily backup with virtual machine. It also allows me to evaluate MS beta products, try out service packs, etc in an isolated environment.

    --
    The Christian ideal has not been tried and found wanting; it has been found difficult and left untried. -G.K. Chesterton
  200. Windows 2000 Server + RIS by botmfeedr · · Score: 0

    I use win2000 server with RIS (Remote Installation Services).

  201. Oh goody, a slashbot to ridicule by CaptainSuperBoy · · Score: 1

    Maybe because it is a "modern" OS (completely subjective term by the way), you dateless pathetic party-line Slashbot.

    1. Re:Oh goody, a slashbot to ridicule by flacco · · Score: 1
      Maybe because it is a "modern" OS (completely subjective term by the way), you dateless pathetic party-line Slashbot.

      so you believe that that being a subjectively "modern" OS is justification for sucking donkey-balls?

      --
      pr0n - keeping monitor glass spotless since 1981.
    2. Re:Oh goody, a slashbot to ridicule by CaptainSuperBoy · · Score: 1

      It should be obvious (although these assumptions are dangerous when dealing with mindless Linux fanboys such as you) that I don't believe Windows "sucks donkey-balls," which is another subjective classification.

    3. Re:Oh goody, a slashbot to ridicule by flacco · · Score: 1
      It should be obvious (although these assumptions are dangerous when dealing with mindless Linux fanboys such as you) that I don't believe Windows "sucks donkey-balls," which is another subjective classification.

      well, apparently my experience has been quite different from yours. we spent about eighteen months moving our servers from windows, exchange server, sql-server, iis, COM server-side apps and all the rest to linux, courier-mta, postgresql, apache, and java servlets running under tomcat. i'm not going to say the migration was effortless, but once accomplished the reduction in maintenance and software costs are quite real and repeatable year after year.

      and yes, i'd say that, overall, the security merry-go-round, upgrade treadmill, and just shitty software design could be collectively described as "sucking donkey-balls." a linux fanboy i may be, but it's not without cause.

      --
      pr0n - keeping monitor glass spotless since 1981.
  202. Start\Programs\Accessories\System Tools\Backup by Anonymous Coward · · Score: 1, Informative

    Or %SystemRoot%\system32\ntbackup.exe if you want, but what you want is your entire drive and "System State"

  203. DD and bad sectors by e980238 · · Score: 1

    So if dd copies EVERYTHING bit by bit then wouldnt it also copy the bad sectors?

  204. Only chumps use Windows. by Anonymous Coward · · Score: 0

    FOOL$

  205. Imaging by Anonymous Coward · · Score: 0

    The company I work for has a product called PC Relocator. Sort of like a backup tool, but a little more than that. It moves applications, files and settings. There is some work to be done with the product, but I think it a solid alternative to cloning. We basically can move a user's environment from one machine to another.

  206. but how to config windows first? by luigi6699 · · Score: 1

    right, so there are all sorts of exciting ways to make sector-for-sector copies from one drive to another. My question is, how do you prepare Windows for this procedure first? If there are significant differences in hardware between the imaged machine and the "imagee", even WinXP will crap out! So how do you set up the "base" WinXP machine so that it will detect all of the different hardware in the new machine on startup, and not get confused?

    --
    **** You never REALLY learn to swear until you own a computer. ****
  207. Ghost and Network Boot Disks by halfabee · · Score: 1

    I use Ghost with a Network boot disk, courtesy of Bart's Network Boot Disk.

    Using the boot disk, I can map drives and access domain resources. I have a drive mapped that contains the actual ghost.exe executable and most of my images. Yes, it is a pain to have to make new images for new hardware sets, and yes, you sometimes need to modify the boot floppy to recognize some NICs, but otherwise it works like a charm.

    I'll have to try out Knoppix for this, though!

    --
    -- Halfabee
  208. FDISK by codepunk · · Score: 1

    The best way to image a windoze box is to FDISK it and put something useful on it. What is the name of this web site slashdot or MCSE QA.

    --


    Got Code?
  209. Re:Power Quest - Drive Image - While Windows run ! by jpboily · · Score: 1

    With last version you can also take image while Windows is running !!! This is a great product I use often at my job on a lot of production web servers for a governement !

  210. All these ideas are fucking stupid by Anonymous Coward · · Score: 0

    why not just use the windows built in backup utility? It backups the whole os and programs.

  211. Everything in the article was verified... by Futurepower(R) · · Score: 1

    Everything in the Slashdot article was verified by Microsoft technical support people.

    1. Re:Everything in the article was verified... by cscx · · Score: 1

      You seem confused. What, exactly, are you trying to do? Back-up systems, or image them for rollout?

    2. Re:Everything in the article was verified... by dpalley · · Score: 1

      No, when you do a system backup in 2000/XP, there's a checkbox called System State that backs up your registry and other internal settings. This will let you do a full system restore over a vanilla OS install and should put you back to exactly where you were when the backup was made. You have to use a backup utility that is 2000/XP-aware, though.

      In theory, you should be able to do the same steps on a different machine and the system will handle the hardware changes as well.

      Using Backup Exec, you can even create a recovery disk that will install the bare minimum needed to get the tape software running (no OS install needed).

      Dan

  212. Drive imaging by four12 · · Score: 1

    Either gimp or Photoshop, depending on what OS I am in.

  213. System Restore by Seft · · Score: 1

    I can't believe no-one has pointed this out before, but XP comes with a tool called system restore. It restores the system, much like many other 3rd party tools, to a previous state. I know loads of people who have solved problems with this. Failing that, you can always (again with XP) boot to a 'Last Known Good Configuration'. I don't know about 2k, but this article has very little relavance to XP.

    1. Re:System Restore by pe1chl · · Score: 1

      You mean that after your disk crashed and you bought a new computer, system restore will restore the previous computer's state?

      Or even when you disk has not crashed and you have networked the two computers together to transfer the system?

      I cannot believe it...

    2. Re:System Restore by Seft · · Score: 1

      You mean that after your disk crashed and you bought a new computer, system restore will restore the previous computer's state? nope. It doesn't do that. I haven't had any disk failures even with computers 5 years old. Or even when you disk has not crashed and you have networked the two computers together to transfer the system? I'm not sure. I'm pretty sure you could get it to work if they had a similar hardware setup.

    3. Re:System Restore by wayne606 · · Score: 1

      Does this work if your disk dies?

  214. Sysprep is NOT supplied... by Futurepower(R) · · Score: 1


    Sysprep does not make backups. It only prepares an image for cloning to an identical machine. Most people don't have Sysprep. Sysprep is NOT supplied with the Home or Professional versions of Windows XP, and is NOT available on the Internet. Sysprep is supplied with support contracts and with the Corporate version of Windows XP.

    Nothing Sysprep can do makes a fully functional image of a hard drive. For that you need unsupported third-party tools. That's what the story is about.

    1. Re:Sysprep is NOT supplied... by Eyezen · · Score: 1

      hmmmm...

      NOT available on the internet???

      certainly not here...

  215. GNU Fileutils by Pan+T.+Hose · · Score: 1

    I have really no idea why it was modded as Funny. I had nothing but great experience with dd(1), especially the version from GNU Fileutils. If you are stuck with MS Windows and cannot use Knoppix then check out Cygwin. One of the great advantages of dd(1) is the ability to use good old Unix-style anonymous pipes, so with Netcat or SSH it can really do miracles with filesystems cloning across the network, be it LAN (with nc(1)) or the Internet (with ssh(1) as nc(1) sends data as unencrypted).

    --
    Sincerely,
    Pan Tarhei Hosé, PhD.
    "Homo sum et cogito ergo odi profanum vulgus et libido."
  216. It is possible to make a backup, but hard. by pe1chl · · Score: 1

    Contrary to what you think, it is possible to backup the system by-file.

    A while ago we wanted to move some NT4.0 fileservers at work to new hardware. We did not like to re-install and move over every configuration bit (including backup program, virus scanner, lots of printers, lots of shares, etc) all by hand. So we wanted to transfer the system file-by-file, using scopy or robocopy.

    Microsoft adepts told us it was impossible. It was not the way the big chief thought it had to be done. You had to re-install.

    Being Unix/Linux fans we of course did not want to believe that. The Linux server had been moved to new hardware (bought in the same order) in an hour, most of which was copying time.

    After some thinking, we came up with this:

    1. you install a new copy of the OS (NT in this case, works with 2000 as well, don't know about XP) on the same system.
    You can install it in a different directory or on a different partition, although you have to be careful in the latter case.

    2. you boot the new copy. It will be running from C:\WINNT2, for example.

    3. you copy or backup everything except that WINNT2 directory. The files in C:\WINNT that you normally cannot open will be no problem to copy now.

    4. on the new system you install the OS in the same alternative directory (WINNT2). You copy the files from the old system on it.

    5. you fiddle a bit with boot.ini (the boot selector menu configuration, like lilo.conf), reboot, and presto: the copy will be running as ever before. maybe you need to install some drivers.

    It really works.

  217. I have successfully made images with PQMagic by weedenbc · · Score: 1
    I run Win2k and for the longest time I could not make an image boot successfully. I would use Partition Magic to copy the partition to a backup hard drive. But there would always be an error concerning a missing swap file when I booted the image. The a version of the problem can be found MS Knowledge Base Article 249321

    Put briefly, when you make a win2k image somehow root is not given access to the swapfile. Win2k will not work without a swapfile and will not start the shell unless it has one. But, you cannot point it to the swapfile or create a new one until you get into the shell.

    You have two choices. One is to use M$ sysprep tool as mentioned elsewhere in this thread. An easier method that I have found is to force win2k to delete the swap file on exit using the instructions found in the PowerQuest Knowledge Base

    After making this change, reboot and create a copy of the partition. The copied partition will now be bootable.

    I have not worked much with WinXP so I am not sure what the problems inherent to it are, but this method works with win2k.

    --

    "Trying is only the first step towards failure." - Homer
  218. Don't know about your university by autechre · · Score: 2, Insightful

    But the Windows 2000 CDs we have as part of our licensing program are different than the kind ordinary mortals obtain. They don't require product activation codes, serial numbers, etc. (or any product activation at all, actually). Windows XP is the same way, as are Office 2000 and XP.

    I don't know whether that affects drive imaging software or not. I've used g4u to create and use images of Win2k and WinXP machines without problems (well, none that seemed specific to imaging), and I had never heard of "sysprep" (reading up on it now).

    I would really like to have an "Ask Slashdot" where all of the people who say "You just don't know how to administer a Windows network; if you did, it would be perfect" get the chance to tell us where to go to learn this fabulous information. I'm used to working with Linux and prefer it heavily, but right now my job is to maintain/upgrade a Windows+Novell network, and I still want to do a good job. I am gradually discovering things like SMS, but in many ways still feel lost. If there really are ways to make all this crap behave, I'd sure like to know about them.

    Do keep in mind that I work for a financially troubled state institution. Sitewide MS licensing is already paid for as far as Windows and Office, but suggesting $$$ on software or training is not helpful. I don't mind reading, though.

    --
    WMBC freeform/independent online radio.
    1. Re:Don't know about your university by Valegor · · Score: 1

      It sounds like you are speaking of an Enterprise or Select agreement for your Microsoft software. We use them at work as well and ghost pcs on a daily basis. Ghost has no problem with this type of software. Also I have used sys prep but find it to be a bit overated. We do not sysprep our images before dumping them to the ghost server and we have never had a problem with SIDs. If you are curious about training I would suggest looking through your Microsoft Licensing Binders and seeing if you have a subscription to thier training software.

    2. Re:Don't know about your university by japhmi · · Score: 1

      Yes, the OEM versions of these programs (we get them via OETC) have the nice side benefit of not having to use sysprep.

      --
      "Giving money and power to government is like giving whiskey and car keys to teenage boys" P. J. O'Rourke
    3. Re:Don't know about your university by Anonymous Coward · · Score: 0

      I would really like to have an "Ask Slashdot" where all of the people who say "You just don't know how to administer a Windows network; if you did, it would be perfect" get the chance to tell us where to go to learn this fabulous information.

      From the slashdot astroturfer training program, obviously.

    4. Re:Don't know about your university by lone_marauder · · Score: 1

      HAHA! RTFM!

      classic.

      --
      who are those slashdot people? they swept over like Mongol-Tartars.
    5. Re:Don't know about your university by autechre · · Score: 1

      Thanks for the suggestion. The licensing is actually for the entire University of Maryland system, not just us, so I'm not sure if we have any "Licensing Binders", but I'll ask around. I was under the impression that our deal was sort of a special one.

      I've been trying to look through things like technet and other online Microsoft documentation, but I guess I'm not used to looking at this style of information, because it seems like this vast galaxy of stuff with no obvious starting points.

      --
      WMBC freeform/independent online radio.
    6. Re:Don't know about your university by justins · · Score: 1
      But the Windows 2000 CDs we have as part of our licensing program are different than the kind ordinary mortals obtain. They don't require product activation codes, serial numbers, etc. (or any product activation at all, actually).

      Windows 2000 never uses product activation, it simply requires a serial number. It's just WinXP, OfficeXP, and their successors that require actual product activation.
      --
      Now before I get modded down, I be to remind whoever might read this that what I am saying is FACT. - bogaboga
    7. Re:Don't know about your university by /dev/trash · · Score: 1

      I hope to god you aren't a MCSE. If so you wasted your money.

    8. Re:Don't know about your university by Anonymous Coward · · Score: 0

      The "problem" that you can have with SIDs is that if they are the same from one machine to another, you can have inadvertent cross-machine permissions in certain situations. You may find that User A on Machine 1 is able to access files as if they were User B on Machine 2. It's usually only a problem if you have a peer-to-peer network; a domain-controlled network where each user has a domain SID anyway isn't going to have problems.

  219. Wrong again! by TheRealSlimShady · · Score: 1

    Wrong yet again. You're batting none for about a hundred here. Sysprep is not used for cloning to an identical machine. You can restore the image to any machine with the same HAL - regardless of other hardware, provided you can include the drivers for the new hardware in the image. All this stuff isn't rocket science - it's standard Windows stuff. If you'd bothered to do even the slightest bit of research you would have found this out. Quit while you're ahead.

  220. Backing up a notebook? by lilnobody · · Score: 1
    I've run into a similar problem. I want to be able to back up my XP notebook quickly, XP, push button. I'd like to do it with imaging software, because the time to recovery is much less should i experience a failure, and I dont want the software asking me crap about 'what to back up'.


    Is there such a thing? Am I doomed to have to boot into something else, or use a backup solution that requires me to re-install the OS upon failure?


    thanks,

    nobody

  221. Altiris Deployment Solution& sysprep by chopkins1 · · Score: 1

    Having been in LOTS of large scale deployment efforts, the best of the deployment tools I have seen is the Altiris Deployment Solution (which can be had via http://www.altiris.com/). They will even give you a 30 day trial of the product suite.

    It is my understanding that there are white papers on how to use RIS with GHOST.

    Microsoft will only support you if you use SYSPREP with any of the cloning tools. (v1.1 for Windows 2000 and v.2.x with XP)

  222. Er, s/SMS/SUS/ by autechre · · Score: 1

    I meant SUS, not SMS, as SMS costs money that we don't have.

    --
    WMBC freeform/independent online radio.
  223. Powerquest and Acronis by sheppos · · Score: 1

    Both of these companies now produce imaging software that can take a hot backup of all drives on a windows system.

    Powerquest's v2i is a good if pricey product. I'd prefer Acronis' Trueimage server though - it's somewhat slower in creating the image (10 minutes for 4Gb maybe) but much more capable and considerably cheaper.

    Both provide a bootable CD that can recover images from either local or network drives.

  224. That's funny by TheRealSlimShady · · Score: 1

    Cause it's almost exactly the opposite of the experience we have in the real world. So, to recap:

    You can make backups of a system using Windows Backup, which is included with the operating system. These backups are not intended for being restored to another hardware platform. To restore the backup, all you need to do is install the same version of Windows, then restore the backpu, including the system state.
    You can make images of Windows systems, provided you use sysprep to remove the domain specific information. These images can be restored to any hardware platform with the same HAL (so if it's an ACPI BIOS, then the target platform must be as well). Other hardware will be detected during the mini setup that runs after you restore the image. You can include extra drivers so you can have one image for multiple machines.

  225. Some info for you by sgasch · · Score: 1
    Futurepower(R) asks: "Microsoft Windows 2000 and Windows XP have crippled file systems. The file system cannot copy some of the files that are necessary to the operating system.

    While the system is running several processes have locks in place on files. Moreover some data on your disk (e.g. the boot sector) need to be copied to the same sector on the target drive. This isn't a "file" so you couldn't do it no matter what filesystem you used. Even under unix you'd have to use something like dd. It seem to me based on the first line of your question that you have unreasonable expectations and a negative opinion of Microsoft.

    Microsoft's advice is to reinstall the operating system and all programs every time you want to move to a new or backup computer.

    Which makes sense if you take into consideration that a lot of work detecting hardware happens during the install. Despite this I have moved hard drives with XP on them between machines and had no problem booting... the system detects a ton of device changes but works.

    Copying each sector of a hard drive bypasses Microsoft's copy protection by which Microsoft punishes all users, even if they are honest.

    This is just wrong. If it was this easy to defeat windows activation then everyone would do it. The way WPA works is it builds a fingerprint of your system based on 10 terms derived from the system hardware. If more than a few of these change it makes you reactivate. So by mirroring the disk sector by sector then plopping it in another machine you in effect change a lot of the hardware terms in the WPA equation and it forces you to reactivate windows.

    I don't have an answer to your question except this: it would be trivial to write a program to copy sector by sector, a "dd" for windows. So easy that I am sure it has been done. In case it hasn't, here's how to do it: MSDN article

    1. Re:Some info for you by demon · · Score: 1

      Moreover some data on your disk (e.g. the boot sector) need to be copied to the same sector on the target drive. This isn't a "file" so you couldn't do it no matter what filesystem you used. Even under unix you'd have to use something like dd.

      Yes, but with UNIX/Linux, you can boot from a CD, remake the filesystems and restore the backup, install your bootloader, and then reboot into the restored system, _exactly_ as it was at the time of the backup. It doesn't depend on "magical" file locations. I've done this myself, so I know it works. I've also had to deal with Windows systems, and I know exactly what he's talking about. You can do "backups" to tape or other media using Windows' "backup" tools, but you can't effectively restore those backups. All they're really good for is retrieving the data files. You'll never be able to restore the bootsector, the pagefile has to be contiguous or else Windows is unhappy, etc., etc.

      It seem to me based on the first line of your question that you have unreasonable expectations and a negative opinion of Microsoft.

      Yes, and one that's quite muchly justified, considering the fact that I've never seen a successful restore of Windows from tape or CD without disk-imaging software being used, and even then, the software does tend to be moody and flaky.

      --

      Sam: "That was needlessly cryptic."
      Max: "I'd be peeing my pants if I wore any!"
  226. The way we do it... by kanotspell · · Score: 1

    You'll need:
    1. PC with large harddrive and either Win or Linux/Samba
    2. Network capable boot disk, we use http://www.nu2.nu/bootdisk/network/
    3. The bootable version of Ghost We have the bootdisk setup to recognize the nic's we typically deal with. It boots and maps a drive to the "server" with the big drive in it. The Ghost exe is on the server. Simple, effective, cheap.

  227. This is all fine and dandy but... by Anonymous Coward · · Score: 0

    ...all of the solutions I read(granted I changed to 3+) require a reboot, swap a drive, setup this and that. Ridiculous!

    What do people use to backup EVERYTHING on a running windows 98SE/2000/XP box? Maybe so I can throw it on an identical server. Or god forbid, backup while it is in use! I for one do not want to play musical dvdRWs while everyone else has gone home.

    1. Re:This is all fine and dandy but... by WNight · · Score: 1

      And I want to put a GeForce card in my old Apple 2, but it's not going to happen.

      Sorry, but "real OSes" have ways of taking snapshots of running filesystems and backing those up. In other words with a few seconds(!) of downtime while you stop some services (like a database) you can have a completely consistent backup. If you're willing to do a database dump as a seperate process, you can ignore this. Just issues a sync command and when it returns, create the snapshot and copy that device (or the files on it) onto the backup media. The best(?) way of doing this with Linux is LVM, for other *NIXes I'm not sure.

      Unfortunately, Windows isn't a server OS. It just doesn't have the really high-end capabilities. As we've seen here, you can't even image a drive properly, without another OS. So you need to reboot and get a tool to do it, either Ghost, or dd, or whatever.

  228. Mod parent down by Anonymous Coward · · Score: 1, Insightful

    1. UNIX ACLs anyone?

    2. cscx goes overboard on original posters poor choice of words in saying that 'NTFS is fundamentally broken' when he really means that 'Windows is fundamentally broken' as the problem with live FS backups lies in MS's file locking design which ultimately comes back to their brain damaged DLL design. What do you mean I can't unload a DLL without rebooting? You put something that you might want to remove later in a HASH TABLE? Dumbasses.

    3. The SID attached to the host, which cscx exhorts the virtues of, is ultimately useless and a nuisance as hosts outside a domain/AD with the correct user credentials can still use network services. So why the hell do I have to dork around with sysprep?

    In answer to the initial poster's question, I use Symantec Ghost Enterprise to solve most of these problems. Yes, it has strange error messages. Try looking them up in the manual, and then posting them to the Symantec support group (although they are totally useless when it comes to using ghost to image linux, yech, it corrupts the ext3 logfile) If you read the manual, no, really read the manual the tool is amazingly powerful. If you don't read the manual you'll just give up on the install and load everything by hand because it'll be quicker.

  229. ghost 1, di 0 by MoFoQ · · Score: 1

    I've tried Drive Image 7 but it failed to clone a successful copy that would boot to windows correctly (windows would hang even in safe mode). I tried it again and again, about 4-5 times.
    Then I tried good ol Ghost (version 8) and it worked fine, the first time. The only complaint was that I had to do it from dos 'cuz the win32 version of ghost complained that it couldn't lock the drive down (I ran ghost from a different drive).

    There's also another way....using linux and doing it that way.

    Of course, this is all assuming that WPA (Weak Protection, and major Annoyance) doesn't interfere.

  230. I don't believe in Ghost by Sivar · · Score: 1

    I used Norton Ghost to backup my step-father's business PC running Windows 2000.
    Some of his drive letters had been reassigned, because Windows kept changing its mind about drive letters whenever certain removeable devices were plugged in before a system boot. This played havoc on many programs which rely on Windows to keep track of their path.

    So I make a Ghost image on the old drive, and restore it to the new drive.
    . . .
    Windows boots up, and complains that it can't find it's paging file (sometimes incorrectly called "swap file"). Hmm. No big deal, right? Er, no. Windows 2000 absolutely *requires* that you have a paging file, even if you have 2GB of RAM. Windows then proceededed to give me instructions on how to create a swap file by opening the Control Panel, clicking here and there (system-->performance IIRC).
    That's all fine and dandy, but when I logged on with any account, it would immediately log me off, telling me that, lo and behold, the paging file was missing and that I should click on Control Panel --> System --> Performance, etc. to create one.

    How useful!

    So I try all sorts of fun key combinations, booting in safe mode, and all the other obvious stuff. Every time it was the same:
    1) OMG! Missing paging file! Fix! Here's how:...
    2) Log in
    3) OMG! Missing paging file! Fix! Here's how:...
    4) Insta-logoff.

    For some odd reason known only to Microsoft, you can't reasonably edit the registry of another machine simply by plugging in its hard drive. No, this would render system recovery "insufficiently challenging."
    So, I asked a Microsoft programmer I know for what to do. He suggested I edit it with the remote registry editor. Okay, that service isn't running. (Run a remote registry editor service... on a Microsoft workstation containing important business information? Uh, no?)
    (note I tried this with a machine in the same situation later, and the Windows system refused to let anything talk to it outside of pinging and a few other things)
    So, then the Microsoft programmer suggested I boot into console mode and... Uh, oh wait, Microsoft doesn't provide any utilities that can correct this that aren't GUI-based.
    Then, I kid you not, he recommended I edit the registry file--in binary--using Debug. MmmHmm. Sure. While this would be tough even with the registry file spec, Windows, being a closed-source OS, doesn't have public documentation regarding the details of their binary registry format. Were this nearly any other OS, including previous Microsoftware like DOS/W3.1, this info would probably be stored in a human-readable text file, but I digress.

    So after consulting with a few other people, I ended up reinstalling Windows, about 70 applications, applying the 11 registry tweaks I normally do, and changing various odd system settings to the "Sane" setting.
    Seeing as how Windows 2000 does a full surface scan on the drive whether you want it to or not, and how installing and applying all of the needed updates requires rebooting no less than five times, this basically shot my entire day. I had to take a day off of work because this system was needed for business use that day. Fortunately, we had a backup of all his data.
    This is one of many examples I have that prove to me time and time again that Windows is not a sane server OS, never was and never will be.
    Some people may point out that Windows NT-based OSes link "C:", "D:" to devices just like Unix. That's all fine and dandy too, except that applications, including Windows itself rely on those arbitrary drive letters, whose ID is written to each drive's MBR for some reason, rather than in a centralized and readable location.

    No better way to spend one's day...

    --
    Computer Science is no more about computers than astronomy is about telescopes. --E. W. Dijkstra
  231. Mod Parent...How? by Slightly+Askew · · Score: 2, Funny

    Hello. I'm fairly new to slashdot, and I have all of these moderator points I don't know what to do with. I would like to mod down the post I just read as -1 Troll. It was posted by Cliff and titled "Experiences w/ Drive Imaging Software?". Thanks for the help.

    --
    Public use of any portable music system is a virtually guaranteed indicator of sociopathic tendencies. -- Zoso
  232. Er, ZD Mag? by Anonymous Coward · · Score: 0

    Never heard of it. Do you mean PC Magazine?

  233. backup? by perlchild · · Score: 1

    Since the poster wants to make backups, why is he investigating drive imaging software?

    He's looking for bare metal backup recovery...
    Legato Backup exec might do the trick
    Depending if your ntfs system uses encryption, a good knoppix cd might be all that's needed however

  234. Ghost, and if necessary, Sysprep by Tassleman · · Score: 1

    I have been making System Images for deployment of Windows 2000 and Windows XP for the last 2 years at my place of employment. Using Ghost Version 7.5 which fully supports NTFS I have never seen a single problem when imaging a Hard Disk.

    For these System Images we use Sysprep to prepare the Image for use on a very broad range of Hardware. At this point I have 2 Windows 2000 Images - one for Laptops, one for Desktops, and 1 Windows XP image that works on both Laptops and Desktops.

    You can also use Sysprep to move an Existing Windows installation to a completely different piece of hardware, provided you take steps to ensure the drivers for the IDE Controller are known to Sysprep. This generally involves adding a section to the SYSPREP.INF similar to this:

    [SysprepMassStorage]
    PCI\VEN_8086&DEV_7111="%windir%\inf\mshdc.inf"
    PCI\VEN_8086&DEV_7199="%windir%\inf\mshdc.inf" ...so that when Sysprep first boots the image it doesn't panic when it doesn't know what to do with the IDE controller.

    All in all Ghost+Sysprep seems to be a very good solution when creating images of Windows systems, and one that has served me very well for the last few years.

  235. So many errors, so little time by TheRealSlimShady · · Score: 1
    Seems that the original article submitter is a little confused about what he's trying to do. Is he trying to restore a backup of a system, or is he trying to make images to deploy to other systems?
    Windows ships with a utility that backs up the system, either to tape or to file. These can be used to make full DR backups, but they can only really be restored to identical hardware. To restore the backup, Windows first needs to be installed (only Windows, no apps). Then the restore is done - filesystem & system state. Then a reboot, and you're back to where you were when the backup was run. How do you think Windows admins backup their servers?

    If he wants to make images, Microsoft supports this as well. They ship a thing called RIS with Windows 2000 Server that lets you deploy images to hardware using PXE boot. You can deploy the images to any piece of hardware that has the same HAL, other drivers just need to be included in the image. A mini setup runs once the image has been restored that redetects hardware, and installs drivers for those bits that are new. The only thing is that you have to remove the domain specific information before you create the image - and Microsoft provides a tool to do this called sysprep (and also riprep).

    Really, this is basic stuff, and should be pretty easy to figure out if some research is done. Still, why research when you post an article to Slashdot and appear an utter fool?

  236. Problem with Optiplex GX 270 & Ghost by zzyp · · Score: 1

    Just won't go into the Symatec Ghost boot console maybe because of the inbuilt Intel Gigabit adapter? It just hangs while loading ghost.exe, do I have to pass in any special switches to ghost.exe? Thanks

    1. Re:Problem with Optiplex GX 270 & Ghost by Anonymous Coward · · Score: 0

      Make sure to get the patches for ghost. There was a problem with an older version of ghost and the gx270.

    2. Re:Problem with Optiplex GX 270 & Ghost by Anonymous Coward · · Score: 0

      We are no longer using the Dells, but I have had similar issues with boxes with Serial ATA controllers and Ghost. Disable the contoller, and Ghost starts...

    3. Re:Problem with Optiplex GX 270 & Ghost by iceperson · · Score: 1

      you need this switch -fni
      ice

      Here's a list of switches

    4. Re:Problem with Optiplex GX 270 & Ghost by zzyp · · Score: 1

      Ice: You da man. Thanks to you and the original poster, my installation has now started working. Something good came out of reading slashdot comments for a change :-)

  237. BS by Ummagumma · · Score: 1

    Sysprep and its documentation can be found in \support\tools\deploy.cab on the Windows XP CD.

    --
    "The natural progress of things is for liberty to yield and government to gain ground." - Thomas Jefferson
  238. Paragon Drive Backup by muckdog · · Score: 1

    I've use Paragon Drive Backup. They have a regular verison for $60 and and enterprise 10 User version for $150+ that allows you backup over the network. For me it has worked very well. It can run as Windows or DOS based. The images can be restored to different size and different types (IDE/SCSI) of disks.

    I use it to reimage test boxes in my QA lab daily. I also use to backup other specialized servers so we have a baseline to start with rather than reload the machine then restore from tape. Its been good for sale person laptops because they always get fucked up and filled with crap after three months. It takes about 1/2 hour per GB of data over the network. It take about 1/2 to restore a lean windows 2000 test box and only about 6-7 minutes to do a windows 98 test box. It has been invaluable for install testing when you need to be positive you have a clean environment. It also has an SID changer that allows you to change the SID. I have 4 matched test boxes that I interchange different OS images on. XP doesn't give me any trouble restoring to the same box. However when I move the image to a different matched box it whines that it needs to be reregistered (I'm guessing the different MAC address is enough to throw it off). The other good points is that it works with linux. I have backup up ext2 and reiser file systems. Reisier seems to go very slow though. Paragon claims it can backup any type of partition by going sector to sector. I have had trouble restoring a SCO partition because sco keeps track of hard drive cylinder values in it kernel config (just another reason SCO sucks). So with SCO the restore worked but it failed to boot correct when moved to a different disk. This is not an issue with windows/linux. You can also resize the files system to be larger. They also have a image mount program that allows you to mount NTFS/FAT to you can pull individual files. It can create/modify and delete partitions. It can create hidden partitions so you have more that 4 partition to a drive. The new version 6.0 claims it can burn images direct to cdr/dvdr.

    Now the bad, their support is sucky. It took them 3 weeks to answer a simple qustion via email. Also there doesn't seem to be any organized user community. Also its sometimes difficult to get the client and master part to find each other over the network. Works fine if on the same hub but sometimes doesn't if spanning a couple of hubs. The network backup relies on bootable DOS floppies . The network can be IPX or packet (TCP/IP). Problem is, not all cards have packet drivers. The box that have 3com, intel and xircom cards and not problems Obscure and newer cards make not have DOS packet drivers and I'm not about to have IPX on my network. For some odd/unsupport cards you can get free drivers from Crynwr http://www.crynwr.com/

    So all in all it a product I've been happy with and can recommend because it has paid for itself many times over in the time it has saved me.

  239. Again, Microsoft reps disagree. by Futurepower(R) · · Score: 1

    Windows backup cannot make fully functional copies of the Windows OS drive. This has been verified many times by Microsoft technical support personnel. There is nothing provided with the file system or with most copies of Windows XP (Professional and Home) that can make fully functional copies of the OS drive.

    1. Re:Again, Microsoft reps disagree. by TheRealSlimShady · · Score: 1
      Of course it can. That's how you restore Windows in the event of a hardware failure, or if the OS decides to dies because of file system corruption. If you're trying to restore to alternate hardware, then you're right - but then that's the wrong approach. See some of my other posts for details about what you're doing wrong - and you are doing it wrong if you can't restore Windows.

      If Microsoft tech support personnel have verified this, you must have either KB article numbers, or support call numbers. Care to provide them?

      Basically, you've got the experience of thousands of Windows admins against you on this one.

    2. Re:Again, Microsoft reps disagree. by bhtooefr · · Score: 1

      I thought it was a file backup, and you had to have a working install of Windows to restore it. Basically, you'd have to install Windows XP, then run the restore. It would replace almost all of Windows XP with the backup, though.

    3. Re:Again, Microsoft reps disagree. by Anonymous Coward · · Score: 0

      It's registry-aware, so it's a little more than a file backup, but basically that's correct.

  240. Funny? by PortWineBoy · · Score: 1

    I'm not sure why this is modded "Funny" but I have never had this issue. I've sysprepped machines many times under Win XP and Win 2000 and never rendered it non-bootable.

    --

    this sig deleted by another sig

  241. Get a grip by Anonymous Coward · · Score: 0

    What you really need, CaptainSuperBoy, is a tranquilizer, not backup software.

  242. Windows finally equals Linux in attitude by Anonymous Coward · · Score: 0

    the (obviously ignorant) author...Bullshit! That one statement shows that the article writer has a serious case of rectal-cranial inversion...Obviously the article writer is an amateur and knows nothing about how Windows or NTFS work

    Let it never be said that the Windows world lacks the "RTFM!" attitude that the Unix world is famous for...

    I think if the guy knew all that he needed to know, he wouldn't be asking Slashdot.

    1. Re:Windows finally equals Linux in attitude by TheRealSlimShady · · Score: 1
      I think if the guy knew all that he needed to know, he wouldn't be asking Slashdot.

      The trouble was all the FUD that he posted with it - Windows can't restore from Backup for example - that's just bullshit.

  243. What about ZEN? by Silicon+Snake · · Score: 0

    We use novell's zenworks for client imaging... In some cases, it even compressed higher and faster than ghost! Granted, it takes forever to download the image back to the client, but considering that you can integrate an imaging policy with in your directory service, you end up with lots or possibilities....

  244. Wow. Surprising by mcrbids · · Score: 1

    I find that I'm getting spoiled by the goodies of Linux as an Admin.

    Windows locks files that are open. Linux creates references to open files.

    What does that mean?

    On Linux, I can update a script or command that's busy running, right on a production system, while 100 people are busy using that very command. The changes have no effect on running copies, and the updated script/command takes effect the next time somebody wants to use it. The result is a seamless and magical upgrade that just sortof "appears" before the end user.

    Can't do that on Windows.

    On Linux, I can do a full system backup, and include every file in the state its in as of the moment of the backup, even if it's being edited, or is in some way open for editing.

    Can't do that on Windows.

    These are *critical* functions - backups, updates, and the like. You can probably well imagine the pain of shutting down 100 people on a Windows server so that you can make a minor script update - many of you don't have to imagine!

    Man I'm glad I jumped the MS ship...

    --
    I have no problem with your religion until you decide it's reason to deprive others of the truth.
  245. Meh..I don't run servers... by FatSean · · Score: 0, Troll

    I use my machines for desktop purposes...and Windows is still the winner on the desktop. So...you haven't impressed me with your l33t Linux filesystems reference...

    --
    Blar.
    1. Re:Meh..I don't run servers... by Anonymous Coward · · Score: 0

      If you're after a desktop, maybe you should consider being a closet Mac user, and as far as ext3 and xfs .. sorry not l33t5p34k - xfs is an SGI filesystem that's been around for ages (might want to look at cxfs if you're want shared storage among many different systems), and ext3 is an unfortunate byproduct of RedHat - but still pretty far ahead of NTFS .. but if you consider Windows the "winner on the desktop", I don't expect you to see much else outside of your biased microsoft-market induced droning FatSean.

  246. Re:Experiences with Ed Norton Ghost by Jon_E · · Score: 5, Funny

    Personally, I like Ed Norton Ghost - It beats the crap out of itself and then starts fights between the other filesystems installed in the system.

  247. NTFS Multiple Data Streams are Backup Hell by CognitiveFusion · · Score: 1

    NTFS has a feature known as multiple data streams, that causes serious headaches when backing up to a non-NTFS filesystem.

    The stream name identifies a new data attribute for a file, and a handle can be opened to each data stream. Each data stream has separate opportunistic locks, file locks, and sizes, but common permissions.

    When you copy an NTFS file to a non-NTFS volume, data streams and other attributes are lost.

    An example of an alternate stream:

    somefile.txt:streamdata

    A library of files might exist where the files are defined as alternate streams, as in the following example:

    library.txt:file1
    library.txt:file2
    library.txt:file3

    You can create and experiment with data streams at the command prompt with commands such as:

    Create a file named tempfile.txt and store the word "text" in a data stream named "stream"
    echo text>tempfile.txt:stream
    write out the normal contents of tempfile.txt
    more<tempfile.txt
    write out the data stream of tempfile.txt
    more<program:source_file

    --
    Fools ignore complexity; pragmatists suffer it; experts avoid it; geniuses remove it. ~A. Perlis
  248. Is that all? by Enucite · · Score: 1

    Wow! How'd they manage to make it that easy?

    Those engineers at Microsoft really know how to make our job a breeze!

  249. Thanks. However, it is an old version. by Futurepower(R) · · Score: 1

    This is an old version, that may not work with Windows XP. However, thanks, I didn't know about it.

    1. Re:Thanks. However, it is an old version. by Anonymous Coward · · Score: 0

      Searching at Microsoft's web site for sysprep and xp will quickly turn up the WinXP version of this.

      I know research takes time, but in this case, it's only a few seconds.

      Here's the link for Win2k (any version) sysprep.

      Here's the Windows XP SP1 equivalent.

      Here's a HOW-to use Sysprep for Windows XP to automatically deploy WinXP installations from the clone.

      Finally, here's a VIDEO (web cast from a powerpoint, also available down the same page as an .EXE self-extractor) on how to clone Windows 2000 and then use sysprep.

      Since Win2k and WinXP are so closely related, many techniques from Win2k sysprep can be readily applied to WinXP sysprep.

    2. Re:Thanks. However, it is an old version. by TheRealSlimShady · · Score: 1
      Jesus, do we have to do all your research for you. You show up on Slashdot posting totally incorrect information, and don't even have the common decency to do some basic research before you turn up.

      Here are the Windows XP deployment tools, including Sysprep.

      Here is the Windows XP deployment section of Technet. I suggest you read it, as it will clear up a lot of your misconceptions. You might even learn something

  250. You don't need to strip, just create a new SID. by dameron · · Score: 1

    http://www.sysinternals.com/ntw2k/source/newsid.sh tml

    Free as in beer. Specify a SID, randomly generate a SID or clone SID a SID anyone? I've successfully used this utility to restore functionality to an NT server that had gone belly-up by copying the data files to another server, changing the name of the server and specifying the same SID.

    Theres a lot of room to play with NT/XP/2K security with a proggy like Newsid.

    -dameron

  251. Zenworks by Anonymous Coward · · Score: 0

    Novell Zenworks does a pretty good job of imaging Windows, it's basically a small Linux distro. You still have to run sysprep and all that to really make it run right. That's Windows fault though not Novells you'd have to run sysprep no matter what you used. Only problems I've had with it is that it uses a older kernel that doesn't support some of the network cards I had.

  252. ghost by Anonymous Coward · · Score: 0

    i have been using last years model of ghost using the dos client 1 file no install clones ntfs fine, 90% of the time it doesnt fail (glares at the screwball pos running winblows setup behind him) ive got about 15 configurations for different machines stored on a 20gig full software install for everything we use, just have to change the network name, when making the images i use the -split option which makes a spanned image perfect for cd's, so when joe somewhere else needs to reinstall a machine its 3 cd's #1 bootable with ghost and a long switch string in the autoexec.bat file so he doesnt have to touch crap except the reset button when finished, ive also used the enterprise ed and multicast upwards of 60 computers at a time.
    soo
    Dos client doesnt screw up as bad or as often
    Flexability
    And i dont have to drive to Texas becuase someone screwed up 2k

  253. Re:PowerQuest USED to be good...and still is by Swootech · · Score: 1

    I still use PowerQuest DeployCenter 5.0 at work. We have a small testlab of desktop computers and around 60 GB of compressed images of Windows operating systems served fra a central computer.

    Having a permanent partition for DOS on the clients, it is very fast to restore an image from the network. A bit of tweaking the TCP/IP networking in DOS was needed to get good performance. Tuning some TCP settings, especially TCPWindowSize, improved performance bigtime.

    So I'd still recommend PowerQuest as a good product, though I can understand people not wanting to invest in PowerQuest products when I read about Symantec buying PowerQuest.

  254. Experiences with drive imaging software... by EverDense · · Score: 1

    I never thought it could happen to me. I was in the office backing up the companies accounting
    software, using Norton Ghost, when Cindy walked in wearing that little red dress she has.

    Cindy is so hot, I've never had the guts to ask her out. She walked up to me and...

    --
    http://jesus.everdense.com/
    1. Re:Experiences with drive imaging software... by redback · · Score: 1

      and what?

  255. XXCLONE is free (under devel) by JosefWells · · Score: 1

    Ok, well free as in beer anyway. I used it to back up a dying drive and reimage it to a working one.

    http://www.xxclone.com/

    Same folks who make xxcopy.. dunno, never used it, seems kinda neat.. in a nasty windows kinda way.

  256. hard disk imaging hell by tsu+doh+nimh · · Score: 1

    It gets worse if you try to install a new hard disk and then use something like Maxtor's imaging software to move your Win OS from the old drive over to the new. What invariably happens is that certain critical system files don't make it through the transfer. I did this last month, only to find Windows Update no longer worked on my machine. I actually made it all the way up to Msft. Tier 3 tech support (the people who actually know how to fix stuff), and was told they'd had many reports of problems after imaging from a third-party ap. I ended up having to do an in-place upgrade (two, actually). Windows Auto Update still doesn't work, but I can download updates from the WU web site no prob. BEWARE!

    --
    ...because you never know who you're dealing with.
  257. Backup vs. Image by Anonymous Coward · · Score: 0

    You seem to be using the terms backup and image interchangeably. I attribute this to the same dim wit that led you to the conclusion that "Microsoft Windows 2000 and Windows XP have crippled file systems." For actual backups I would recommend the backup tool which is included with windows, or one of the many 3rd party tools such as BackupExec. If you are more interested in using some kind of system image to automate installations and roll out, Microsoft supports this through the use of remote installation services. I might suggest cracking open the documentation to windows or taking a look at the resource kit. It's amazing what you will find in there.

    Instead of asking the morons on Slashdot how to put together some half assed solution to your problems you might want to confider doing some real research. Most of the people who have so many problems dealing with windows systems are the very same ones who insist upon dealing with them in the same exact way they deal with Unix and constanly bitch about how their nigger-rigged solution doesn't fly. If the Unix solution doesn't work it must be broken right. Seriously, take a look at some of the documentation and start acting like a professional.

  258. cp -ax / . by nick_urbanik · · Score: 1

    I used cp -ax / /mnt/newdisk a number of times successfully with ext2, ext3 and reiserfs; works fine, but a bit slow.

  259. hdcopy by Frederic54 · · Score: 1

    we are using HDCopy here and it works pretty well, give it a try

    --
    "Science will win because it works." - Stephen Hawking
  260. Acronis TrueImage saved my ass by harborpirate · · Score: 2, Informative

    About 6 months ago, I bought a new HD. I decided to split it into separate partitions, one for OS, a big one for Data. I cleaned off my old HD so that I could put images on it.

    Once I got XP running and set up the way I liked it, I made an image. I installed a firewall and some other necessary programs, made another image. Added all the accessory programs I like, made an image.

    Then I tried to install a major IDE. The installation hosed up at 99%. After a reboot, the machine was F'd up big time. I restored the image I had made just before starting the installation. Then I tried installing the IDE again and it worked perfectly. My machine has been running great ever since, and the IDE works just fine. Needless to say I also have an image with the IDE installed :)

    TrueImage certainly saved me loads of time reinstalling my OS, configuring it, and installing all the programs I like. Not only that, but since I can cut an image of the OS while running it, making new images is a piece of cake. Booting from a disk to make an image now feels practically prehistoric. But the greatest thing about it is that its cheap, unlike certain other image software.

    So I vote for Acronis.

    It may not be an ideal corporate solution - I think Ghost is probably still the best for that. Its got automation, networking, pretty much everything you could want in image software. Except, perhaps, ease of use and low cost.

    For personal use though, I'd argue Acronis is the way to go for MS OS.

    Personal Soapbox section:
    When you set up a new machine, make a separate partition for data and OS! It'll save you a lot of time because making OS images is fast and easy, and you can restore your OS without having to worry about losing data. The data partition can be backed up via more conventional means. Copy important data to CD or tape, or whatever other backup solution you want to pursue - but image your OS. I'd never set up a new machine any other way.

    --
    // harborpirate
    // Slashbots off the starboard bow!
    1. Re:Acronis TrueImage saved my ass by Dr.+Spork · · Score: 1

      Yes, Acronis TrueImage is really some of the best sofware that's for sale anywhere. The bootable CD and ease of recovery are far better than the more famous products. In general, Acronis makes great software. They are an unjustly-neglected company.

    2. Re:Acronis TrueImage saved my ass by Anonymous Coward · · Score: 0

      It saved me some time migrating to a new HD.

      One big caveat: trying to restore from an image on the same drive (different partition obviously) is unbelievably slow, at least 10x slower than drive to drive, possibly much more than 10x. Bit of a disaster if you don't have enough spare drives or space for the image on the source drive.

  261. REAL ISSUE: Minimizing Errors... Avoid the problem by Anonymous Coward · · Score: 0

    It sounds like your problem isn't really about which product to pick, but rather about the "nonspecific error messages" you have been recieving.

    Here's my hints to avoid this in all sector dupe packages:

    #1: Is your drive defragmented? A defragmented hard drive is easier to dupe than frag'd one, and compresses better too!

    #2: Are your sectors clean? Try Eraser (http://eraser.sf.net). It will clean out many FS clogs.

    #3: Are your boot time files defragmented? Try the System Defragger from www.sysinternals.com

    #4: Is your system on FAT? If not, convert to NTFS!

    #5: Is there at least 10-20% free disk space?

    The above 5 are good hard disk maintenance for any NT2KXP user/admin, but do come in handy in making quick painless ghosts.

    The next few might explain away your actual copy modes:

    #1: Make sure your Ghost/whatever boot disk is running Windows 98SE DOS - just the boot! You shouldn't boot using the 98SE full startup disk!

    #2: Make sure you don't have any disk management software running on your disk! No NTFS4DOS either! Straight Vanilla DOS Boot!

    #3: If using a DOS network boot, you are better off using a DOS boot disk created on a NT Server. Also, you are obviously better off with 3Com 905 based NIC's.

    #4: K.I.S.S. : IF you are crashing doing network images, attach a local hard drive. IF you are crashing doing CD burns, attach a local hard drive. IF you are crashing using a local hard drive, remove the system drive and image it on a third computer!

    #5: Keep that old Pentium II running Windows 98SE! Imaging in a dos box on 98SE is more secure than on DOS boot disks. You overcome the file system issues (DOS has a problem with HUGE files), networking problems and image verification when the system doing the backups IS not the system being backed up.

    AND OF COURSE: RTFM! There are advanced features in Ghost that allow you to place a boot partition on a box, so that you can wake up the computer in the middle of the night, boot from that partition, and replicate itself to a server. There is also the capibility to boot over PXE and boot a system without ever using the hard drive! In these circumstances, the programs running will have unlimited access to the hard drive because it didn't boot the system.

    Good luck, and may the force with you.

  262. Windows 2000 Sysprep Tool 1.1. NewSID is better? by Futurepower(R) · · Score: 1


    This is Windows 2000 Sysprep Tool 1.1. The latest version is 2.0, apparently. This is not available on the Internet, apparently.

    Sysprep only 1) changes the SID, and 2) sometimes helps with IDE drivers. Sysprep does NOT make backups, as some seem to imply.

    I haven't used it, but judging from Microsoft's documentation, NewSID from Sysinternals may be better. Microsoft says that SIDs can become unsynchronized so that Sysprep cannot fix them.

  263. Partimage, the easy way w/Gentoo. by dameron · · Score: 1

    A whole stack of Gentoo boot cds. Place in drive.

    Boot.
    (modprobe tulip (or xxx) if you have too)
    dhcpcd
    cd /var
    wget http://server/partimag (binary for platform)
    chmod u+x partimag ./partimag

    As log as you have a box to act as a server with enough space on it, it'll produce a compressed image that works fine for NT/XP/2K. I suppose you could do this with things like Knoppix, or build your own boot cd, but the Gentoo live cd boots very quickly and has had drivers for every network card I've tried to use. You have to specify a new SID for each machine MS box (http://www.sysinternals.com/ntw2k/source/newsid.s html) but that's trivial and quite fast on modern hardware, and the program can be included on the m odel machine.

    We used Imagecast for a few years, and we tried Bootit NG too, (which is fine, but costs money and has a quite a few steps to get an image out right, but is a fine partitioning tool with a decent GUI if you need that) but partimage is probably going to do us for a while.

    -dameron

  264. tar by Quixadhal · · Score: 1

    Heh, last time I did this to a Win98 system, I disabled virtual memory, rebooted into linux via a cd, tar'd the windoze partition up to a network share, then switch drives, format/initialize the mbr, restore the tarball onto the new hard drive.

    dd works if you aren't switching drives, but if you go to a bigger drive, it will leave you with a partition table that looks like the older (smaller) drive and you have to go fix it.

  265. IBM's ImageUltra by gefahrmaus · · Score: 1

    The sales literature "wow'd" me.

    Hardware Independent. Allows one to define say, "Windows 2000 Sales Force Configuration". Slices out applications and drivers from OS and libraries them. Hence, new hardware comes in, 10 IBM ThinkPads, 15 Dell Dimensions, 10 ThinkVistas. Each has different NICs, modems, USB, etc.

    ImageUltra "slipstreams" the drivers and applications based on hardware configuration. One image, multiple hardware.

    I recall being very impressed at a demo. I think it was limited to IBM hardware at the time, but it was being licensed, in fact, it may be the basis for PowerQuest's product. ImageUltra is free for use on IBM hardware (of course), nominal licensing for non-IBM hardware if I recall as well. There is an enterprise product too, ImageUltra Builder. Check it out at: http://www.pc.ibm.com/us/think/thinkvantagetech/im ageultra.htm

  266. backing up a laptop by careysb · · Score: 1

    I'm using XP's backup sofware to backup my entire system to a removeable hard drive. My only problem is that to get a complete backup the utility wants to create a bootable floppy and with only one bay I can have the extra hard drive in it OR the floppy drive, but not both.
    Suggestions?

    1. Re:backing up a laptop by cdn-programmer · · Score: 1

      I have a good suggestion. Switch to Linux and you won't have this problem.

  267. Norton Ghost by Anonymous Coward · · Score: 0

    Norton Ghost works just fine with XP to either make an entire drive image to store on a backup hard drive, or it will burn CDR/DVDR(s) for you depending on how much stuff you have. I know PowerQuest has some similar software that does the same thing.

  268. Thanks. Sysprep does NOT deploy anything... by Futurepower(R) · · Score: 1


    Sysprep does NOT deploy anything, even though Microsoft says it does. Sysprep is used with separate hardware or software for making drive images.

    Also, in the original article, I did not mention other software for making drive images: Altiris RapiDeploy, and Innovative Software's ImageCast.

    Thanks for the link to Sysprep 2.0. I had done a search, and not found anything.

    1. Re:Thanks. Sysprep does NOT deploy anything... by TheRealSlimShady · · Score: 1
      Sysprep does NOT deploy anything, even though Microsoft says it does.

      Where? Sysprep is the tool for preparing machines for imaging - I can't recall Microsoft claiming that it deploys anything. Even the documentation says "The Windows System Preparation (sysprep) tool prepares a PC's hard disk for delivery to the end users". (Emphasis mine). Windows 2000/2003 Server provides RIS which is used for the deploying bit of things. Or you can use Ghost, or Altiris, or some other third party deployment product.

  269. ntfsclone by irgu · · Score: 1

    It's free, open source and the Linux-NTFS developers say it's reliable: http://linux-ntfs.sourceforge.net/man/ntfsclone.ht ml

  270. Bad HDD? by Anonymous Coward · · Score: 0

    If the computers have been used for a while I would check the memory and HDD to make sure they are not defective as this can cause random errors in just about everything. I have never had problems with norton ghost except when the machine has some kind of defective hardware

  271. How do you clone the resulting image? by Futurepower(R) · · Score: 1

    Sysprep is used, but it does not do cloning. That's what the Slashdot article is about: How do you clone the resulting image? What is your best method for doing this?

    1. Re:How do you clone the resulting image? by TheRealSlimShady · · Score: 1

      You've got multiple options. If you're running Active Directory you can use RIS to grab the image and then deploy it to multiple machines. The advantage with this method is that you can deploy the same image to multiple different bits of hardware, provided the have the same HAL, and you include all the drivers in the image source. It's pretty easy to do. Otherwise you go to third party products - Altiris, Ghost, not sure if Zen Works has anything to deploy images. Even if you're not in an AD, you could still set up a single AD machine to function as a RIS server to just deploy the image from.

  272. Sysprep does NOT do imaging. by Futurepower(R) · · Score: 1

    Sysprep does NOT do imaging. The Slashdot question is: What is your best method of doing imaging?

    1. Re:Sysprep does NOT do imaging. by TheRealSlimShady · · Score: 1

      I didn't say sysprep did imaging, I said provided you ran it to remove the domain specific information. Imaging is addressed in one of my other (many) posts in this topic.

  273. Do you have a link to the "ZD Mag" article? by Futurepower(R) · · Score: 1


    Do you have a link to the "ZD Mag" article? When was it published? Is it this: Backup & Recovery

    1. Re:Do you have a link to the "ZD Mag" article? by bahamat · · Score: 1

      To be honest, I don't recall exactly which publisher ran it, it may have been this one but that doesn't look like I remember. The one I'm thinking of was about a year or so ago, and I could have sworn it was ZD Net or PC Magazine. If anyone else can find it or remembers it please post a link.

  274. Try Linux System Recue Cd-Rom by clnelson · · Score: 1

    I've had luck using this live cd-- http://www.sysresccd.org/ You can boot off of it and take an image from an existing computer, image it to a network drive, and then boot a new/broken machine and image it right off the network. A nice piece of work.

    I've used it in a windows environment to image a Win2k machine to a smb share and then back to a machine that had a crashed hard drive. Worked great. It's got a gui and a curses based interface so you can choose what you like best. Most of the tools (like dd and parted, of course) you want are on there.

    http://www.sysresccd.org/

  275. Ghost by Anonymous Coward · · Score: 0

    We have no problem using Imagecast or Ghost.
    None, zero, no problems

  276. Yes, also by That's+Unpossible! · · Score: 1

    pray that you are able to restore the same exact hardware, or you will likely run into problems with your hardware after you restore.

    This was especially a problem in NT4. Maybe they've fixed it 2K and 2K3.

    --
    Ironically, the word ironically is often used incorrectly.
  277. Which third-party tool for DRIVE IMAGING? by Futurepower(R) · · Score: 1

    This is all offtopic. The Slashdot story asks which third-party tool do you use for drive imaging.

    1. Re:Which third-party tool for DRIVE IMAGING? by TheRealSlimShady · · Score: 1

      Which I just addressed - RIS, Ghost, Altiris. However, you need to be aware that running sysprep is an important part of the process. Your original post was very unclear, you were saying how Microsoft doesn't support full backups of systems. I've pointed out in many replies to you and others that there is a way to do it.

  278. I bought a copy of NTI Backup Now I found cheap at a computer show.

    I tried to use it to make an image backup of my C: drive. The thing does two CD's worth, gets near the end, then stops, saying backup finished with write errors!

    Even DOS had "Abort, Retry, Ignore" capability! These morons at NTI don't simply tell you the CD has write problems, eject it, put in a new one and keep going?

    This piece of crap doesn't even tell you how many CDs you'll need to back up the data!

    And this a company that also produces a CD BURNER SOFTWARE!! The engine of which is IN their backup software! They don't know the fucking media is not reliable???

    So now it's back to freeware backup utilities that have more capability (except the one that's really needed - to back up directly to CD - for that, I have to go back to my Nero Burning ROM.)

    I downloaded the documentation for BackupMyPC (which used to be Veritas Backup Exec for the desktop) and it doesn't seem to be much more flexible or user-friendly.

    Somebody get their head out of their ass and write some backup software that makes sense.

    --
    Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
  279. Here is a link to Microsoft's article about RIS: by Futurepower(R) · · Score: 1

    For everyone who reads this, here is a link to Microsoft's article about RIS: Designing RIS Installations.

  280. Why is windows the winner on the desktop? by FatSean · · Score: 1

    The UI is more responsive and everything 'Just Works'. I don't have time to dick with linux to make it work with a 3 year old sound card, a USB flash card reader, or my Epson 820 Stylus printer. Linux is great for serving, but you are kidding yourself if you think it's beats Windows as a 'workstation'.

    --
    Blar.
    1. Re:Why is windows the winner on the desktop? by Jennifer+E.+Elaan · · Score: 1
      I respectfully disagree. Windows's interface is not the slightest bit scriptable, and while easy to use if you don't know it, is *really* difficult to use for those of us who do. It took me nearly 20 minutes to get Windows XP to connect to my network (which has a slightly unusual configuration that the "wizards" didn't expect), and 6 lines (20 seconds) at a command-line to get Linux on. Convincing XP to let me alter my own IP address was a chore in and of itself, while Linux merrily lets me make virtual network devices, bridge segments, set up firewalling the way I want it, etc.

      I don't argue that Windows is a better desktop OS. It is. Windows thinks it's smarter than you. When this is true, it's a good tradeoff. But I'm not a desktop user. In the workstation (as opposed to desktop) environment, Linux wins out with room to spare.

  281. ImageCast is Trash. by drinkypoo · · Score: 1

    Imagecast is absolutely awful. We use it where I work and the control console often terminates, which eradicates all currently running tasks. Also, it is entirely possible to get an image from a machine which has an error in it, and have Imagecast fail to report this; in fact, it will simply say the task has succeeded. It is also far from a general purpose program, it focuses on the files and not the partitions in every case so it is not possible to gather certain types of images. For example, it supports all the various FATs and NTFSes but the only linux filesystem it supports is ext2. Further it does not indiscriminately grab the boot sector; You can gather images of systems using LILO, but not GRUB. Imagecast is garbage and I would not trust it, period.

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  282. Microsoft does not support functional backups. by Futurepower(R) · · Score: 1

    It's an official fact. Although it is possible with third-party tools, and absolutely necessary, Microsoft does not officially support making functional backups, or clones. We use those tools, but Microsoft provides no support if there are problems.

    1. Re:Microsoft does not support functional backups. by TheRealSlimShady · · Score: 1
      Once again, you haven't read your own information. The article you pointed to indicates that in fact Microsoft do support imaged based systems, provided you use Sysprep. From the policy statement you linked to:

      "Microsoft does not provide support for computers on which Windows XP is installed by duplication of fully installed copies of Windows XP. Microsoft does support computers on which Windows XP is installed by use of disk-duplication software and the System Preparation tool (Sysprep.exe)."(emphasis mine).

      The fact that you wanted to do it with Backup is not a method anyone even recommends, and is totally the wrong way to do it. There are right ways to do it and wrong ways. If you do the wrong way, Microsoft won't support you. If you do it the right way, they will. This isn't that hard to understand.

  283. UDP Cast by Chalex · · Score: 1
    I can't believe no one has mentioned UDP Cast yet. I recently cloned 55 XP machines with no problems. It's basically just like dd over the network, booting from a simple floppy. Our lab machines are in a domain, so there was no need to run Sysprep, though we did have to manually join each machine to the domain after cloning. :(

    Pro: don't need a server - clone N computers from any one of them.

    Con: make sure you disconnect the network segment when you do the udpcast, or people upstream start complaining :)

    UDP Cast

  284. Ghost is the way to go. by djtremel · · Score: 1

    I've been using Ghost for more than 5 years without a problem. Keep in mind that I'm talking about the corporate version not the personal edition.

    If you are using Windows 2000/XP you have to use Microsofts Sysprep utility in order to make the OS work properly after you have placed a ghost image on a new drive.

    If you are just copying from one drive in the same computer to another you can get away without sysprep.

    It's really not that hard with a little patience.

  285. Your experience with drive imaging tools? by Futurepower(R) · · Score: 1

    There are NO misconceptions. The Slashdot article asks about your experience with drive imaging tools.

    1. Re:Your experience with drive imaging tools? by TheRealSlimShady · · Score: 1
      There are NO misconceptions. The Slashdot article asks about your experience with drive imaging tools.

      ...which is covered in the Technet section on deploying Windows XP. You have some major misconceptions, in that you actually don't understand how you deploy Windows workstations with an image. I've pointed to you to a great wealth of information about how you do it, and you still insist that you're right.

  286. Wow! No-one uses ImageCast??? by ashitaka · · Score: 1

    For the past 5 years I've been using Imagecast IC3 which was created by Microhouse and is now owned by Pheonix Technologies.

    It's fast, does disk-to-disk or multicast on a network and what set it apart for me, generates Win2K SIDS dynamically after imaging.

    --
    If you don't want to repeat the past, stop living in it.
  287. Snapshot - DiskImaging for Windows NT/2000/XP by curtvm · · Score: 1

    I like this program for imaging-
    http://www.drivesnapshot.de/en/intro.htm

    Works while running Windows, I use it daily.

    1. Re:Snapshot - DiskImaging for Windows NT/2000/XP by curtvm · · Score: 1

      I would like to add this- The program is 1 executable file 124KB in size, no registry entries, no installation needed, can be run from command line (setup a batch file, run it as a scheduled task). Instead of 30MB software packages (that rarely do the job right), why can't any of the big software makers write software like this?

    2. Re:Snapshot - DiskImaging for Windows NT/2000/XP by Anonymous Coward · · Score: 0
      why can't any of the big software makers write software like this?

      [place of oh-so-standard GNU/BSD/Linux/&c. retort]

      Having no experience of possible Snapshot qualities, you're basically asking for unbloated, functional software *pruned* and refactored to excellence.

      No *money* or 'market control' in (GUI challanged) functions/programs with fervently controlled scope of functionality, use of resources, compability with 'arcane' HW and/or software, &c.

    3. Re:Snapshot - DiskImaging for Windows NT/2000/XP by Anonymous Coward · · Score: 0

      Well, forget the 30MB versus 124KB , why can't Symantec/Microsoft/Powerquest even image a drive/partition while running Windows? One guy in Germany can do it , but they cannot? I know Powerquest has a new version (which I purchased and tried), but it does not work half as good as Snapshot, and if you have 256MB with an on-board video card that uses any of that memory, you will be unable to boot the recovery CD when needed.

    4. Re:Snapshot - DiskImaging for Windows NT/2000/XP by Anonymous Coward · · Score: 0

      He uses a very unsafe and unreliable method to snapshot the disk. It will blow one day and you will lose data

  288. a few piped commands by TheGratefulNet · · Score: 1

    tis only a few piped commands:

    # dd if=/dev/hda | gzip -9 > /other_physical_disk_or_partition/ide_disk.dd.gz

    whole raw disk backup, gzipped. aint nothing gonna stop this from capturing a whole disk faithfully.

    --

    --
    "It is now safe to switch off your computer."
  289. Did you actually READ the Slashdot question? by Futurepower(R) · · Score: 1


    "... it doesn't matter WHAT imaging software you use..."

    The Ask Slashdot question is what drive imaging software do you use, and what is your experience with it?

    Microsoft provides NO support for making drive images. All the software that makes drive images has problems. Part of the problems may be that there is NO support from Microsoft. These are third-party tools, and they are NOT supported.

    1. Re:Did you actually READ the Slashdot question? by TheRealSlimShady · · Score: 1
      Microsoft provides NO support for making drive images. All the software that makes drive images has problems. Part of the problems may be that there is NO support from Microsoft. These are third-party tools, and they are NOT supported.

      Yes they do - and I've pointed this out to you in other responses to you. If you want to make an image with Microsoft software, you use RIS. It has a tool called riprep that is used to make the image. Also, Microsoft will support you building images using other software, provided you use the Microsoft provided sysprep tool to prepare the machine first (not to image it, just to prepare it to be imaged).

  290. I've had no problems with multiple syspreps. by Futurepower(R) · · Score: 1


    I've had no problems with multiple syspreps.

  291. Use RIS by Drunken_Jackass · · Score: 1

    We use RIS to make base installations. That takes about 15 minutes to re-install win2K on a machine that's hosed. Then, we use group policies to install applications (that have been made into .msi's).

    If i want to "re-image" an admin machine (MS Office, a few industry specific apps, SQL client, etc.), for example, it takes about 45 minutes from top-to-botton. And almost all of that time is hands-off.

    Users' My Documents folder contents are stored in their profile directory on one of our servers, along with their desktops, etc. so that's completly portable...

    I know it's not exactly what you are asking for, but it makes a lot of sense to use, instead of mirroring everything. In my experience (which has been 0 in the last 3 years or so), GHOST is too damn slow to be useful. It doesn't take a week, but it takes a long time.

    --
    There are 01 types of people in this world. Those that understand binary, and me.
  292. Ghost by seier · · Score: 0

    Hi Gang, I just wanted to point out a couple of strengths and weaknesses of Ghost. #1 Ghost's greatest strength is also it's greatest weakness. The program doesn't work in Windows. Sure you can specify what you're going to backup from Windows, but the backup operation must be exclusive. While that is incovenient it also ensures a virtually failsafe backup. One thing I hate about Ghost is it doesn't verify the backup image automatically right after creating it. There isn't a field to type in the password when you're saving an image inside of the DOS GUI. Also the default imaging method doesn't copy the drives boot sector which is really stupid. I don't know why they would do that, but oh well. So if you use ghost and ever find your system isn't bootable just pop in that Win2K, XP, 2003 CD (if you have a cool OS) go to the recovery console and execute the fixmbr and fixboot commands. Cheers, Christian Blackburn

  293. heheh...poor you by djupedal · · Score: 1

    Relax - I'll use chassis any way I wish, any time I want, in any context, structure, location...written or verbal, I deem appropriate.

    I suppose if I want to chat someone up, or coupon my way south or brighten someone's day, you'll bust a cap on me.

    Your language....right.

  294. Imaging XP by JutMan · · Score: 1

    As long as you do not upgrade the drive to Dynamic we use Ghost to image. Then use the Ghost Walked to change the unique SID's. We have rolled out over 500 PC's / Laptops this way.

  295. Powerquest DriveCopy by JShadow · · Score: 0


    I've used Powerquest DriveCopy for some time and it always results in a perfect copy, even resizing my partitions up to a new drive size. Now this is only a drive to drive copy operation, so maybe that's not what you're looking for... Just my .02 :)

  296. Write to CD please? by teslatug · · Score: 1

    I would just like something that writes to CDs the backed up data. Ghost does it and it works relatively well for Windows, but I cannot use it for my Linux partitions (tried it and it crapped out on the restore). All the solutions mentioned so far assume that you are writing to a partition that the current OS can read and write to. It would be nice for example if you could somehow combine dd with utilities for writing to a CD and spanning across several CDs. It would also be nice if the data could be compressed and checksummed first. I don't know how hard this would be, but it would be a tremendous tool for home users if it were seamless to them. If someone knows of a free programs that does this let me know, and let the Knoppix folks know as well.

  297. Which software do you use for drive imaging? by Futurepower(R) · · Score: 1

    I've done it successfully a lot. The Slashdot question is about which software you use for drive imaging, and what is your experience with it. EVERYONE is having occasional problems. Those problems seem to stem from the fact that there is NO Microsoft support for the third-party imaging tools.

    1. Re:Which software do you use for drive imaging? by TheRealSlimShady · · Score: 1
      How's this? If you deploy an image using the Microsoft tools (RIS) and you have a problem, they will support you. If you deploy an image using a third party tool (let's use Ghost as an example) and you have a problem, guess who supports you? Symantec. Of course theres no Microsoft support for the third party imaging tools, they don't write them. If you've got a problem with the imaging software, take it up with the manufacturer. Microsoft will still support the OS, just not the deployment method.

      The problem with your Slashdot question was the wording you used - you said things like Windows doesn't allow you to do a full backup of your system, which is total nonsense. If the question was just "What software do you use to deploy Windows images?" you would have got far more useful responses. As it is, people (including me) focused on the glaringly obvious inaccuracies in your statements.

  298. Give Ghost another chance by rpwoodbu · · Score: 1
    I have been using Ghost for many years now (even before it carried the Norton name), and it has worked when other things have failed. I have done it all, from being a developer to doing PC repair, and Ghost has been there for me. I have never wanted to look into another imaging program, because it did what I needed it to do. It has even gotten data off of bad drives when nothing else would.

    That being said, you must know how to use the program effectively. When things are beautiful, it just simply works and works quickly. But it is rare that you are using it when life is beautiful. If you have a clean source image, and you are getting a system back up and running from it, it is pretty easy. But if you have a drive that is failing, or a filesystem that is hosed, things are a bit more tricky. Yes, it does like to give some nondescript error messages. But here are some ways to deal with it:

    • Make sure the source filesystem is clean (i.e. run chkdsk). If you are worried about chkdsk causing further damage (it has happened to me), or if that doesn't help, then read on.
    • Use Sector Copy mode. This is much slower and doesn't have the ability to resize the partition, but it will get everything bit-for-bit.
    • If you still get weird errors, your source drive may be going bad. You can tell Ghost to ignore sector read errors. You may not end up with a perfect copy, but this is the first thing I do when I suspect the drive is flaking out. On more than one occasion, using this feature at the first sign of failure has given me a workable backup just before the drive finally bit it for good. Oh, if my customers only understood how close to the brink they stood. And if I could just convince them to back up their data...

    My two cents, anyway.

  299. The obvious disadvantage: by bugnuts · · Score: 1

    You can't simply restore an individual file since the restoration process is basically the reverse: dd if=/dev/hdb1 of=/dev/hda1.

    You might be able to mount the image as read-only ntfs (or fat) and then find and restore that one file...

    This is ask slashdot, can it be done? What if the of=/mnt/fs/drive.backup (a file, not a drive)?

    1. Re:The obvious disadvantage: by lightcycle · · Score: 1

      I would think:
      mount -t vfat /mnt/fs/drive.backup /mnt/mountpoint -o loop
      would work?

      --

      The stars that shine and the stars that shrink
      in the face of stagnation the water runs before your eyes
  300. The System State does NOT include the entire OS. by Futurepower(R) · · Score: 1

    This is a misconception. The System State does NOT include the entire OS. Microsoft technical support representatives have verified this. If you do what you say, you will have a machine with two SIDs. This causes MAJOR problems. Microsoft says there is NO way to recover from that condition.

  301. Depends on the situation by Animedude · · Score: 1

    If it's just a case of cloning one IDE or SCSI drive, we have had no problems so far with Ghost. One point we always pay attention to is NEVER to clone a drive while Windows is running. We ALWAYS start Ghost from a DOS boot disk. During NT4 times, we had several base install images for the various machine types. Then all we did was boot from the Ghost boot disk, load the image which was kept on a server and then we ran Ghostwalker to change the SID of the installation. Worked fine. These days, we do not use images for new machines, all PCs are installed via RIS (servers are still installed manually). We only use Ghost when somebody needs e.g. a larger hard disk, but wants to keep his installation. Works fine with XP and W2K, no problems so far.

    One tip for those who want to use an imaging software on a server with a RAID system and cannot get it running due to missing DOS/Linux drivers for the RAID controller (e.g. if you want to reconfigure the array, but want to keep the installed OS): use NTBACKUP! Yep, the backup software which comes for free with e.g. W2K. In our disaster recovery tests, it was pretty much the only backup software which could reliably back up and restore all the registry data. We have a cron job running which does a full backup of C: including systemstate each day, and that file is then itself backed up on tape via the standard incremental backup each night. So if the system drive somehow gets corrupt, or if we need to mess around with the hard disks in any other way which usually would involve either a disaster recovery or doing a disk image and then restoring that image on a new hard disk, we instead put the backup file created via ntbackup on a different machine, make the new drive bootable (e.g. start an OS install on the blank machine until the point when Windows setup wants to do the first reboot), then we fire up ERD (by Winternals - basically a "windows xp on a CD" which allows you to do all kinds of nifty stuff and it of course allows you to use the Windows drivers for your controller), quickformat drive C: (it still is bootable due to the setup started from CD), map the drive with the backup file on it, start ntbackup and restore the old system to the hard disk. This is WAY faster than doing a complete initial OS install and then restoring the OS from the latest full/incremental tape backups and it WORKS (we had all kinds of problems with e.g. Omniback disaster recovery, since we NEVER got the system back into the state it was), and you can do it even in situations where you cannot do normal disk imaging (e.g. because there are no DOS or Linux drivers for the controller). Total time for a recovery of a ca. 5GB W2K install from the point of "plug in fresh&virgin hard disk" to "log on again": about half an hour, if you already have the ntbackup file available on a network drive.

  302. Microsoft does NOT support the disk imaging tools. by Futurepower(R) · · Score: 1


    You are certainly right about the wording. However, Microsoft does NOT support the third party disk imaging tools, in spite of the wording, and those tools often cause problems.

    What is the best imaging software to use? That's the question.

    NTBackup.exe will definitely not work. That's certain and well-known.

  303. what I do by CAIMLAS · · Score: 1

    I've got a custom knoppix CD image. It's fairly minimal, with only mozilla, KDE, konq, and OOo. Then I simply have a little script that will mount an NFS share and then dd an image to hda1. easy as pie.

    You could alternatively do it with something non-visual, but if it's a user's workstation, I like to be able to give them a little flavor of linux while their workstation heals itself. :) of course, they're not likely to do any work at this time (or any other time, really), so hopefully they don't have any actual paperwork to be doing. :)

    --
    ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
  304. Re:Fully automated NT, 2K and XP OS and app instal by NathanE · · Score: 2, Interesting

    I am the current maintainer of JACAL at Taylor University and there are several changes we've made to the system since the NT4 days.

    - We are using a product called PrismPack from Lanovation instead of SysDiff. It is quite a bit easier and quicker to use and we can also use it to deploy new applications and system changes via login scripts without the user having administrator privileges.

    - We are using AutoIt instead of ScriptIt for any GUI scripting for the few applications that don't like to be packaged with PrismPack (some applications do some kind of hardware ID-ing so you can't take a prebuilt package from one machine to another).

    It works really well for us even across lots of different hardware configurations.

  305. Me thinks thou art an IT dolt by old-lady-whispering- · · Score: 1

    1. boot to ghost disk or whatever image utility you are using immediately after a fresh install of the MS Flavor Of the Month and of course all your pretty little aplications too.

    2. Make disk image with no locked files :). Of course save the image to the network somewhere and put it on physical media also. Don't forget to label image with server/workstaion name and model number.

    3. Schedule backups using MS backup on a weekly or daily or whenever basis.

    4. Profit = you now have a two step restore of everything on your computer up to date of last backup or a onestep process of basic MS install with your companies apps ready to go. You could also put multiple hardware profiles on the image to cover all your different machines.

    I find it incredable that this person got there article on slashdot. Perhaps people who hate MS should stick to administrating non MS networks. Your hatred has made you blind to a simple task that most MS admins should know. Be careful if you go chasing monsters that you don't become one yourself.

    --
    The truth suffers more from convictions than from lies.
    1. Re:Me thinks thou art an IT dolt by iggymanz · · Score: 1

      Is there also a solution for those of us silly enough to run a Microsoft server for 24x7 operation, who don't have the luxury of unlocking files or booting from DOS disk?

  306. RIS: Only for use with Windows Server? by Futurepower(R) · · Score: 1


    That's the reason for the Ask Slashdot question, to discover how other people are doing the work.

    For anyone who reads this here is a Microsoft article about RIS: Designing RIS Installations. Here's another article: RIS

    I've been told many times by Microsoft support personnel that there is no way to make a drive image with Windows XP.

    Will RIS work with a peer-to-peer network? Is RIS only for use with a Windows Server?

  307. Unattended installs offer lots of flexibility by PhunkyOne · · Score: 0, Redundant
    My organization swears by unattended installs of Windows 2000/XP. It works wonderfully, all you have to do is select the template you will use which contains the software options to be installed and away you go. Drop in the floppy disk or CD enter the template name and come back a little later. The nice thing about using the CD is that it it handles slight hardware variations with the utmost ease. I use the same CD to unattend my Dell laptop as my coworkers optiplex.

    Yeah it takes some time to setup in the beginning but it really works great if you are always pushing new machines out the door or doing annual reinstalls.

    Here are a couple of links for those curious:

    From Winnetmag.com

    Unattended Installs in a Perfect World

    Unattended Installs with Windows 2000 Professional

    my $0.02

  308. Re:One area where linux (unix) is worth the $699 : by Quasar1999 · · Score: 1

    You may have more ways to backup linux, but that's because in linux you're expected to do it yourself, Microsoft on the otherhand has decided to implement some sort of driver rollback, system protection thingy...

    At the end of the day, because linux's backup is more user controlled, you can do what you want with it, while on MS's version, it happens magically... and never backs up what you need.

    --

    ---
    Programming is like sex... Make one mistake and support it the rest of your life.
  309. G4U Allows for Disk to Disk Copies Locally by Inhibit · · Score: 1

    G4U will actually allow a disk to disk image off a bootable CDRom, which is what we use here for imaging. Just pop in the CDRom with two hard drives hooked up and specify the source and target. Also, it only copies the actual data, not the blank space, so makes for some time saving over a direct dd if= of=.

    --
    You're reading Slashdot. Of course you like Linux and pc hardware
  310. Re:The System State does NOT include the entire OS by TheRealSlimShady · · Score: 1

    The reason he's confused is this statement in the question: "If you don't have experience with Microsoft operating systems, you may find this amazing, but it is true; Microsoft supplies no method of backing up and restoring fully operational copies of Windows 2000 and Windows XP." Actually you can, just not to multiple machines - it's for DR only. That's why everyone has got the wrong idea from your post.

  311. trouble with altiris by JimmytheGeek · · Score: 1

    We were usually able to script the machine name change, but domain join ALWAYS failed. Did you have better results? It was completely mucked when we tried to push images to altiris clients, too.

    I'm not imaging the labs any more, but I think the guys who are preferred ghost.

    They also found the imaging speed from same server hardware to be (fastest -> slowest) NetWare 4.11, Redhat 7.3/samba, Windows 2000

  312. Re:The System State does NOT include the entire OS by Anonymous Coward · · Score: 0

    Microsoft says a lot of things too. They produce so many tools that their executive tech support guys often don't come up with an answer so you put your own brain to work and write a whitepaper.

    This happened when we were running mandatory profiles with Exchange and Windows Messenger. We wanted every user to be able to retain their contacts. So we built a solution using tools Microsoft gave us. Came back the next day with a fully deployable solution just in time to receive the email saying they had no solution for people in our situation.

    C'est la vie, know your tools and all will be good in the end.

  313. Reason #49 billion by butane_bob2003 · · Score: 1

    to use Free Software. Can this limitation be attributed to bad software/faulty engineering or is it mostly due to Microsoft licensing policy? Normally one needs to re-install Windows to clean off all the crap that you unintentionally installed while using IE/Outlook, so in this case a OS image would be useless.

    --


    TallGreen CMS hosting
  314. A bit off topic but .... by Anonymous Coward · · Score: 0

    This is a bit off topic but it is also a problem for a bunch of Windows Administrators (or even worse, UNIX Admins who are forced to step into the Windows world like me)

    A big issue in our site is managing software installations on Windows. Our UNIX clients mount the software installations from our SAN. All the UNIX software is managed from a central place therefore, and it is easy to apply patches or perform upgrades. The Windows software are locally installed in each client though. It is a big issue if you want to make sure that everybody has got the same patches, configuration, and versions of tools. We have used SMS here but it is not of much help because it does not look like it can easily assure that all software installations are in sync. I have proposed IntelliMirror because it sounded to me like it would work just like our UNIX clients mounting software installations from the SAN. The Windows admins here told me that this is not the case though.

    What do you do in your site to manage Windows software?

    Thanks

  315. Use DOS Ghost.exe for Win2K, XP, and Server 2003 by match00 · · Score: 1

    I have easily and successfully used Norton Ghost 2001's ghostpe.exe program (DOS based) for both Win2K and XP. Using the "High" compression setting you get good results, and it will decompress to a new drive in 5-10 minutes. The backup takes about twice as long. You'll need a bootable floppy with CDROM drivers (mscdex.exe) -- the Sony ones were most versatile, but the Ghost DOS tools come with some, too. Then I ran in to the following snag: Windows Server 2003 (Enterprise Edition). I had 5 partitions (created using FDISK prior to installation -- 1 primary, 1 extended with 4 logical in it). Ghostpe.exe wouldn't back it up (NTFS error), and indeed it doesn't support it. So I installed Symantec Ghost 7.5 Corporate edition, and it wouldn't back it up either (have to run v.8, which requires you to license an annual support plan to buy it). Norton Ghost 2003 won't support it, either -- at least officially. However, I had no problem backing the drives up with ghost.exe (the DOS program in the Symantec CE 7.5 tools only install). However, restoring the drives proved problematic -- only the C: drive appeared! The others could simply not be seen through windows. So I tried drive partitioning software (in PartitionMagic 7.0, sometimes the NTFS format would become corrupt, and you have to change it to Fat32 and back again for Windows to recognize the drive in its' virtual memory dialog). However that software wouldn't install (OS not supported), neither would v.8 (not supported) -- though I could spend $550 for their enterprise version, which would support Server 2003. Yeah, right. Veritas Backup Exec has the same problem -- no support for Server 2003 until the latest version, and that only in the enterprise edition for $500. I found one partitioning program (www.v-com.com) which claimed to support the OS, and only cost $40. I bought it, and it recognized the other partitions just fine (through DOS). It unrecoverably mangled one of the drives, though, when I tried the NTFS-FAT32-NTFS thing. However it referred to the Windows built-in "Disk Manager", and I found that via the Computer Management .msc dialog. That was the solution: You had to explicitly tell Windows to "see" those partitions. Once done, it saw them just fine. As such did Symantec 7.5 corp. editions DOS ghost.exe work fine for me -- without added partition software, but with the Windows disk manager. BTW, the build-in backup.exe in Windows backs up files just great -- but only if they aren't on C:. It made exact copies of my Registry, and of my D: drive -- both restored to pristing shape. The C: drive was another matter! It wouldn't backup about 1/3 of the Windows files -- including .exes and such. As such did that utility appear useless to me.

  316. Drive Imaging is a feature for the enterprise by Anonymous Coward · · Score: 0

    and as such it implies that MS has no business there.

  317. hmmm, my mac makes backups by Anonymous Coward · · Score: 0

    I can make a backup, fully functioning and actually can boot from the image, straight fromt he desktop of my mac using the nice new GUI they added to panther, or using a command line in jaguar.
    ok, ok, ok, thats not an answer to a PC guy. All I can say is i have had good luck with ghost but took a lot of playing to get it just right.
    knowmad

  318. V2i from PowerQuest by cottonmouth · · Score: 1

    It's great stuff.

  319. *sigh*.. PLEASE READ by bmajik · · Score: 5, Informative

    Hi.

    I work for Microsoft. i designed an automated deployment system that over 2000 computers at MS used for 24/7 automated testing. (a follow on technology by some of my co-workers has taken this approach to the next step, so only a little of my code is still running out there, but i digress)

    there is nothing crippled about NTFS on XP or otherwise. Imaging works just how you expect it to. we've used Ghost (multiple version) PQDI (multiple versions, including the 16 bit dos version) and some internal-to-MS only stuff even. All of these make and restore images of XP machines perfeclty fine.

    Not only is imaging a windows machine not broken, it is a supported and tested product scenario with its own feature and test teams.

    enter: SYSPREP

    Sysprep is the 100% microsoft supported way of bulk deploying machines and setting them up for imaging. sysprep is fully scriptable as of XP and the same sysprepped image can be restored on hardware of nearly any type. It can automaticly configure the box, set a hostname, join a domain, setup local users/groups, etc etc etc.

    I know this because if it doesn't work, nobody in the world can test visual studio.

    Please look at microsoft.com and read about sysprep. It's your friend.

    Incidentically, before sysprep-XP, when sysprep wasn't quite the cat's meow, you could still image and restore NTFS OSes (even XP, with WPA), even across different hardware. You just had to know what things to change/tweak. (which i found out WITHOUT special MS-only knowledge)

    Sysprep for XP also works great with WPA, letting you seal/reseal an image so that the WPA activation bomb goes away.

    Honestly people, ask slashdot stories should be ASKING, not presuming. because the presumptions are often wrong, and the meat of the "question" is an uninformed bash as opposed to a legitmate request for help or comments...

    --
    My opinions are my own, and do not necessarily represent those of my employer.
    1. Re:*sigh*.. PLEASE READ by Creepy+Crawler · · Score: 1

      Welcome to the Windows' Hater forums, also known as Slashdot.

      I personally have never had any problem with the Image software I use. I use a dd connected to ssh connected to netcat to remotely copy exact images. It works decently for any os... Just encrypting through ssh takes a bit of cpu.

      I knew about sysprep as my old college job, we had to use that since one of the GUID's were the same on 2 computers (really, saw it with my own eyes). Took a little to get used to, but it's a neat utility.

      Past that, the only thing that torks me off about the WINNT line is that they dont default to stable drivers (read reference, basic PIO for HD's, VGA 640x480) instead of bluescreening on different hardware. For me, it's the small supposed-to-be-intuitive problems that windows has.

      --
    2. Re:*sigh*.. PLEASE READ by CrayzyJ · · Score: 1

      "I work for Microsoft."

      You are so not going to make a lot of friends around here saying stuff like that. My suggestion, abandon your id and everything associated with it. There's a band on Penguins tracking your IP right no...
      [NO CARRIER]

      --
      Holy s-, it's Jesus!
    3. Re:*sigh*.. PLEASE READ by pueywei · · Score: 1

      Incidentically, before sysprep-XP, when sysprep wasn't quite the cat's meow, you could still image and restore NTFS OSes (even XP, with WPA), even across different hardware. You just had to know what things to change/tweak. (which i found out WITHOUT special MS-only knowledge)

      Would you mind clueing us in on it?

      Of course, MS-only knowledge is fine, but make sure to check the little "Post Anonymously" box so that MS secret polic ^H^H^H^H^H^H^H^H^H^H^H^H^H security is waylaid.

      michael, we remember you!

  320. Drive Image - use early versions by LandGator · · Score: 2, Interesting

    PowerQuest's DRIVE IMAGE PRO has a bug in later versions, 4 & 5 (AKA DeployCenter). Even though an NT machine was partitioned once (4GB HD) with FDISK and no other partitioning software was used, I still get "Error 128" which self-identfies as being caused by OnTrack or other partitioning software.

    PowerQuest TS was useless, but comp.sys.ibm.pc.hardware.storage led me to salvation. Praise USENET!

    Solution? Use Drive Image 2. Works every time.

    --
    There is nothing wrong with yr Internet. Do not attempt to adjust the picture. We are controlling the transmission - NSA
  321. Hardware test labs by robi2106 · · Score: 1

    At a certain hardware manufacturer where I work, we have a large lab that duplicates errors and runs tests on about 15 machines that have any possible windows OS installed. We do this by DVDs that store images of the installed OS. Any language that MS supports, we have that language in any OS they distribute. We use PQDI with no problems. All the images we have are made with FAT32 due to consistancy problems as well as ease of use.

    I have personally used PQDI at home, also with great success. The only situation PQDI does not seem able to handle is when an OS exists on a RAID.

    jason

  322. Re:Experiences with Ed Norton Ghost by Anonymous Coward · · Score: 0

    I call shenanigans! Ed Norton Ghost was only released this past Sunday.

  323. SSH by Anonymous Coward · · Score: 2, Informative

    OK, I might just be an Anonymous Coward and so I will not get any points but most people do not realise they can do this sort of thing to backup their disk or partition to another machine over nothing more than SSH:

    dd if=/dev/ad0 bs=512k | ssh my.backupserver.com dd of=/home/backups/backup.dd

    And something like this to restore:

    ssh my.backupserver.com dd if=/home/backups/backup.dd bs=512k | dd of=/dev/ad0

    Nothing to it really. No special software required - just use Knoppix or any old LiveCD - and it works better than FTP/NFS for my needs.

    You can also pipe the output of dd through gzip to compress before sending over the wire (if bandwidth or storage space will be a bottleneck).

    Check out:

    http://www.cpqlinux.com/sshcopy.html

    Jamie.

  324. dd if=/dev/hda1 of=backup.img by rips123 · · Score: 1

    That command has worked perfectly for me time after time. You may also need to back up the boot sector (I think its something like dd if=/dev/hda of=bootsector.img bs=512 count=1). You can boot a linux kernel via CD and use images mounted from remote shares too!

  325. Knoppix by Qbertino · · Score: 2, Informative

    Knoppix has at least 3 tools that come to mind that can easyly be used for the purpose you need and have never failed me.
    And it's free and can help you do other rescue and recovery stuff as well.
    In case you don't know: Knoppix is the leading Live CD Linux distribution. A perfect chance to test it as well.

    --
    We suffer more in our imagination than in reality. - Seneca
  326. Author doesn't know jack about Windows. by banzai51 · · Score: 1
    Not only does Ghost work flawlessly once you use the appropriate NTFS switches, you can take a backup of every file on the system. Usually you have to pay extra to the vendor for this feature, but I have restored entire servers from tape.

    This is open source FUD at it's finest.

  327. dd and knoppix-Rescue me. by Anonymous Coward · · Score: 0
    You know, serendipity has struck. I need to basically move the entire contents(1) of an IBM 60GB Deskstar off somewere (another machine, CD's, whatever). The disk in question (hdc )has several XFS partions and swap.
    • /dev/hdc1 / xfs defaults 1 1
    • /dev/hdb5 /mnt/Linux_tmp xfs defaults 1 2

      /dev/hdc8 /usr xfs defaults 1 2

      /dev/hdc7 /var xfs defaults 1 2

      /dev/hdc5 swap swap defaults 0 0

      /dev/hdc6 swap swap defaults 0 0

    The hdb5 is 20GB. I assume that I can while under Mandrake 9.2 image and compress to that partition. Reformat (and fix) the deskstar. Then boot to Knoppix and uncompress and image back to the entire disk (swap and all). Is there any step by step (the data is important) to this whole process? (1) I'm only using about 10GB
  328. Some cool versions of dd... by Ayanami+Rei · · Score: 2, Informative

    let you send it SIGUSR1 and it will report it's progress (namely the GNU fileutils version).
    You could write a wrapper script around it with a cool progress bar if you were smart.

    Try this one day:

    dd if=/dev/zero of=/dev/null &
    kill -USR1 %1
    #wait a little
    kill -USR1 %1
    #etc...

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
    1. Re:Some cool versions of dd... by Anonymous Coward · · Score: 0

      Thanks for the tip :)

  329. Use SYSPREP then follow the procedure by The_Myth · · Score: 2, Informative

    In the System Admin tools for Windows there is a little utility called SYSPREP that prepares a drive image for the imaging process. The reason that most images fail is due to SID's in teh wnidows architecture. SYSPREP removes these allowing them to be recreated on the machines first boot. Programs like GHOST then have no problems at all.

    We use GHOST and Microsoft's SYSPREP to roll out the images on our 300 desktops as needed.

    --
    The MyTh - I am a figment of the Imagination - [Im Probably even not here]
  330. Reinstall with what now? by Drakonite · · Score: 1

    So... How the hell am I supposed to reinstall windows on the PCs I have that came with windows pre-installed, but did not contain the windows setup CDs?

    --
    Shoot Pixels, Not People!
  331. NOT FUNNY - TRUE - Give him his due karma by i_r_sensitive · · Score: 1
    Really, dd is just about as good a utility as you are going to find.

    I've used lots of them, and not one of them performs any more reliably than dd. Throw parted into the equation and you can re-size yon partition to fit a smaller or larger drive as necessary.

    Hell, the programs are stable, dd very much so. And doesn't require anything more than a linux system with open space for the correct drive type. Works seemlessly on any drive supported by the kernel.

    Lastly, you can get the dd source code, so you can modify the behaviour to obtain specific results. Try that with your pay-to-pray disk imaging software.

    And M$ says OSS isn't better...
    --
    "Talk minus action equals nothing" - Joey Shithead, D.O.A.
    "Talk minus action equals /." -
  332. Spend an extra $10 and get v2i protector. by Ayanami+Rei · · Score: 1

    Biggest bonus: incremental hot backups of even your system drive.

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
  333. gzip -1 by Ayanami+Rei · · Score: 1

    or it may actually slow down your machine (CPU bound)

    Also try lzo.

    --
    THIS THING CAN TURN ON A DIME, MACROSSZERO STYLE ALSO FUCK BETA, ~NYORON
  334. Can dd help? by timdaly · · Score: 1

    If you can stop the system you could dual boot,
    start linux and use dd to copy the drive. That
    might also work if you were to run the windows
    system in a virtual machine under linux.

  335. Ghost by merryworks4u · · Score: 1

    I have been using Ghost for around five years now and the only time it fails is when the hard drive is bad. You need to ensure you prep the W2k or WXP system for imaging though. We use sysprep which you can get from Microsoft.

    --
    Michael Merry
    Merryworks
  336. How to duplicate a NTFS drive... by GESUS · · Score: 1

    What you really need is a RAID 1 interface. Place the original disk on channel 1 and your blank disk on channel 2. Duplicate disk in the interface BIOS function or in OS as you continue to work.

  337. The average user has no way to back up the OS... by Futurepower(R) · · Score: 1


    There certainly is a problem here, but I don't know what it is. Microsoft's behavior is outrageous. The average user has no way to back up the OS to another partition on the drive or to CD.

    What is DR?

    There have been numerous people complaining intensely. However, I don't see any error in what I've said. You have talked about RIS, but I understand that is only for people who are connected to a domain. Also, I seem to remember that RIS is not available to everyone. And, there is no provision for making a backup, I understand. For example, there is no way to copy everything to CD.

  338. PowerQuest Drive Image by DFortress · · Score: 1

    I had the task of cloning over 200 machines with windows xp recently. I setup a machine the way I liked it, ran microsoft's sysprep utility and created an image file with powerquest drive image. I saved the image to a network drive.

    I created a boot disk with drive image to map a network drive that contained the images and loaded driveImage.

    After about 10-20min of transfer time the machine would be finished and I just had to boot it up, adjust some settings(about 10min), and It was done and ready to use, with all the applications working as expected.

  339. Drive Image Pro by sjlutz · · Score: 1

    I just recently deployed 15 XP boxes. Took me 2 hours to set them all up, after first installing XP on one of them. I then took the original's hard drive out, and used Drive Image Pro to copy to each new computer. I speed things up by using the first few copies as masters for further copies, so I wasn't waiting on just one master. I could have burned a CD with the image on it, but that required copying the file to a computer with a CD burner, then burning the image. The only bummer was that I then had to register the new machines individually with their CD keys so that they were fully functional. But since I had to boot up OFF net to change the name of the machine anyway, it wasn't that big of a deal.

  340. Please tell me how to do a full backup... by Futurepower(R) · · Score: 1


    Please tell me how to do a full backup using software that comes with the retail Windows XP CD. It's impossible, right? If it is impossible, that's outrageous. People need to be able to make full working copies of their OS and installed programs. That's everyone, not just people who have special software.

    If you have a problem with Ghost, you go to Symantec. That breaks Microsoft's chain of responsibility. Therefore, Microsoft does not provide a Microsoft-supported way to do a full hard disk backup. There is a link in the chain that is not supported by Microsoft. And, as many people have said in this story, people have a LOT of problems with Ghost.

    With Windows 98, XCopy32.EXE could make a full hard disk backup. Yes, I know it would sometimes re-assign short file names. However, those could be re-named by hand.

    How do I get a copy of RIS? Will RIS make a CD backup? If RIS works, why do so many people recommend Ghost, or all the others? I seem to remember reviewing RIS and discovering it would not do what is needed.

    1. Re:Please tell me how to do a full backup... by TheRealSlimShady · · Score: 1
      Please tell me how to do a full backup using software that comes with the retail Windows XP CD. It's impossible, right? If it is impossible, that's outrageous

      It's not impossible. Start...Programs..Accessories...System Tools...Backup. Backup the file system & the System State. That is a FULL system backup, that allows you to restore THAT SYSTEM in the event of a failure. It is not intended to allow you to restore that backup to multiple machines.

      RIS comes with Windows 2000 Server, it doesn't make a full CD backup, it makes a full IMAGE and allows you to deploy that image to multiple machines.

      You started this article asking about imaging software, now you're talking about backups. Which is it? Backups or images? If you want a full backup, use Windows Backup. If you want an image, use RIS or Ghost.

  341. Acronis by cb8100 · · Score: 1

    The only problem I've ever had with Acronis has been copying a FAT16 OS/2 partition. I kept getting "drive has bad clusters" from Acronis and it took some massaging to get it to shut up and copy. I've used Acronis to clone several Windows (98, 2000, and XP) and Mandrake Linux drives and partitions without a failure.

    --
    My lack of God, it's Trotsky!
  342. Re:no need for partimage anymore by Anonymous Coward · · Score: 0

    I've recently discovered ntfsclone from linux-ntfs.sourceforge.net. I've tested it. Works great. Doesn't copy null data and can be piped through ssh. It rocks..

    "ntfsclone will efficiently clone (copy, save, backup, restore) an NTFS filesystem to a sparse file, device (partition) or standard output. It works at disk sector level and copies only the used data. Unused disk space becomes zero (cloning to sparse file), left unchanged (cloning to a disk/partition) or filled with zeros (cloning to standard output)."

    -Johnbot

  343. Re:The average user has no way to back up the OS.. by TheRealSlimShady · · Score: 1
    There certainly is a problem here, but I don't know what it is. Microsoft's behavior is outrageous. The average user has no way to back up the OS to another partition on the drive or to CD.

    Are you being deliberately obtuse? You're making an issue out of something that isn't even an issue. Start...All Programs...Accessories...System Tools...Backup. Use the backup utility to backup all your data to tape or to another partition (I don't think you can go directly to CD - but in this case you to disk then to CD).

    What is DR?

    Disaster Recovery. i.e. your system dies for some reason, be it hardware failure or catastrophic software failure.

  344. Norton Ghost..great imaging software by Anonymous Coward · · Score: 0

    I work in a school district that manages about 2,000 to 3,000 computers. All of these are imaged using Norton's Ghost imaging system. I have never found a program so complex yet easily adjustable and configurable..i've been able to do batches of 60 machines at a time with this program. While it may be good for large scale network-type disk imaging for backup, I have also seen it work wonders for backing up one PC's hard drive.

  345. speed up the process? by overkil6 · · Score: 1

    I work for a small firm that does exactly this: Image identical IBMs with Ghost and use the sysprep tool to strip the SID. Where I find the bottle neck in deploying corporate PCs is in configuring an IP, renaming the PC, and adding to the domain. Yes, only 2 or 3 reboots but still it is time consuming. Anyone know of any work arounds? These PCs are not imaged over the network using any kind of RIS server, but rather off-site and then brought to the end users desk. Takes about 30-45 minutes per PC as SMS is also installed and configured and other misc. apps...

  346. Make sure to gzip it by yerricde · · Score: 1
    1. From Windows on the source side, erase all unused space on the drive. For example, use `dd' compiled for Cygwin to copy /dev/zero to a normal file until it fails from disk full.
    2. From Knoppix on the destination side, pipe netcat through gunzip to a partition.
    3. From Knoppix on the source side, pipe a partition through 'gzip -1' to netcat.

    Use of gzip will 1. provide another layer of error detection (no, link-level and TCP-level error detection are often not enough) and 2. not waste time sending repetitive data such as zeroed-out tracks.

    --
    Will I retire or break 10K?
  347. The 1 way to make a backup is to image the drive. by Futurepower(R) · · Score: 1


    The backup program you are mentioning is NTBackup.exe. NTBackup does NOT make a full hard disk backup. It does not back up all the information necessary to making a bootable copy. This has been verified by Microsoft reps many times. So, you could do a restore and find that the restored copy was useless.

    As you say, RIS does not make backups, either. It requires a second, almost identical computer. And RIS comes only with software that costs $2,200, if I remember correctly.

    The only way to make a backup is to image the drive. That's how we came to be discussing imaging. This can ONLY be done with third-party software, for which, as you say, Microsoft is not responsible. Therefore, Microsoft provides no Microsoft-supported way to make fully functional full hard disk OS backups, as Microsoft readily admits. And THAT is outrageous, destructive, and self-destructive.

  348. CASPER XP! by iamhassi · · Score: 1
    I can't say it enough: Casper XP is, by far, the best drive imaging software I've ever used for Windows XP.

    I've cloned drives on one PC, brought it to another and it works great. Clones within XP, so no restarting. The new version even allows scheduling, so I can now clone XP to a spare drive on a nightly basis. Drive to drive clone speeds are fast, about 30gigs per hour.

    --
    my karma will be here long after I'm gone
  349. NTBackup is deliberately crippled. by Futurepower(R) · · Score: 1


    Now I understand the problem. NTBackup is deliberately crippled. It does NOT make fully functional copies of the OS and installed programs. That's the whole issue, and the reason for this Ask Slashdot.

    1. Re:NTBackup is deliberately crippled. by TheRealSlimShady · · Score: 1

      No, it stores them in a backup archive - much like tar does on Unix based systems. NTBackup can still be used to restore this backup archive and get back to the exact state you were at the time of the backup. I'm not sure why you're having such a difficult time understanding this.

    2. Re:NTBackup is deliberately crippled. by Slashamatic · · Score: 1
      In former times, all systems came with a standalone backup. This was a special tuned down version of the OS with some utilities for testing media, formatting and the backup/restore of *everything*. Standalone backup ran much like Knoppix, totally from R/O media and with a small memory disk for the R/W stuff. It could work either with backup sets (savesets) like a tar file or with disk images.

      Anyway, twenty years ago, you expected this as standard with an operating system. NTBackup will not make a copy of my system disk that I can restore. Not unless I install a second NT installation to use for backup/restore. NTBackup only works with savesets and can not be used for imaging.

  350. Have you tried a hardware solution? by KC7GR · · Score: 1

    I've faced this issue many times. I finally gave up and bought one of these when they were on sale at half price (CSC was having a moving sale at the time).

    This little hardware wonder doesn't care WHAT is on the hard drive, or what structure it is. You can have anything on the drive from MS-DOS 2.0 to OS/2 to Linux to BSD to OS/9 RTOS... well, you get the idea. It will duplicate it to another drive, in its entirety, as bootable as the original.

    Granted, it can't work over the network. However, for applications where you need to do an absolute binary image of any given drive, they can't be beat. There are larger models available for imaging a whole stack of drives from one master.

    --

    Bruce Lane, KC7GR,

    Blue Feather Technologies

  351. Call Microsoft by Unregistered · · Score: 1

    Tell them that you will switch to linux if they don't provide you with a backup methoid that works. Then you should get some special CDs that will let you image drives. Just don't violate any liscenses becasue you will be on their radar now.

  352. not reading the question by kayen_telva · · Score: 0, Troll

    the poster says, and rightly so, that a LIVE, RUNNING system cannot be ghosted/imaged/etc. Then everybody goes apeshit and says just use ghost/dd/whatever. so now, answer his question except you can't reboot the machine.

  353. Re:The 1 way to make a backup is to image the driv by TheRealSlimShady · · Score: 1
    That's not how NTBackup works. It backs up all the information necessary to restore your system to the EXACT state it was at the time of the backup. In order to restore it, you must first install the OS (and only the OS) so that it can read the tape/file. No, it's not a bootable copy - but then it's never been intended to be (and NTBackup has been around for a long time - circa 1994). The supported way to recover your system from backup it to reinstall the base OS, then restore the file system & system state from the backup media, overwriting the operating system you are using at the time. This is how you recover a Windows NT based system - it's been done many times before. This is how you back up your system. Backups aren't bootable in the Windows environment, but are fully recoverable.

    You just need to get your head around the Windows way of doing it. You can still make full backups of the system that are sufficient to restore to the exact state at the time of backup. Regardless of what your mythical MS staff might say.

  354. Ghost? by Arsinio · · Score: 1

    Norton Ghost or Novel Zenworks has always worked for me

  355. Hardware solution: cheap, way fast, reliable. by Bushcat · · Score: 1
    After upgrading all the HDs on a small network using software tools (it took a long time and a couple of NT systems wouldn't migrate), I bought this, a hardware unit. It works with a computer or stand-alone. Either plug its USB2 cable into a Windows PC, or plug the donor and recipient drives into each side, in which case it's OS-agnostic, of course. It costs about $150 which is way cheaper than other products I've seen.

    Using direct disk-to-disk cloning, it does 120GB in about 20 minutes. Full range of copy/cloning products here.

    When not being used to upgrade drives, I use it as a simple disaster recovery backup: plug into an idle computer and dump the drive onto any cheap drive I have laying around.

    The cloning software seems to be Easy Ghost in ROM, but I've not seen any problems after some 15 cloned drives.

    Its benefits for me have been speed and reliability. The downside is that it doesn't seem to be available in the US but there are surely similar solutions.

    1. Re:Hardware solution: cheap, way fast, reliable. by Bushcat · · Score: 1

      US OEM version available at Diskology.

  356. Re:The 1 way to make a backup is to image the driv by g0hare · · Score: 1

    hey - howcum you're on slashdot if you actually know how to use NTBACKUP and the difference between sysprep & riprep? SHouldn't you b ebanned? :-)

    --
    Vote Quimby!
  357. I wish we could get sysprep... :( by ddent · · Score: 3, Informative

    I help admin a largish Win98 installation... we have no intention of going any further on the upgrade treadmill. It has been very frustrating -- there seems to be a windows 98 sysprep tool out there, but it isn't available anymore, as they want people using 2000/XP. We of course only realized how useful the tool would be _after_ they decided to stop distributing it... we do without, but it would save hours of work.

    1. Re:I wish we could get sysprep... :( by Merlinium · · Score: 1

      If you want the sysprep tool I can send you the floppy Image. Its for unattended install of Windows 98

      --
      If firefighters fight fire and crime fighters fight crime, what do Freedom fighters fight?
    2. Re:I wish we could get sysprep... :( by ddent · · Score: 1

      Wow... that would be very very nice of you. :)

      My email address can be found on ddent.net.

    3. Re:I wish we could get sysprep... :( by Merlinium · · Score: 1

      Sorry I do not know what ddent.net is, so I just uploaded to my clan message board, here is the link.

      http://www.damitclan.com/yabb/index.php?board=6;bo ard=6;action=display;threadid=3044;start=

      Good luck, I have used this many times in the past, now though I work almost exclusively with WinXP. Once you have created your Disk, you should edit the oeminfo file which is what gets placed in the My Computer properties section.

      --
      If firefighters fight fire and crime fighters fight crime, what do Freedom fighters fight?
    4. Re:I wish we could get sysprep... :( by ddent · · Score: 1

      You are awesome!

      Thanks :)

  358. Just use a duplicator by Anonymous Coward · · Score: 0

    Just use a hard drive duplicator! It copies the partition from one drive to another.

  359. A few things I've tried: by nuckfuts · · Score: 1

    I've wrestled with drive imaging/cloning issue many times on Unix, Linux, BSD and Windows platforms. A few observations:

    A lot of people recommend dd but in my experience dd alone has has three drawbacks:

    1) It is ridiculously slow. Perhaps due to using character devices instead of buffered?

    2) It is of no use for resizing partitions when copying to a larger drive.

    3) Making a drive bootable (correctly copying boot sectors) with dd is tricky.

    A lot of people recommend Norton Ghost. I used Ghost to backup my notebook to a network drive until the day I tried to restore the image. Ghost insisted that my hard drive was too small to restore the image onto - the same hard drive that had been imaged in the first place. I never trusted Ghost again after that.

    I've had fairly good success with PowerQuest products. Partition Magic is an indispensable tool for manipulating partitions, and Drive Image in conjunction with a network boot floppy (or CD) is a nice tool for copying a partition image to a network drive. The biggest problem with PowerQuest products is that they are artificially crippled to not work with Server editions of Windows.

    BootIt NG is very nice and inexpensive but has a few options that could bite you if you're not careful. I was able to use it to clone a Windows 2000 Server installation onto a new box (with NTFS resizing), but unfortunately the resulting system would blue screen when booting despite very little difference in hardware. I attribute this to pickiness with Windows rather than a problem with BootIt NG. (So much for Plug 'N Play).

    There are also hardware solutions for copying/cloning drives. I have had very good experiences with such devices. They are extremely fast and can do dynamic resizing but tend to be a bit pricey.

  360. Creating Bootable Mirror copies by Anonymous Coward · · Score: 0

    We do this frequently with great results using Carbon Copy Cloner by Bombich Software on our G5's and G4's. Oh yeah, we use Mac. -)

  361. You don't need any extra software by TheEvilOverlord · · Score: 1

    The last time someone asked me to do this for them I got the old drive with the Window2000 system on and the new clean drive and dumped them both in a exisiting window2000 system.

    I formatted the new drive and copied the contents of the old drive to the new one, just a select all and a drag and drop.

    I then put the new drive in the new machine, booted the windows CD and ran the repair util, rebooted and the system had a fit about the new hardware, updated the drivers and all was happy.

    Simple... forget your expensive software.

  362. for me too-repartition by Anonymous Coward · · Score: 0

    There's another downside. You have to repartion the destination drive, before you can write the information contained in the partition back. Kind of having to redraw the lines back after repaving a road.

  363. Funny, people complain that MS is wrong to ship... by Assmasher · · Score: 0

    ...a browser because it stifles competition, now they expect MS to ship a copy of 'Ghost' with the OS for free as well.

    There are plenty of ways to EXACTLY copy your HDD with minimal effort. I suggest you learn one and stop proving Lincoln's axiom that keeping your mouth shut and being thought a fool is better than opening it and removing all doubt...

    --
    Loading...
  364. G4u and Ghost for different tasks... by benmhall · · Score: 1

    We use Symantec Ghost at work for handling labs of systems. For doing quick, one-off images we use G4u. I have been finding that we are using G4u more often than ghost these days because it is far less invasive, though possibly not as easy to use.

    If you're just imaging one machine to maybe five systems, g4u is great. If you want to have the systems automatically rename themselves, or be able to remotely initiate the procedure, Ghost is a far better bet. It certainly has its share of quirks, but it is by far the best tool that I have seen for imaging (and managing) a lot of Windows machines.

    Here's a few Ghost tips for you:

    1) DO NOT USE BROADCOM CARDS!! The NDIS driver they (Broadcom) supply is garbage. For a year we had random dropouts when imaging, we replaced the NICs with el-cheapo $10 RTL-8139s and all is well. We thought it was the switches, we tried the network cales, in the end it was the on-board NICs.. . If you go poking around on Symantec's site you'll eventually find that they suggest people not use Broadcom cards. Believe it.

    2) Be very careful using Ghost to back up important systems (especially Domain Controllers.) Ghost by default will try to remove a system from a domain before it images it. This can have very nasty consequences. ;-)

    And a few tips about G4u:

    1) Don't expect whiz-bang features. G4u is exceedingly good at what it does, and is very poor at doing anything else. It takes perfect images of drives. That is all.

    2) Zero-fill your HD before you image it. They explain how to do this on the website. Be sure to not skip this step, 2GB of data can be 20GB f you don't make sure the drive is easily compressible beforehand. G4u doesn't know or care about filesystems or partitions, it doesn't care about empty space.

  365. The Solution! by isepic · · Score: 1

    Try Cristie - it will backup the OS "on the fly".

    Roxio also had one, I forgot what its called, but it worked fine for me, same with Ghost 6 and above. No problems, buf of course, it required down time. With Cristie it doesn't.

    Link---> http://www.cristie.co.uk/cbmr.htm

  366. Re:The 1 way to make a backup is to image the driv by lythotype · · Score: 1

    I just have to comment on your "You just need to get your head around the Windows way of doing it" comment.

    We have a AD controller machine that controls a very simple network at my work.

    About a month ago we had a total raid failure and lost the array. Luckily (for me at least) we use ArcSever2000 and backup our system to DDS (or DSS? can't remember) tapes.

    After the AD failure here are the steps we had to take to get the system up and working again.

    1) Get new hard drives
    2) Install a fresh copy of Windows 2000 Server
    3) Install 3rd party drivers for our tape drive
    4) Install ArcServer2000
    5) Restore from the previous nights tape

    If it were only as simple as those 5 steps. Mind you that the backup was being restored onto the exact same machine, other than two new hard drives to replace the ones that had failed. After the restore we had problems with all the accounts that were restored from tape. The replication directory were the login script is kept is still causing an error event. It was anything but smooth. Sometime soon we are just going to wipe it and start all over again.

    Now wouldn't it have been easier with these steps?

    1) Get new hard drives
    2) Bootup favorite imaging software
    3) Restore image of last nights backup from CD

    When Windows 2000 arrives out of the box there is no software capable of that type of backup/restore. Why should I have to reinstall the OS when I have a perfectly good copy that I could make an image of to use later? With this type of backup/restore method, I don't even need to dig out my Windows 2000 CD. I can have the system back up and running in a third the time than the 5 step method!

    Another thing, does ntbackup have all the functionality of a true backup system? Can it have different backup scripts of every other Sunday? What about holiday exceptions? Can it backup machines on the network with a client installed? What about type rotation? Can it keep a session database of different backup tapes that I can access without loading the set? I have found the ntbackup a very poor utility for which it is named.

  367. Backing Up Windows by HereAllNight · · Score: 1

    I ran across this when dealing with out of control profiles in a large Citrix farm. My predecessor had written a script that used xcopy and deltree from Windows 95, or something like that. It didn't work.

    I wasn't about to wear out my mouse hand copying 3000+ profiles across a couple dozen machines, using the only Microsoft gives us, so I tried a different environment: Cygwin.

    The zip program in the Cygwin environment copies everything, given the right switches. Although I haven't tried, I bet that tar, cpio etc. would work as well.

    One interesting thing that I found out about the profile copier in Windows is that on one hand it does copy the "files that aren't really files", but on the other, it fails to copy any of your Outlook data. Go figure.

  368. Cliff, you've been trolled! by Keith+Russell · · Score: 1

    Check out FuturePower's website, in particular the "essay" Windows XP Shows the Direction Microsoft is Going. It's a mind-boggling barrage of computer science naivete, unqualified assertions and anecdotes, and flat-out lies. My personal favorite parts are his complaints that Windows is less responsive when virtual memory is entirely consumed, and a laundry list of OS-level apps that attempt to phone home to Microsoft. Or so he claims, based on the fact that they set off ZoneAlarm by daring to make an outgoing TCP connection. Hasn't this guy ever heard of a local area network? At least 2/3 of the "apps" (he doesn't cite .exe names) poll the local workgroup/domain, either for file/print shares, or computers the admin tool in question may be able to administer remotely with the proper credentials.

    In fact, I think he composed this question by cut-n-pasting a section of that screed, and tacking on a "whaddya use?" at the end. (Scroll down to the subhead entitled "Backup Problems: Windows XP cannot copy some of its own files." Sound familiar?)

    It's a shame such a steaming pile of FUD is available to the internet at large. It single-handedly sets open source evangelism back ten years.

    --
    This sig intentionally left blank.
  369. Re:The 1 way to make a backup is to image the driv by TheRealSlimShady · · Score: 1
    Arcserve has a DR add on product which allows you to skip the installing the OS section and boot from (I believe) a Windows 2000 Server CD and restore direct form the tape. This is your three step restore as you've noted, and yes, it is much easier and faster. However, Windows doesn't ship with that functionality - Microsoft always seems to have maintained that they ship bare bones backup utils, and leave the advanced stuff to people who are good at writing backup software.

    Now, to answer your questions.
    does ntbackup have all the functionality of a true backup system?

    No it doesn't, but it isn't intended to. With it you can back up and restore your system to the state it was at the point of the backup. If you want to get clever with it, you're limited.

    Can it have different backup scripts of every other Sunday?

    Yes, just depends on what you schedule it to so - it just uses the Windows task scheduler to run it's jobs. It's also scripted from the command line using batch scripts, so you can also add some wrappers around it

    What about holiday exceptions?

    No - or at least it depends on the schedule.

    Can it backup machines on the network with a client installed?

    It can backup files, but doesn't do system state. It's pretty crude for doing over the network backups - it can be done, but I wouldn't really want to restore one (unless it's just data, no OS stuff).

    What about type rotation? Can it keep a session database of different backup tapes that I can access without loading the set?

    It has some pretty basic tape management and rotation functions, certainly not on a par with ArcServe or Backup Exec.

    I have found the ntbackup a very poor utility for which it is named.

    It's absolutely fine for very small sites, but as soon as you want something that's manageable, it's really better to go for a Backup Exec or ArcServe

  370. Mirrors by Slashamatic · · Score: 1
    On 2K you can easily mirror a logical partition to another which is the same or larger. After mirroring is complete (extremely important), break the mirror and what was C: is now somewhere else, in its entirity.

    If this works on XP, (it depends on the disk management tools provided) there may still be activation issues. What I haven't done is to try and boot the split mirror.

  371. Re:Become a switcher by Anonymous Coward · · Score: 0

    And the kernel for different CPU's. And hardware drivers, such as the drivers for your external firewire drive. And drivers for your network card if it's not already in the image. And booting to an external device, not supported by older BIOS's. And additional drives that happen to be selected first for booting by the BIOS.

    It's useful in some situations, but not that many.

  372. XP is your problem...try 2k... by FatSean · · Score: 1

    I refuse to buy into XP and activation...I like stealing from Microsoft. In 2k, rightclick on "My Network Places" hit 'properties' for TCP/IP and pick your IP address. What do you do with your desktop that you need to script? I use mine for browsing,reading mail, burning CDs, playing games and running eclipse. Hey if it works for you, your god bless, but for me Linux as a desktop is just unneeded complexity.

    --
    Blar.
    1. Re:XP is your problem...try 2k... by Jennifer+E.+Elaan · · Score: 1
      Notice that I said that Linux is a workstation OS, not a desktop OS. Your list of tasks is far shorter than mine. I do heavy development on everything from kernel-level and embedded systems to web applications to hardware designs. I also run quite a bit of server software on the other machines around here.

      In your case, as a desktop user, or perhaps even a desktop poweruser, Windows is a pretty logical choice. Engineers like myself need something more. It really is that simple.

      It's like notepad versus Vim. Notepad is way easier to use, you can pretty much just start it up and start typing. It takes minutes to learn. Vim takes *YEARS* of practice to fully master the subtleties of it, but no notepad user can edit text as rapidly as I can. If you don't do much more than write an occasional post-it to yourself, or a quick letter or something, notepad or its ilk is a better fit for what you do. If you do heavy editing of syntactic text files (like sourcecode or HDL), where saving a couple keystrokes can really matter, Vim is well worth the time required to learn.

  373. Ah...I do such things on servers... by FatSean · · Score: 1

    I don't build kernels, my employer builds them for me. But if I were to perform CPU-bound tasks I would do them on the multiprocessor machines in the server room. I suppose if your budget is such that you must handle such things on consumer grade hardware, linux is indeed the best choice and you chose wisely. As my workload has recently shifted towards Java, the context-sensitive auto-complete features of Eclipse-based IDEs completely blows away anything vi can do...I can hear the Emacs crowd rising up as I type...

    --
    Blar.
    1. Re:Ah...I do such things on servers... by Jennifer+E.+Elaan · · Score: 1
      Most of what I mentioned is barely CPU bound, although even my home machine is multiprocessor. It's not so much a matter of budget as it is of flexibility. Doing development with non-standard environments (say, developing for a system with 3 different types of CPU's and an FPGA (which probably contains one of the CPU's)) requires a fair bit of scripting.

      As for context-sensitive autocomplete, there is a script or two do do just that in Vim (notice I didn't say vi, but Vim). Vim has plenty of other nice things, like syntax coloring, folding, autoindenting, and all the things you would expect in a programmer's editor, with all the speed of the vi interface.

  374. Easy, fool proof solution .... by Bigev- · · Score: 2, Informative

    Here we maintain nearly 400 desktops. Albit not the largest array of machines - however, our solution works quite well.

    The following piece of software by Phoenix is my tool of choice. Plus it has the added bonus of randomly incrementing the SID that the microsoft document speaks of in XP and W2k PCs.

    I build a base system - image it - then use that image on whichever machine has equivilant hardware. In the middle of imaging 100 identical PC's with XP Pro currently. Full SID incrementation - never had an issue.

    I just boot the PC from a floppy in my test room (there is a smarter way to do this however I havent had time to implement it) and start the image. I can do as many PC's at a time as I am prepared to buy licenses.

    Big deal it ain't free - it has saved us alot of stress.

  375. backup and restore to different disk, bigger size? by Anonymous Coward · · Score: 0

    dd is fine if you keep the same size disk but with continually dropping disk prices, I usually want to restore to a disk that's larger than the original.

    "dd" isn't a great option then.

    Tried partion magic, but it seemed like the current version never worked on my system (always the next version up had the features I needed for $50 more.

    Seemed like such a rip for how often I needed it.

    Doesn't the MS activation get unhappy with the DISK serial number changing, (assuming you are a peon and don't have a corp license).

  376. Re:Microsoft does NOT support the disk imaging too by Anonymous Coward · · Score: 0

    Well obviously you ppl haven't done much research into sysprep, it took me 2 weeks to get the kinks and gears out of sysprep but i assure it does work, the most important things is to read sysprep documentation that came with windows 2000, because it is more versed. Please read the section about other ide controllers because it is vital to windows xp functioning correctly. I have syspreped 2 other systems perfectly under a domain based on samba.

  377. sysprep.exe by chrismg2003 · · Score: 1

    the article he posted suggested using sysprep.exe and even said microsoft would provide support for it?

    am I missreading the article or is this a case where the poster did not read the article himself?

    --

    Red Hat is for people who hate Windows, FreeBSD is for people who love Unix.

    www.putertech.net

  378. Why the parent is funny by clubin · · Score: 1

    The parent post is rated as funny because it is both insightful and funny. As happens with most posts of that nature, the funny moderations just happened to overpower the insightful ones.

    To those who simply can't see the funny part, the bit about encryption was supposed to be a joke. Encryption is supposed to be a transformation performed upon some input data. Rather obviously, simply overwriting the alleged input data with pseudo-random data is not encryption (not in the traditional sense, at least), since the alleged input is actually completely ignored and has no bearing on the output. /deb/hdb1 won't be encrypted; it will just look like it was.

  379. Re:Agreed by Anonymous Coward · · Score: 0

    why on earth is this scored -1?

  380. Sysprep only prepares Windows for imaging. by Futurepower(R) · · Score: 1


    It's weird. During discussions of backups and disk imaging, people become really involved talking about Sysprep, when it has nothing to do with disk imaging. It only prepares a system for disk imaging.

    Thanks for the advice, I will read the Windows 2000 sysprep docs.

  381. For numerous reasons, RIS is not a backup method: by Futurepower(R) · · Score: 1


    More about RIS, from a Microsoft technical support representative, whom I asked today. For numerous reasons, RIS is not a backup method that is universally useful, to say the least:

    RIS is a service of Windows 2000 Server. To install it, you may refer to the following articles:

    298750 HOW TO: Set Up and Configure Remote Installation Services in Windows 2000
    http://support.microsoft.com/?id=298750

    301180 HOW TO: Add Components and Programs to Your Computer in Windows 2000
    http://support.microsoft.com/?id=301180

    You can use Remote Installation Services (RIS) for Windows 2000 to install a local copy of the operating system to other computers from remote locations. You can start up your computer, contact a Dynamic Host Configuration Protocol (DHCP) server for an Internet Protocol (IP) address, and then contact a boot server to install the operating system.

    RIS requires several other services. These services can be installed on individual servers, or all of these services can be installed on a single server. The type of installation depends upon your network design:

    - DNS server: RIS relies on DNS for locating the directory service and client computer accounts. You can use any Windows 2000 Active Directory service-compliant DNS server, or you can use the DNS server that is provided with Windows 2000 Server.

    - Dynamic Host Configuration Protocol (DHCP) server: RIS requires an active DHCP server on the network. The remote boot-enabled clients receive an IP address from the DHCP server before they contact RIS.

    - Active Directory: RIS relies on Windows 2000 Active Directory for locating existing clients as well as existing RIS servers. RIS must be installed on a Windows 2000-based server that has access to Active Directory, for example, a domain controller or a server that is a member of a domain with access to Active Directory.

    For more information on deploy Windows XP from Windows 2000 RIS server, please refer to the following resources:

    304314 How to Deploy Windows XP Images from Windows 2000 RIS Servers
    http://support.microsoft.com/?id=304314

    313069 Update for the Riprep Tool
    http://support.microsoft.com/?id=313069

    308508 Unable to Create Windows 2000 Server Image on RIS Server
    http://support.microsoft.com/?id=308508

    http://www.microsoft.com/technet/treeview/default. asp?url=/technet/prodtechn ol/winxppro/reskit/prbc_cai_byil.asp

    Sincerely,
    Jack Wang, MCSE 2000, MCSA, MCDBA, MCSD
    Microsoft Partner Support

  382. Gotta warn you. by Matrix2110 · · Score: 1

    This may be slightly off-topic but I was trying to resize my little brothers hardrive using XP's utilitys and ran into this annoying fact.

    Windows XP will not allow you to resize the boot partition using Microsofts software. I was stunned. How can all of these alternitives exist and the monolithic empire that Gates built refuses to acknowledge the problem while secretly sliding out possible fixes to vendors such as Semantec who are now employing Microsoft's tactics. DRM, never uninstall. (Of course I recently caught Novel installing much more on a windows box than they take away with an uninstall. Very tricky registry editing involved since Microsoft does support the protocol)

    If you are using any Symantec software, I suggest you stop and re-evalute any and all alternative solutions.

    In otherwords: Run away!

    Get rid of it. I cannot explain in this forum how many, many, times I have had to fix PC's that have been screwed up by Symantec software.

    1. Re:Gotta warn you. by Matrix2110 · · Score: 1

      In case you did not notice, I rank Symantec software right up there with Gator. (Er, the software formerly known as Gator.)

      MHO

  383. Multicast and switches by Anonymous Coward · · Score: 0

    On HP swithes, enable IGMP (in the menu: 3,5,3).
    On cisco I think you'd enable CGMP.

    Peder

  384. FUD FUD FUD by jamie(really) · · Score: 2, Informative
    Shame on you. It is totally possible to backup a windows XP box and restore it later. You can use many disc copying software tools or some hardware, such as ImageMasster. I have used Norton Ghost, PowerQuest Drive Image and ImageMasster. I personally and on many occasions have backed up one drive onto another, or as an image, either to store it for safe keeping, or simply to put a bigger drive into my PC.

    If, on the other hand, you mean you want to copy one installation of Windows XP and put it on a second machine, while the first is in place on the network, or expect certain security features, then you may have problems - and that is what the Microsoft article is about. "Copy our software and there are implications." If you are a corporation, then there are tools to safely role out Windows XP across a network. If you are Joe User, buy another copy and install it. Big deal. Its not like you do it every day.

    The headline might as well be "Microsoft Makes It Difficult For Users To Install A Single Copy Of Windows XP on Multiple Machines". But then it wouldnt be quite such big fucking news would it?

  385. PowerQuest V2i Desktop Works and Ghost will die by sanoydj · · Score: 1

    I use PowerQuest's V2i Desktop to do a disk to disk backup and it gets everything and the disk is bootable - all from within windows. It also supports incremental updates to image backups. Occasionally it can't allocate a cluster - but not if I clean boot first.

    I was speaker at a Chicago User's group in March and one of the PowerQuest technical folks was speaking as well. They have been working closely with Microsoft for 2 years on bare metal provisioning and making their product work under WinPE (replacement boot environment for DOS boot disks for doing system builds). For the longest time Ghost didn't have anything that ran 32-bit text mode to run under PE. In addition, Ghost still requires a boot to DOS to do it's actual imaging even though options are chosen during graphical mode.

    IMO, If it isn't Ghost that is dumped or absorbed into V2i, then I would expect they stay seperate products.

    D.

    1. Re:PowerQuest V2i Desktop Works and Ghost will die by sanoydj · · Score: 1

      Ah - found it - the original post mentioned that Windows has no technology to facilitate backing up live volumes. As of XP it has Volume Shadow Copy - http://www.microsoft.com/technet/treeview/default. asp?url=/technet/prodtechnol/winxppro/reskit/prdg_ dsm_vtrj.asp?frame=true

      Fyi

    2. Re:PowerQuest V2i Desktop Works and Ghost will die by jkirby · · Score: 1

      You can use my product to backup live systems. It is generic and will work with almost any backup or imaging product under Windows.

      http://fileforum.betanews.com/detail.php3?fid=10 43 424705

      --
      Jamey Kirby
  386. Re:The 1 way to make a backup is to image the driv by lythotype · · Score: 1

    To be honest with you, we do have that add-on module (which is expensive). ArcServe has a bootup disk modifier. You make the four Windows 2000 emergency bootup disks and let ArcServe modify them slightly.

    What happened in our situation was that about the 3rd disk the setup for windows 2000 puked complaining about some scripting file on the disk that has to do with a Service Pack release.

    After contacting ArcServe tech-support they told us that we made the ArcServe boot disks (some time after the machine was up and running after we bought it) and then through the course of time we installed the service packs and critical update packages. They said that after every major change like a critical update or service pack that you need to remake those disks. Oh well...

  387. A Stupid is... A Stupid Does... by folja · · Score: 1

    If you can't image drives using Symantec's Ghost, you have a be a feakin' moron. I've been using it since 1998 without a problem. I upgraded to the current version and have been Ghosting WindowsXP machines without a problem. If the software isn't the problem it must be you. Looks like a PEBCAK error to me. Get a clue, or at least buy one. --Rich

  388. Jesus, what next? by RMH101 · · Score: 1
    A post about how you can't program your video recorder?

    They *all* work. Tip: YOU DON'T NEED TO INSTALL ANY OF THEM - correct usage is to use them off a boot floppy or CD. Jesus, can't you read instructions?

  389. NTBackup: Not practical backup method - Microsoft by Futurepower(R) · · Score: 1


    Here is an official response from Microsoft. NTBackup does not work for making backups of the operating system:

    Theoretically, it is possible for backup to backup and restore everything using NTBackup. However, in practice, this is an unreliable method, especially when there are different hardware configurations between the old computer and the new computer.

    The following article has the steps to do in Windows 2000. Most the steps also apply to Windows XP. As you can see the steps are somewhat complicated and you will need to consider a lot of things before doing the full system recovery to a different computer:
    249694 How to Move a Windows 2000 Installation to Different Hardware
    http://support.microsoft.com/?id=249694

    The recommended method is to backup important data files (instead of everything in the computer). Reinstall clean operating systems and applications, then restore your important data files to the new system.

    Hover Xue
    MCSE 2000, MCDBA
    Microsoft Partner Support

  390. Linux NBD (Network Block Driver) + dd by rebel · · Score: 1

    For the handful of PCs I need to backup, I have simply booted them off of a stand-alone Linux CD distribution (Super Rescue, but any supporting NBD will work) and started nbd-client. Then on my Linux server simply dd'ed the (remote PC) disk to tape. When I needed to restore, dd'ing from tape to NBD worked flawlessly.

  391. never had a problem with Ghost by MoNsTeR · · Score: 1

    I don't know what YOU'RE doing, but Ghost works perfectly for me. I work at a huge college campus and we re-image all the student lab computers, over 1000 machines, every semester. We face plenty of challenges doing it, but problems with Ghost are not among them.

  392. RIS by rodgster · · Score: 1

    Come on, you mean you don't use Microsoft's Remote Install Service (which doesn't multicast) to deploy 2K/2K3?

    That's specifically why Uncle Billy developed and bundled this piece of shit in 2K server and demands you know it for MCSE certs.

    Therefore, it must be the best. Not.

    Ghost Enterprise w/ Sysprep is the only way to go. I saw some clown playing with RIS once. He must have been studying for that MCSE, because there is no other reason to use it.

    --
    Who will guard the guards?
  393. What version of Ghost and what switches do you use by Futurepower(R) · · Score: 1


    I stand by what I said about Ghost. I'm not the only one having problems with it, or with Symantec's copy protection.

    What version of Ghost and what switches do you use?

  394. Re:Power Quest - Drive Image - While Windows run ! by Anonymous Coward · · Score: 0

    Thanks!

  395. Help with Nortons Ghost 2003 and XP needed please. by grolschie · · Score: 1

    Hi there, I have just installed a nice XP installation and software. I ran sysprep and shutdown pc. I ghosted the ntfs partition with Ghost 2003.

    If I use ghost to copy partition on my other pc from the new image file, the data arrives there ok, but no boot. Not a valid system disk. If I then boot from XP cd I can enter repair mode and can view the whole c: drive. All the files have been copied there ok. Some how the MBR is letting the c: partition boot.

    I ran fixmbr and fixboot, to no avail. PC still cannot boot from that partition. Maybe the partition is not marked as the active partition?

    However, if I copy DISK from image, then all is well and it works. However, then I am left with only one partition for the whole disk. That means to get another partition I have to resize the NTFS partition with Parrtition Magic or something.

    How can I copy image to partition, but still have it booting. I am kinda stuck and have about 40 other pcs to install this ghost image to.

  396. Ghost: Regular or Enterprise version? by Futurepower(R) · · Score: 1


    There seems to be confusion about Ghost. There seems to be agreement that the regular version of Ghost has problems. Some people report reliable success with the Enterprise version.

    Still, I haven't had good luck with any Symantec products. I haven't tried Ghost Enterprise version.

  397. Could you supply a link? by Futurepower(R) · · Score: 1

    Could you supply a link to the files you use, such as your sysprep.inf file?

    Are you using the Enterprise version of Ghost?

    What modifications are you doing to the Bart's boot disk? Could you supply an image of the one you use?

    What is the best documentation of Sysprep?

    Thanks.

  398. Microsoft: NTBackup does not work for full backups by Futurepower(R) · · Score: 1


    For completeness, I'm posting this here, also. The original is comment #7463612

    Here is an official response from Microsoft. NTBackup does not work for making backups of the operating system:

    Theoretically, it is possible for backup to backup and restore everything using NTBackup. However, in practice, this is an unreliable method, especially when there are different hardware configurations between the old computer and the new computer.

    The following article has the steps to do in Windows 2000. Most the steps also apply to Windows XP. As you can see the steps are somewhat complicated and you will need to consider a lot of things before doing the full system recovery to a different computer:
    249694 How to Move a Windows 2000 Installation to Different Hardware
    http://support.microsoft.com/?id=249694

    The recommended method is to backup important data files (instead of everything in the computer). Reinstall clean operating systems and applications, then restore your important data files to the new system.

    Hover Xue
    MCSE 2000, MCDBA
    Microsoft Partner Support

  399. Microsoft: NTBackup does not work for full backups by Futurepower(R) · · Score: 1


    Caution:

    Here is an official response from Microsoft. NTBackup does not work for making backups of the operating system:

    Theoretically, it is possible for backup to backup and restore everything using NTBackup. However, in practice, this is an unreliable method, especially when there are different hardware configurations between the old computer and the new computer.

    The following article has the steps to do in Windows 2000. Most the steps also apply to Windows XP. As you can see the steps are somewhat complicated and you will need to consider a lot of things before doing the full system recovery to a different computer:
    249694 How to Move a Windows 2000 Installation to Different Hardware
    http://support.microsoft.com/?id=249694

    The recommended method is to backup important data files (instead of everything in the computer). Reinstall clean operating systems and applications, then restore your important data files to the new system.

    Hover Xue
    MCSE 2000, MCDBA
    Microsoft Partner Support

  400. The question was not about Sysprep. by Anonymous Coward · · Score: 0

    The question was not about Sysprep. It was about drive imaging software.

    This, copied from another comment, shows you that Microsoft disagrees about the ease of making functional full hard disk backups:

    Here is an official response from Microsoft. NTBackup does not work for making backups of the operating system:

    Theoretically, it is possible for backup to backup and restore everything using NTBackup. However, in practice, this is an unreliable method, especially when there are different hardware configurations between the old computer and the new computer.

    The following article has the steps to do in Windows 2000. Most the steps also apply to Windows XP. As you can see the steps are somewhat complicated and you will need to consider a lot of things before doing the full system recovery to a different computer:
    249694 How to Move a Windows 2000 Installation to Different Hardware
    http://support.microsoft.com/?id=249694

    The recommended method is to backup important data files (instead of everything in the computer). Reinstall clean operating systems and applications, then restore your important data files to the new system.

    Hover Xue
    MCSE 2000, MCDBA
    Microsoft Partner Support

  401. It's not intended to be negative; it's the facts. by Futurepower(R) · · Score: 1


    From the parent post: "there is nothing crippled about NTFS on XP or otherwise. Imaging works just how you expect it to. we've used Ghost (multiple version) PQDI (multiple versions, including the 16 bit dos version) and some internal-to-MS only stuff even."

    It is an official position of Microsoft that Windows XP has NO WAY to make a fully bootable functional backup of the OS partition. That was not true in Windows 98, so things have gone downhill, in my opinion.

    As you mention, third-party tools are required to make a full hard disk backup. That is a crippled OS, in my opinion.

    Many people have trouble with each of the third-party tools, and commenters have mentioned. So, it is reasonable to ask which is the best one.

    The third-party tools are NOT SUPPORTED BY MICROSOFT. There is NO Microsoft supported way of making a functional OS backup on a single workstation. That's more than crippled in my opinion; that is abusive. I support Microsoft's right to its intellectual property, but crippling is not good policy. That kind of copy protection punishes all the honest customers.

  402. Ghost is MUCH worse than people say: by Futurepower(R) · · Score: 1


    From the parent comment: "Ghost occasionally fails in wierd ways, which sometimes don't get noticed right away (this is really bad)."

    My experience is that Ghost is much worse than those who have commented here say.

    A few hours ago, I was trying to make a clone of a drive I had carefully prepared. Ghost 2003 said that the destination drive label was "New Volume", a hard drive I had just formatted so that it could be identified. But instead, Ghost used the destination drive as the source drive, and destroyed all my work.

    Here's a review of Ghost 2003 in PC World: Skip Norton Ghost 2003. The review says:

    "The program is saddled with a confusing manual, lousy Web support, and phone support that costs $30 per incident."

    Here's another quote: "I found its new 'intuitive Windows interface' inconsistent. And Ghost 2003 crashed one test PC and refused to clone the drive on another..."

    The article summarizes, saying that Ghost 2003 is "... hard to use, buggy, and poorly documented."

    People learn to work around the faults of software, and they don't notice the faults after that. So they may not give accurate assessments. Software is often much worse than those who work with it notice.

  403. Ghost 2003 has problems. by Futurepower(R) · · Score: 1

    About Ghost 2003, see this comment: #7480830

    1. Re:Ghost 2003 has problems. by RMH101 · · Score: 1

      nope, it's still people who don't know how to use it. don't know what a partition is, or the difference between a logical and extended partition? then don't use drive imaging software.

  404. Ghost 2003 is apparently not like Ghost Enterprise by Futurepower(R) · · Score: 1



    Caution: Ghost 2003 is apparently not at all like Ghost Enterprise:

    A few hours ago, I was trying to make a clone of a drive I had carefully prepared. Ghost 2003 said that the destination drive label was "New Volume", a hard drive I had just formatted so that it could be identified. But instead, Ghost used the destination drive as the source drive, and destroyed all my work.

    Here's a review of Ghost 2003 in PC World: Skip Norton Ghost 2003. The review says:

    "The program is saddled with a confusing manual, lousy Web support, and phone support that costs $30 per incident."

    Here's another quote: "I found its new 'intuitive Windows interface' inconsistent. And Ghost 2003 crashed one test PC and refused to clone the drive on another..."

    The article summarizes, saying that Ghost 2003 is "... hard to use, buggy, and poorly documented."

    People learn to work around the faults of software, and they don't notice the faults after that. So they may not give accurate assessments. Software is often much worse than those who work with it notice.

  405. Ghost 2003 has problems. by Futurepower(R) · · Score: 1

    Don't miss this about the retail version (Ghost 2003): #7482299

  406. Two SIDs can cause a file to be unreachable. by Futurepower(R) · · Score: 1

    Two or more SIDs can cause a file to be unreachable, even by an administrator.

  407. NTBackup: Official response from Microsoft by Futurepower(R) · · Score: 1


    Posting this again:

    Here is an official response from Microsoft. NTBackup does not work for making backups of the operating system:

    Theoretically, it is possible for backup to backup and restore everything using NTBackup. However, in practice, this is an unreliable method, especially when there are different hardware configurations between the old computer and the new computer.

    The following article has the steps to do in Windows 2000. Most the steps also apply to Windows XP. As you can see the steps are somewhat complicated and you will need to consider a lot of things before doing the full system recovery to a different computer:
    249694 How to Move a Windows 2000 Installation to Different Hardware
    http://support.microsoft.com/?id=249694

    The recommended method is to backup important data files (instead of everything in the computer). Reinstall clean operating systems and applications, then restore your important data files to the new system.

    Hover Xue
    MCSE 2000, MCDBA
    Microsoft Partner Support

  408. There are many files that cannot be copied... by Futurepower(R) · · Score: 1

    Exactly. There are many files that cannot be copied while Windows is running, or in Recovery Console.

  409. Ghost 2003 has problems. by Futurepower(R) · · Score: 1

    Don't miss this about the retail version (Ghost 2003): #7482299. Ghost has apparently become less reliable with new versions.

  410. Quote from Microsoft document: by Futurepower(R) · · Score: 1

    Quote from Microsoft document: "You can mirror volumes only on computers running Windows 2000 Server, Windows 2000 Advanced Server, or Windows 2000 Datacenter Server."

  411. Cheap IDE RAID card does not work! by Futurepower(R) · · Score: 1

    BEWARE: The IDE RAID card that costs $30 uses a Silicon Image chip that doesn't work and is no longer supported. Silicon Image told me this directly. Kouwell makes the card.

  412. Only the 3Ware cards are true mirroring... by Futurepower(R) · · Score: 1

    Only the 3Ware cards are true mirroring controllers. Others do the mirroring in software. Windows XP does not support mirroring, according to a Microsoft document I read.

  413. That doesn't work! by Futurepower(R) · · Score: 1

    And, according to Microsoft, it doesn't work: #7476862

  414. It doesn't work. by Futurepower(R) · · Score: 1

    It doesn't work. Mirroring only is for server versions.

    1. Re:It doesn't work. by Slashamatic · · Score: 1
      Thanks, I suppose I should have guessed that. Some of the differences between Pro and Server are to be expected, but many others less so. I only have 2 Win installations left, one pro and one server and I don't often boot the former.

      However I tried the mirroring trick after using it many years ago on big iron for copies, and was agreeably surprised at how well it worked.

  415. Ghost Enterprise and Retail are very different... by Futurepower(R) · · Score: 1


    Ghost Enterprise and Retail are very different, apparently.

    Here's a review of Ghost 2003 in PC World: Skip Norton Ghost 2003. The review says:

    "The program is saddled with a confusing manual, lousy Web support, and phone support that costs $30 per incident."

    Here's another quote: "I found its new 'intuitive Windows interface' inconsistent. And Ghost 2003 crashed one test PC and refused to clone the drive on another..."

    The article summarizes, saying that Ghost 2003 is "... hard to use, buggy, and poorly documented."

    People learn to work around the faults of software, and they don't notice the faults after that. So they may not give accurate assessments. Software is often much worse than those who work with it notice.

  416. Microsoft says NTBackup doesn't work for full BUs. by Futurepower(R) · · Score: 1

    Microsoft says NTBackup doesn't work for making full backups: #7463612

  417. Microsoft says NTBackup doesn't work for full BUs. by Futurepower(R) · · Score: 1

    Microsoft says NTBackup doesn't work for making full backups: #7463612

  418. Would you consider sharing... by Futurepower(R) · · Score: 1

    Would you consider sharing your scripts and batch files?

    1. Re:Would you consider sharing... by keefebert · · Score: 1

      They are rather simple and highly specified for what I do (disable the Novell login window, clear the domain name, install a small software app), so I don't know how much help they would be. But, if you have something you are trying to accomplish that I do, I don't see a problem sharing it.

  419. Michelle, a Symantec Ghost techical support rep... by Futurepower(R) · · Score: 1


    Michelle, a Symantec Ghost techical support representative told me today that Ghost has a GUI display that often has caused problems.

    The question is not whether the problem has been solved. The question is what is the best solution.

  420. Ask Slashdot question was about imaging software. by Futurepower(R) · · Score: 1

    "Its designed to deal with this very problem with transferring images to other hardware."

    I don't know why, but people bring up Sysprep when talking about imaging software. Of course it is necessary to use Sysprep. The Ask Slashdot question was about your experiences with imaging software. As you can see from the many comments, people have problems with each of the imaging software packages.

    RIS requires Windows Server 2003. This is sometimes inconvenient or impossible, depending on the customer's network.