I am trying to repartition my harddisk, to have two partitions:
- the first ( HDD3 ) - as VFAT, about 2 GB and
- the second ( HDD4 ?) - as EXT2 or EXT3
I do the following as root:
- umount /ext/hda3
- fdisk /ext/hda3
within fdisk:
-p -> shows no partitions at all, so I start partitioning
- create new primary partition ( 'n' )
- from beginning to about sector 3700
- t "c" ( for VFAT)
- create new primary partition ( 'n' )
- from 3700 to the end
- p -> check if two partitions show - they show as HDD3p1 and HDD3p2
- w -> completes ok, no error message
I suppose this created now two partitions
now:
mkfs.vfat -F 32 /dev/hda3 -> ok
mke2fs -j /dev/hda4 -> I get an error message, saying something that the partition table has not been refreshed, and I should reboot.
After reboot I do
df -h
and get, that I have one /hda3 partition, filling the whole harddrive.
What am I doing wrong here? How can I have HDD3 and HDD4?
Should I have deleted HDD3 before repartitioning? How, when the partition does not show?
Thanks for any advice...
