- 论坛徽章:
- 0
|
能成功将内核从2.4.20-8升级到2.6.10,但原来可以挂载U盘,现在不能了。
[root@localhost linuxdriver3]# lsmod
Module Size Used by
ppp_synctty 9888 0
ppp_async 11360 1
crc_ccitt 1888 1 ppp_async
ppp_generic 29196 6 ppp_synctty,ppp_async
slhc 7296 1 ppp_generic
8139too 25344 0
mii 4896 1 8139too
ohci1394 34624 0
ieee1394 110288 1 ohci1394
parport_pc 28260 0
parport 36736 1 parport_pc
ide_scsi 16484 0
scsi_mod 128452 1 ide_scsi
ide_cd 42272 0
cdrom 41472 1 ide_cd
usbcore 120040 0
[root@localhost linuxdriver3]#
再看命令:
[root@localhost linuxdriver3]# less /etc/modprobe.conf |grep "usb"
alias usbdevfs usbcore
alias usb-controller usb-uhci
install usbmouse /sbin/modprobe --first-time --ignore-install usbmouse && { /sbin/modprobe hid; /bin/true; }
remove usbmouse { /sbin/modprobe -r hid; } ; /sbin/modprobe -r --first-time --ignore-remove usbmouse
系统支持U盘所需要的相关模块都已启动了,为什么不能挂载U盘呢?
另外如下 less命令 :
[root@localhost linuxdriver3]#
less /usr/src/linux-2.6.10/.config | grep "USB_STORAGE"
出现如下:
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_RW_DETECT is not set
CONFIG_USB_STORAGE_DATAFAB=y
CONFIG_USB_STORAGE_FREECOM=y
CONFIG_USB_STORAGE_ISD200=y
CONFIG_USB_STORAGE_DPCM=y
CONFIG_USB_STORAGE_HP8200e=y
CONFIG_USB_STORAGE_SDDR09=y
CONFIG_USB_STORAGE_SDDR55=y
CONFIG_USB_STORAGE_JUMPSHOT=y
我用fdisk -l命令也不能看到U盘
[ 本帖最后由 whoisliang 于 2007-10-21 22:32 编辑 ] |
|