This didn’t help. These are the commands I used:
fdisk /dev/hd1 delete -a
fdisk /dev/hd1 add -s1 -t11
mount -e /dev/hd1
mkdosfs -F32 /dev/hd1t11
mount -t dos /dev/hd1t11 /fat32
After the above commands, output of df -g /fat32:
/dev/hd1t11 /fat32/
Blocks: 62589 total 62588 avail [4096-byte blocks]
Files : 0 total 0 avail
Type : dos (fat32)
Flags : 00000100 [32bit]
After the above commands, output of df -kP:
Filesystem 1024-blocks Used Available Capacity Mounted on
/dev/hd0t77 96186 61569 34616 65% /
/dev/fd0 1423 556 867 40% /flop/
/dev/hd1t11 250356 4 250352 1% /fat32/
/dev/ram0 51200 3469 47731 7% /ram/
/dev/hd1 250880 250880 0 100%
/dev/hd0 96192 96192 0 100%
Other things I have tried:
Disk formatted under QNX reports reports FAT32, disk always full, in WinXP.
Disk formatted under QNX reports UNKNOWN system type in FDISK and “Invalid
drive specified” trying to access the drive from the command prompt in
Windows 98 SE.
I used FDISK and formatted the disk under Windows 98 SE and had no problems.
I used WinXP’s format utility on the disk and had no problems.
When I format the drive under QNX to FAT32 it is only writeable under QNX.
I need it to be writeable under Windows.
I have QNX tech support involved now but they aren’t sure what the problem
is.
Thanks,
Mark
“ed1k” <ed1k@fake.address> wrote in message
news:MPG.1cc5187c29042f229896ad@inn.qnx.com…
In article <d33h89$l3v$> 1@inn.qnx.com> >, “Mark Dornbush” <markxd(delme)
@cyberdude.com> says…
I would like some help to know the proper steps for formatting a HD to
FAT32
under QNX 6.3. What ever I try, the HD seems to format OK in QNX but the
available space always reports “0” in Windows.
I have tried the following (in various combinations):
dd if=/dev/zero of=/dev/hd1 count=100
mkdosfs -F32 /dev/hd1
mount -t dos /dev/hd1t11 /fat32
or
fdisk /dev/hd1 delete -a
fdisk /dev/hd1 add -s1 -t11
mkdosfs -F32 /dev/hd1
mount -t dos /dev/hd1t11 /fat32
or
fdisk /dev/hd1 delete -a
fdisk /dev/hd1 add -s1 -t11
dinit -h /dev/hd1t11
mount -t dos /dev/hd1t11 /fat32
I bet you missed the right combination:
fdisk /dev/hd1 delete -a
fdisk /dev/hd1 add -s1 -t11
mkdosfs -F32 /dev/hd1t11
mount -t dos /dev/hd1t11 /fs/fat32
Eduard.