|
用的是IBM T22 + redhat 9 + 2.6.8内核
加载的模块如下
- [root@localhost root]# lsmod
- Module Size Used by
- ide_scsi 14596 0
- vfat 12160 0
- msdos 8320 0
- fat 40480 2 vfat,msdos
- sd_mod 17280 0
- autofs 14464 0
- ds 14592 4
- yenta_socket 18944 2
- pcmcia_core 54656 2 ds,yenta_socket
- 3c59x 36776 0
- parport_pc 20384 0
- parport 21696 1 parport_pc
- ehci_hcd 26880 0
- usb_storage 59856 0
- scsi_mod 71204 3 ide_scsi,sd_mod,usb_storage
复制代码
用fdisk -l 命令可以看到移动硬盘
- [root@localhost root]# fdisk -l
-
- Disk /dev/hda: 20.0 GB, 20003880960 bytes
- 240 heads, 63 sectors/track, 2584 cylinders
- Units = cylinders of 15120 * 512 = 7741440 bytes
-
- Device Boot Start End Blocks Id System
- /dev/hda1 * 1 512 3870688+ 83 Linux
- /dev/hda2 513 1500 7469280 83 Linux
- /dev/hda3 1501 2490 7484400 83 Linux
- /dev/hda4 2491 2584 710640 f Win95 Ext'd (LBA)
- /dev/hda5 2491 2584 710608+ 82 Linux swap
-
- Disk /dev/sda: 40.0 GB, 40007761920 bytes
- 255 heads, 63 sectors/track, 4864 cylinders
- Units = cylinders of 16065 * 512 = 8225280 bytes
-
- Device Boot Start End Blocks Id System
- /dev/sda1 1 2550 20482843+ c Win95 FAT32 (LBA)
- /dev/sda2 2551 4863 18579172+ c Win95 FAT32 (LBA)
复制代码
用命令
- [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
复制代码
请问各位大虾如何解决, 为什么? |
|