vote up 0 vote down star

I use fdisk -l on a new USB thumb drive. It says;

Device Boot Start End Blocks Id System
/dev/sdc1 15 7217 1980415 b W95 FAT32

I then do
mkfs.ext2 /dev/sdc1

and I get
mke2fs 1.35 (28-Feb-2004)
max_blocks 506985472, rsv_groups = 15472, rsv_gdb = 120
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
247808 inodes, 495103 blocks
24755 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=507510784
16 block groups
32768 blocks per group, 32768 fragments per group
15488 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912

Writing inode tables: done
inode.i_blocks = 5768, i_size = 4243456
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 20 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override.

I rerun fdisk -l .I'm expecting to see the System has changed, but it's still

Device Boot Start End Blocks Id System
/dev/sdc1 15 7217 1980415 b W95 FAT32

Any ideas what I'm doing wrong?

It's a fairly old Linux box - perhaps that's the issue?
uname -a && cat /etc/*release
Linux 2.6.9-1.667 #1 Tue Nov 2 14:41:25 EST 2004 i686 athlon i386 GNU/Linux
Fedora Core release 3 (Heidelberg)
LSB_VERSION="1.3"
Fedora Core release 3 (Heidelberg)

flag
Try remounting it after the mkfs – Vinko Vrsalovic Oct 21 '08 at 15:02

closed as not programming related by Vinko Vrsalovic Oct 21 '08 at 15:02

1 Answer

vote up 4 vote down

You should change the type of the partition first. Let you do:

fdisk /dev/sdc

Then type

t

then

1

then

83

Then probably you need to re-read the partition table and finally format it.

link|flag
Then "w" to write the changes. – Steve Baker Oct 21 '08 at 15:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.