HELP, SATA Hard Disk

Y

YKK

Help! I bought a new set of computer using SATA 80GB hard disk and found
the following problem:

1. boot up with Win98 boot disk, using FDISK, connot create patition.
Then, I use Patition manager, create partition and try to copy file into it,
it show me "writing error"

2. Then I use Win XP prof. CD boot up and install, installation is
successful but when I install game or copy file on it, it become "blue
dead", the error is "kernal_data_inpage_error" and reboot. I try many times
but still the same error. Beside, I cannot format the patition as FAT32!!

Anybody can tell me the problem is? Is it my hard disk failure or Win XP
problem? HELP!!!
 
S

santa

: Help! I bought a new set of computer using SATA 80GB hard disk and found
: the following problem:
:
: 1. boot up with Win98 boot disk, using FDISK, connot create patition.
: Then, I use Patition manager, create partition and try to copy file into
it,
: it show me "writing error"
:
: 2. Then I use Win XP prof. CD boot up and install, installation is
: successful but when I install game or copy file on it, it become "blue
: dead", the error is "kernal_data_inpage_error" and reboot. I try many
times
: but still the same error. Beside, I cannot format the patition as FAT32!!
:
: Anybody can tell me the problem is? Is it my hard disk failure or Win XP
: problem? HELP!!!
:
:
fat 32 is limited to 32 gigs and 80 gigs > 32 gigs you need to format as
ntfs or keep partition sizes under 32 gigs. Sounds like operator error to
me.

claus
 
G

Graeme

santa said:
: Help! I bought a new set of computer using SATA 80GB hard disk and found
: the following problem:
:
: 1. boot up with Win98 boot disk, using FDISK, connot create patition.
: Then, I use Patition manager, create partition and try to copy file into
it,
: it show me "writing error"
:
: 2. Then I use Win XP prof. CD boot up and install, installation is
: successful but when I install game or copy file on it, it become "blue
: dead", the error is "kernal_data_inpage_error" and reboot. I try many
times
: but still the same error. Beside, I cannot format the patition as FAT32!!
:
: Anybody can tell me the problem is? Is it my hard disk failure or Win XP
: problem? HELP!!!
:
:
fat 32 is limited to 32 gigs and 80 gigs > 32 gigs you need to format as
ntfs or keep partition sizes under 32 gigs. Sounds like operator error to
me.

claus

Isn't it FAT16 that's limited to 32Gig?
 
J

JT

Isn't it FAT16 that's limited to 32Gig?
Fat16 is limited to 2Gig for 9x/ME. It is limited to 4Gig for NT/2K/XP. The
32Meg limit for Fat32 is in the XP disk partitioning software. 9x had a
partition limit of 32Gig in their fdisk/format utility, and scandisk has a
limit also, which I think is 64Gig.

Seems you could write a book about the limits of various file systems and
file system utilities. ;-)
JT
 
G

Graeme

JT said:
Fat16 is limited to 2Gig for 9x/ME. It is limited to 4Gig for NT/2K/XP. The
32Meg limit for Fat32 is in the XP disk partitioning software. 9x had a
partition limit of 32Gig in their fdisk/format utility, and scandisk has a
limit also, which I think is 64Gig.

Seems you could write a book about the limits of various file systems and
file system utilities. ;-)
JT

But doesn't the FATxx mean 2^xx clusters (of 512 bytes)?
 
V

V W Wall

Use a bootdisk with the latest version of fdisk to get a partition >32GB.
WinXP will work fine with it.
See comments below.
But doesn't the FATxx mean 2^xx clusters (of 512 bytes)?

Actually in FAT32, four bits are "reserved", so it's really only FAT28.
2^28 = 268435456 clusters of up to 32K each (32768 bytes) or about eight
terabytes, still pretty big!

As a practical matter, the FAT system gets pretty inefficient long
before a drive that large. MS won't allow WinXP to set up drives
(or partitions) larger than 32GB, thouch the OS will work with larger
partitions. MS is pushing NTSF for larger drives.

Virg Wall
 
J

JT

But doesn't the FATxx mean 2^xx clusters (of 512 bytes)?
Clusters are multiples of (normally) 512byte sectors. Largest cluster
normally used is 4kbytes (8 sectors). Fat16 can handle a max of 64k
clusters. Fat32 can handle up to 2^32 clusters, which are normally 4k.
 
V

V W Wall

JT said:
Clusters are multiples of (normally) 512byte sectors. Largest cluster
normally used is 4kbytes (8 sectors). Fat16 can handle a max of 64k
clusters. Fat32 can handle up to 2^32 clusters, which are normally 4k.

See my reply just before yours. Clusters are normally 4K, only for
FAT32 partitions smaller than ~8GB. They can be as large as 32K.
There are some "undoccumented" switches in fdisk to set up other than
"normal" cluster sizes. You can't decrease the cluster size in FAT32
below that which will cause the size of the file allocation table (FAT)
to be larger than about 16MB (16,760,832 bytes). If you want to know
where the extra 64KB (65536 bytes) went, ask Microsoft. ;-(

Virg Wall
 
G

Graeme

JT said:
Clusters are multiples of (normally) 512byte sectors. Largest cluster
normally used is 4kbytes (8 sectors). Fat16 can handle a max of 64k
clusters. Fat32 can handle up to 2^32 clusters, which are normally 4k.

So is that a 256Gig limit for FAT16 (2^16 * 4k)? Why do we ever need FAT32?
 
V

V W Wall

Graeme said:
So is that a 256Gig limit for FAT16 (2^16 * 4k)? Why do we ever need FAT32?

2^16 * 4K = 2^16 * 2^12 = 2^28 = 268435456 or about 255MB. (_Not_ *GB*)

FAT16 can handle 32K clusters. 2^16 * 2^15 = 2^31 = 2147483648 or about 2048MB
which is about 2.1GB. To get above that FAT32 is needed.

See: http://support.microsoft.com/support/kb/articles/Q67/3/21.ASP for
FAT16.

And: http://support.microsoft.com/support/kb/articles/q192/3/22.asp for
FAT32

Microsoft did write the book. ;-

Virg Wall
 
G

Graeme

V W Wall said:
FAT32?

2^16 * 4K = 2^16 * 2^12 = 2^28 = 268435456 or about 255MB. (_Not_ *GB*)

FAT16 can handle 32K clusters. 2^16 * 2^15 = 2^31 = 2147483648 or about 2048MB
which is about 2.1GB. To get above that FAT32 is needed.

See: http://support.microsoft.com/support/kb/articles/Q67/3/21.ASP for
FAT16.

And: http://support.microsoft.com/support/kb/articles/q192/3/22.asp for
FAT32

Microsoft did write the book. ;-

Virg Wall
--
A foolish consistency is the
hobgoblin of little minds,........
Ralph Waldo Emerson
(Microsoft programmer's manual.)

Oops! That'll teach me from posting late ;-)
My calculator even said 268e6 and I still wrote Gig. What an idiot!
 
A

adrian

YKK said:
Help! I bought a new set of computer using SATA 80GB hard disk and found
the following problem:

1. boot up with Win98 boot disk, using FDISK, connot create patition.
Then, I use Patition manager, create partition and try to copy file into it,
it show me "writing error"

2. Then I use Win XP prof. CD boot up and install, installation is
successful but when I install game or copy file on it, it become "blue
dead", the error is "kernal_data_inpage_error" and reboot. I try many times
but still the same error. Beside, I cannot format the patition as FAT32!!

Anybody can tell me the problem is? Is it my hard disk failure or Win XP
problem? HELP!!!

if your using a nforce chipset motherboard with built in sata controller you
should update your motherboard bios as theres a known problem with data
corrruption with these boards
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top