解決ubuntu下不能識別U盤的問題

在ibm t40上裝的ubuntu 7.04,已經在新立得中升級到最新。
插入u盤後,系統沒任何反應,用
#lsusb
也看不到任何設備信息。如果插入usb鼠標倒是可以識別,正常使用。
之前曾經在一個臺式機和一臺compaq筆記本上安裝過ubuntu,都能正常識別該u盤,也試過
別的u盤,可以確認不是u盤的問題。

在google上搜索,好像都沒有人遇到這種問題。別人頂多是不能自動mount,可我這裏好像
是根本連硬件都沒認出來?!
--------------------
用dmesg查看usb相關的信息:

[ 1885.556000] usb 4-4: new high speed USB device using ehci_hcd and address 114
[ 1887.824000] usb 4-4: new high speed USB device using ehci_hcd and address 122
[ 1888.328000] usb 4-4: new high speed USB device using ehci_hcd and address 123
[ 1893.116000] usb 4-4: new high speed USB device using ehci_hcd and address 15
[ 1897.652000] usb 4-4: new high speed USB device using ehci_hcd and address 32
[ 1899.668000] usb 4-4: new high speed USB device using ehci_hcd and address 39
[ 1900.172000] usb 4-4: new high speed USB device using ehci_hcd and address 40
[ 1904.204000] usb 4-4: new high speed USB device using ehci_hcd and address 55
[ 1907.984000] usb 4-4: new high speed USB device using ehci_hcd and address 69
[ 1909.244000] usb 4-4: new high speed USB device using ehci_hcd and address 73
[ 1915.040000] usb 4-4: new high speed USB device using ehci_hcd and address 95
[ 1917.812000] usb 4-4: new high speed USB device using ehci_hcd and address 105
[ 1918.072000] ehci_hcd 0000:00:1d.7: port 4 reset error -110
[ 1918.072000] hub 4-0:1.0: hub_port_status failed (err = -32)
[ 1927.136000] usb 4-4: new high speed USB device using ehci_hcd and address 13
[ 1927.640000] usb 4-4: new high speed USB device using ehci_hcd and address 14
[ 1935.200000] usb 4-4: new high speed USB device using ehci_hcd and address 43
[ 1935.460000] ehci_hcd 0000:00:1d.7: port 4 reset error -110
[ 1935.460000] hub 4-0:1.0: hub_port_status failed (err = -32)
[ 1937.216000] usb 4-4: new high speed USB device using ehci_hcd and address 48
----------
問題解決,執行
rmmod ehci_hcd
就OK。
ehci可能和usb2.0支持有關,不知道具體作用。參考下面這段話:
http://blog.csdn.net/ryman/archive/2004/11/02/162947.aspx
--------------------
要理解"EHCI"及其同類是什麼,首先要知道每塊支持插入 USB 設備的主板或 PCI 卡都需要有 USB 主控制器芯片組。這個特別的芯片組與插入系統的 USB 設備進行相互操作,並負責處理允許 USB 設備與系統其它部分通信所必需的所有低層次細節。 
Linux USB驅動程序有三種不同的 USB 主控制器選項是因爲在主板和 PCI 卡上有三種不同類型的 USB 芯片。"EHCI"驅動程序設計成爲實現新的高速
 USB 2.0 協議的芯片提供支持。"OHCI"驅動程序用來爲非 PC 系統上的(以及帶有 SiS 和 ALi 芯片組的 PC 主板上的)
USB 芯片提供支持。"UHCI"驅動程序用來爲大多數其它 PC 主板(包括 Intel 和 Via)上的 USB 實現提供支持。只需選擇與希望
啓用的 USB 支持的類型對應的"?HCI"驅動程序即可。如有疑惑,爲保險起見,可以啓用"EHCI"、"UHCI" (兩者中任選一種,它們之間沒
有明顯的區別)和"OHCI"。(趙明注:根據文檔,EHCI已經包含了UHCI和OHCI,但目前就我個人的測試,單獨加EHCI是不行的,通常我的做
法是根據主板類型加載UHCI或OHCI後,再加載EHCI這樣纔可以支持USB2.0設備)。
--------------------
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章