Ghost switch not working
Results 1 to 8 of 8

Thread: Ghost switch not working

  1. #1
    Join Date
    Oct 2000
    Location
    Australia
    Posts
    2,146

    Ghost switch not working

    Windows XP
    Partition 1: NTFS
    Partition 2: FAT32

    Trying to dump an image file sitting on parition 2 to partition 1 via a bootable floppy disk. Here is my switch:

    @echo off
    ghost -FNI -clone,mode=load,src=c:\winxp.gho,dst=1:1 -sure -rb

    it's not working

  2. #2
    Join Date
    Feb 2001
    Location
    Adelaide, South Australia
    Posts
    6,447
    My Ghost manual is at work, but are you sure that's not meant to be mode=pload?
    Safe computing is a habit, not a toolkit.

  3. #3
    Join Date
    Oct 2000
    Location
    Australia
    Posts
    2,146
    @echo off
    ghost -FNI -clone,mode=pload ,src=c:\winxp.gho,dst=1:1 -sure -rb

    like this you think?

  4. #4
    Join Date
    Feb 2001
    Location
    Adelaide, South Australia
    Posts
    6,447
    Yes. (Although you've left an extra space in that second line which shouldn't be there...)
    Safe computing is a habit, not a toolkit.

  5. #5
    Join Date
    Oct 2000
    Location
    Australia
    Posts
    2,146
    I even converted the NTFS partition to FAT32 and it still won't work! The switch looks fine! It says "invalid destination drive"

    isn't 1:1 Drive 1:Partition 1???????

    Error: 11030
    Last edited by NEM1S1S; June 19th, 2004 at 05:56 AM.

  6. #6
    Join Date
    Mar 2002
    Location
    Windsor, Ontario, Canada
    Posts
    199
    src=c:\winxp.gho,dst=1:1

    I use the Ghost GUI so don't have much experience with the switches, but it looks to me like your source and destination are on the same partition. If the destination is 1:1 then your source can't be on c:\. If I understand you correctly, your source is on d: and your destination is c:.

    Which version of Ghost are you using? Later versions work flawlessly between Fat32 & NTFS partitions. No need to convert the file system though since that info is contained in the Image file.

  7. #7
    Join Date
    Feb 2001
    Location
    Adelaide, South Australia
    Posts
    6,447
    When you're running Ghost from DOS it won't have drive letters for the NTFS partition, so C: would actually be partition 2. However, the image file needs to be addressed by partition number too:
    Code:
    ghost -FNI -clone,mode=pload,src=c:\winxp.gho:1,dst=1:1 -sure -rb
    Safe computing is a habit, not a toolkit.

  8. #8
    Join Date
    Oct 2000
    Location
    Australia
    Posts
    2,146
    Ok, this is the switch that worked:

    ghost -FNI -clone,mode=pload,src=d:\winxp.gho:1,dst=1:1 -sure -rb

    I might convert the original partition back to NTFS now.
    Last edited by NEM1S1S; June 20th, 2004 at 06:25 AM.

Thread Information

Users Browsing this Thread

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

Posting Permissions

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