PC Review


Reply
Thread Tools Rate Thread

Cannot format a disk that contained Linux before

 
 
Martin
Guest
Posts: n/a
 
      9th Jul 2006
Hello
I've Installed SUSE Linux 9.3 and wanted to format it later in W2K.
The problem is that fdisk and disk administrator hang or throw an error when
trying to format this disk.

Under DOS, fdisk hangs in the step of list the partitions. Under W2K, Disk
Administrator shows an error message saying that the service threw an error,
or that the request timed out and the operation could not be completed.

How can I delete the information in the boot sector or somewhere that
prevents me from formatting this disk?

Thank you in advance to everyone


 
Reply With Quote
 
 
 
 
Rod Carty
Guest
Posts: n/a
 
      9th Jul 2006
Martin wrote:
> Hello
> I've Installed SUSE Linux 9.3 and wanted to format it later in W2K.
> The problem is that fdisk and disk administrator hang or throw an error when
> trying to format this disk.
>
> Under DOS, fdisk hangs in the step of list the partitions. Under W2K, Disk
> Administrator shows an error message saying that the service threw an error,
> or that the request timed out and the operation could not be completed.
>
> How can I delete the information in the boot sector or somewhere that
> prevents me from formatting this disk?
>
> Thank you in advance to everyone
>
>

You probably need to delete all info in the first few KB of the MBR.
I've done this using Norton's Disk Edit but I'm sure there are other
possibly free utilities to do this. Once you have a utility that can
edit the MBR, overwrite whatever is there with all 1's or FF's, whatever
the editor designates it as. Once you've done that you will have taken
out what Linux put in there and fdisk, etc will work normally.

--
Rod C--
http://www.en-consult.ca
http://www.ciay.ca
>> 42.7 percent of all statistics are made up on the spot. <<

The preceding humor inserted by QuipSig
http://www.en-consult.ca/quipsig/
 
Reply With Quote
 
Sabahattin Gucukoglu
Guest
Posts: n/a
 
      9th Jul 2006
Hi Martin,

"Martin" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...

> How can I delete the information in the boot sector or somewhere that
> prevents me from formatting this disk?


I'm not entirely sure why these tools should respond to MBR corruption by
falling over, nor exactly what Linux might have put there to in any way
upset any standard partitioning tools, but anyway ...

1. If you have access to a live CD that you can use to boot Linux (EG
Knoppix), do so and get to a root shell. Then, you could use something
like:
dd if=/dev/zero of=/dev/hda bs=1K count=64
(assuming /dev/hda is the disk in question, i.e. pri/mast). That oughta
wipe out enough to keep the tools happy (but there's then absolutely no
hope of recovering any bootsector there, if you need to - unfortunately,
Windows tools are known to depend on zeroing out the actual partition
bootsectors/MDs for newly created partitions).

2. IBM's wipe.com or zap.com are cute little programs for DOS written in
X86 assembler. They use int13 BIOS and have only 8gbyte access, but that's
*more* than enough for your purpose. :-) Find them on the net somewhere;
let me know if you can't and I'll try to dig them out for you.

Hope this helps.

Cheers,
Sabahattin


 
Reply With Quote
 
Martin
Guest
Posts: n/a
 
      11th Jul 2006
Rod,
Thank you. I used the Ranish Partition Manager that came in the bootable cd
at www.ultimatebootcd.com
I deleted one partition with this tool and set the Master Boot Record from
Unkown IPL to Standard IPL.
After that I could run fdisk normally and format the disk.

I think this tool did what you said, but I am not sure.
Best regards and thank you for your guidelines.

Martin


"Rod Carty" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Martin wrote:
>> Hello
>> I've Installed SUSE Linux 9.3 and wanted to format it later in W2K.
>> The problem is that fdisk and disk administrator hang or throw an error
>> when trying to format this disk.
>>
>> Under DOS, fdisk hangs in the step of list the partitions. Under W2K,
>> Disk Administrator shows an error message saying that the service threw
>> an error, or that the request timed out and the operation could not be
>> completed.
>>
>> How can I delete the information in the boot sector or somewhere that
>> prevents me from formatting this disk?
>>
>> Thank you in advance to everyone

> You probably need to delete all info in the first few KB of the MBR. I've
> done this using Norton's Disk Edit but I'm sure there are other possibly
> free utilities to do this. Once you have a utility that can edit the MBR,
> overwrite whatever is there with all 1's or FF's, whatever the editor
> designates it as. Once you've done that you will have taken out what Linux
> put in there and fdisk, etc will work normally.
>
> --
> Rod C--
> http://www.en-consult.ca
> http://www.ciay.ca
> >> 42.7 percent of all statistics are made up on the spot. <<

> The preceding humor inserted by QuipSig
> http://www.en-consult.ca/quipsig/



 
Reply With Quote
 
Martin
Guest
Posts: n/a
 
      11th Jul 2006
Sabahattin,
First of all you were very kind and your advices pointed me in the right
direction.
As I said to Rod Carty, I used the Ranish Partition Manager setting the MBR
from its state of Unknown IPL to Standard IPL.
Also I downloaded zap and wipe and read their documentation, while booting
with ultimatebootcd that I have found earlier that afternoon. I agree with
you they are great tools and fortunately I could solve my problem in the
previous step.

I downloaded zap and wipe from this location:
http://www.isgsp.net/files/ibm-wipe-zap.zip and thanks to the owner of this
site.

Thank you, best regards
Martin





"Sabahattin Gucukoglu" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hi Martin,
>
> "Martin" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>
>> How can I delete the information in the boot sector or somewhere that
>> prevents me from formatting this disk?

>
> I'm not entirely sure why these tools should respond to MBR corruption by
> falling over, nor exactly what Linux might have put there to in any way
> upset any standard partitioning tools, but anyway ...
>
> 1. If you have access to a live CD that you can use to boot Linux (EG
> Knoppix), do so and get to a root shell. Then, you could use something
> like:
> dd if=/dev/zero of=/dev/hda bs=1K count=64
> (assuming /dev/hda is the disk in question, i.e. pri/mast). That oughta
> wipe out enough to keep the tools happy (but there's then absolutely no
> hope of recovering any bootsector there, if you need to - unfortunately,
> Windows tools are known to depend on zeroing out the actual partition
> bootsectors/MDs for newly created partitions).
>
> 2. IBM's wipe.com or zap.com are cute little programs for DOS written in
> X86 assembler. They use int13 BIOS and have only 8gbyte access, but
> that's
> *more* than enough for your purpose. :-) Find them on the net somewhere;
> let me know if you can't and I'll try to dig them out for you.
>
> Hope this helps.
>
> Cheers,
> Sabahattin
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
disk partition-installing linux AAA Microsoft Windows 2000 File System 1 17th Nov 2006 08:43 PM
Coyote Linux 2.10.0 GUI Disk Creator Gordon Darling Freeware 0 29th Mar 2004 02:57 PM
linux boot disk Zack Macracken Freeware 0 23rd Jan 2004 06:44 PM
2-Disk X window embedded Linux 1.2.1 Gordon Darling Freeware 0 17th Sep 2003 06:18 PM
linux woes and no boot disk for XP Rick Barr Windows XP Setup 1 1st Aug 2003 09:41 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:08 PM.