|
[root@localhost root]# fdisk -l /dev/sd?
Disk /dev/sda: 2 heads, 32 sectors, 1002 cylinders
Units = cylinders of 64 * 512 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1002 32048 4 FAT16 <32M
[root@localhost root]# fdisk -l /dev/sda?
Disk /dev/sda1: 2 heads, 32 sectors, 1001 cylinders
Units = cylinders of 64 * 512 bytes
Device Boot Start End Blocks Id System
/dev/sda1p1 ? 53973193 48560681 1974283273+ 24 NEC DOS
Partition 1 has different physical/logical beginnings (non-Linux?):
phys=(598, 2, 10) logical=(53973192, 0, 9)
Partition 1 has different physical/logical endings:
phys=(115, 205, 19) logical=(48560680, 0, 27)
Partition 1 does not end on cylinder boundary:
phys=(115, 205, 19) should be (115, 1, 32)
/dev/sda1p2 ? 37241619 38644853 44903520 73 Unknown
Partition 2 has different physical/logical beginnings (non-Linux?):
phys=(267, 3, 30) logical=(37241618, 0, 1)
Partition 2 has different physical/logical endings:
phys=(704, 7, 12) logical=(38644852, 1, 32)
Partition 2 does not end on cylinder boundary:
phys=(704, 7, 12) should be (704, 1, 32)
/dev/sda1p3 ? 19860860 38028997 581380386+ 0 Empty
Partition 3 has different physical/logical beginnings (non-Linux?):
phys=(722, 0, 3) logical=(19860859, 1, 25)
Partition 3 has different physical/logical endings:
phys=(436, 79, 53) logical=(38028996, 1, 29)
Partition 3 does not end on cylinder boundary:
phys=(436, 79, 53) should be (436, 1, 32)
/dev/sda1p4 ? 1 1 1 59 Unknown
Partition 4 has different physical/logical beginnings (non-Linux?):
phys=(83, 32, 32) logical=(0, 0, 1)
Partition 4 has different physical/logical endings:
phys=(0, 83, 0) logical=(0, 0, 2)
Partition 4 does not end on cylinder boundary:
phys=(0, 83, 0) should be (0, 1, 32)
Partition table entries are not in disk order
[root@localhost root]# mount -t vfat /dev/sda1 /mnt/usb
mount: wrong fs type, bad option, bad superblock on /dev/sda1,
or too many mounted file systems
[root@localhost root]# mount /dev/sda1 /mnt/usb
mount: you must specify the filesystem type
[root@localhost root]# mount fdisk -l
Disk /dev/hda: 255 heads, 63 sectors, 1868 cylinders
Units = cylinders of 16065 * 512 bytes
Device Boot Start End Blocks Id System
/
dev/hda1 * 1 383 3076416 7 HPFS/NTFS
/dev/hda2 384 1868 11928262+ f Win95 Ext'd (LBA)
/dev/hda5 384 766 3076416 b Win95 FAT32
/dev/hda6 767 1149 3076416 b Win95 FAT32
/dev/hda7 1150 1404 2048256 b Win95 FAT32
/dev/hda8 1405 1410 48163+ 83 Linux
/dev/hda9 1411 1803 3156741 83 Linux
/dev/hda10 1804 1868 522081 82 Linux swap |
|