ila*_*123 5 usb-drive disk external-hdd
Ubuntu 12.10 64 位似乎无法识别我的外部硬盘。它是带有 WD 3TB 驱动器的 Vantec NST-310S3 外置磁盘盒。该磁盘有两个 NTFS 分区。我的电脑是双启动系统。在 Windows 7 下,硬盘工作正常,但我不能让它在 Ubuntu 上工作。当驱动器连接到 PC 时,命令sudo fdisk -l似乎永远挂起。
下面是lsusb和cat /proc/partitions没有外部驱动器,然后连接它的输出。我还在最后添加了 dmesg 命令的最后几行。
首先没有驱动器:
ilan@linux:~$ lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 13ba:0017 Unknown PS/2 Keyboard+Mouse Adapter
Bus 001 Device 004: ID 046d:c50e Logitech, Inc. Cordless Mouse Receiver
Bus 001 Device 005: ID 0ac8:3420 Z-Star Microelectronics Corp. Venus USB2.0 Camera
ilan@linux:~$ cat /proc/partitions
major minor #blocks name
8 0 1953514584 sda
8 1 102400 sda1
8 2 629043200 sda2
8 3 367001600 sda3
8 4 1 sda4
8 5 471859200 sda5
8 6 157286400 sda6
8 7 324115456 sda7
8 8 4101120 sda8
11 0 1048575 sr0
Run Code Online (Sandbox Code Playgroud)
第二个使用 USB 3 驱动器:
ilan@linux:~$ lsusb
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 004 Device 002: ID 174c:55aa ASMedia Technology Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 13ba:0017 Unknown PS/2 Keyboard+Mouse Adapter
Bus 001 Device 004: ID 046d:c50e Logitech, Inc. Cordless Mouse Receiver
Bus 001 Device 005: ID 0ac8:3420 Z-Star Microelectronics Corp. Venus USB2.0 Camera
ilan@linux:~$ cat /proc/partitions
major minor #blocks name
8 0 1953514584 sda
8 1 102400 sda1
8 2 629043200 sda2
8 3 367001600 sda3
8 4 1 sda4
8 5 471859200 sda5
8 6 157286400 sda6
8 7 324115456 sda7
8 8 4101120 sda8
11 0 1048575 sr0
8 16 2930266584 sdb
ilan@linux:~$ lsusb -v -s 004:002
Bus 004 Device 002: ID 174c:55aa ASMedia Technology Inc.
Couldn't open device, some information will be missing
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 3.00
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 9
idVendor 0x174c ASMedia Technology Inc.
idProduct 0x55aa
bcdDevice 1.00
iManufacturer 2
iProduct 3
iSerial 1
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 44
bNumInterfaces 1
bConfigurationValue 1
iConfiguration 0
bmAttributes 0xc0
Self Powered
MaxPower 0mA
Interface Descriptor:
bLength 9
bDescriptorType 4
bInterfaceNumber 0
bAlternateSetting 0
bNumEndpoints 2
bInterfaceClass 8 Mass Storage
bInterfaceSubClass 6 SCSI
bInterfaceProtocol 80 Bulk-Only
iInterface 0
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81 EP 1 IN
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0400 1x 1024 bytes
bInterval 0
bMaxBurst 15
Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x02 EP 2 OUT
bmAttributes 2
Transfer Type Bulk
Synch Type None
Usage Type Data
wMaxPacketSize 0x0400 1x 1024 bytes
bInterval 0
bMaxBurst 15
ilan@linux:~$ sudo fdisk -l
[sudo] password for ilan:
Disk /dev/sda: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf1b4f1ee
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
/dev/sda2 206848 1258293247 629043200 7 HPFS/NTFS/exFAT
/dev/sda3 1258293248 1992296447 367001600 7 HPFS/NTFS/exFAT
/dev/sda4 1992298494 3907028991 957365249 f W95 Ext'd (LBA)
/dev/sda5 1992298496 2936016895 471859200 7 HPFS/NTFS/exFAT
/dev/sda6 2936018944 3250591743 157286400 7 HPFS/NTFS/exFAT
/dev/sda7 3250593792 3898824703 324115456 83 Linux
/dev/sda8 3898826752 3907028991 4101120 82 Linux swap / Solaris
Run Code Online (Sandbox Code Playgroud)
连接外部驱动器后的 dmesg 输出:
[ 23.740567] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 23.740786] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 49.144673] usb 4-1: >new SuperSpeed USB device number 2 using xhci_hcd
[ 49.163039] usb 4-1: >Parent hub missing LPM exit latency info. Power management will be impacted.
[ 49.166789] usb 4-1: >New USB device found, idVendor=174c, idProduct=55aa
[ 49.166793] usb 4-1: >New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 49.166796] usb 4-1: >Product: AS2105
[ 49.166799] usb 4-1: >Manufacturer: ASMedia
[ 49.166801] usb 4-1: >SerialNumber: 0123456789ABCDEF
[ 49.206372] usbcore: registered new interface driver uas
[ 49.228891] Initializing USB Mass Storage driver...
[ 49.229042] scsi6 : usb-storage 4-1:1.0
[ 49.229115] usbcore: registered new interface driver usb-storage
[ 49.229116] USB Mass Storage support registered.
[ 64.045528] scsi 6:0:0:0: >Direct-Access WDC WD30 EZRX-00MMMB0 80.0 PQ: 0 ANSI: 0
[ 64.046224] sd 6:0:0:0: >Attached scsi generic sg2 type 0
[ 64.046881] sd 6:0:0:0: >[sdb] Very big device. Trying to use READ CAPACITY(16).
[ 64.047610] sd 6:0:0:0: >[sdb] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
[ 64.048368] sd 6:0:0:0: >[sdb] Write Protect is off
[ 64.048373] sd 6:0:0:0: >[sdb] Mode Sense: 23 00 00 00
[ 64.048984] sd 6:0:0:0: >[sdb] No Caching mode page present
[ 64.048987] sd 6:0:0:0: >[sdb] Assuming drive cache: write through
[ 64.049297] sd 6:0:0:0: >[sdb] Very big device. Trying to use READ CAPACITY(16).
[ 64.050942] sd 6:0:0:0: >[sdb] No Caching mode page present
[ 64.050944] sd 6:0:0:0: >[sdb] Assuming drive cache: write through
[ 94.245006] usb 4-1: >reset SuperSpeed USB device number 2 using xhci_hcd
[ 94.262553] usb 4-1: >Parent hub missing LPM exit latency info. Power management will be impacted.
[ 94.263805] xhci_hcd 0000:03:00.0: >xHCI xhci_drop_endpoint called with disabled ep ffff8800d37d1c00
[ 94.263808] xhci_hcd 0000:03:00.0: >xHCI xhci_drop_endpoint called with disabled ep ffff8800d37d1c40
[ 125.262722] usb 4-1: >reset SuperSpeed USB device number 2 using xhci_hcd
[ 125.280304] usb 4-1: >Parent hub missing LPM exit latency info. Power management will be impacted.
[ 125.281511] xhci_hcd 0000:03:00.0: >xHCI xhci_drop_endpoint called with disabled ep ffff8800d37d1c00
[ 125.281516] xhci_hcd 0000:03:00.0: >xHCI xhci_drop_endpoint called with disabled ep ffff8800d37d1c40
Run Code Online (Sandbox Code Playgroud)
小智 3
USB 3.0 设备不提供延迟信息。
当您连接 USB 设备时,内核会提供 10 毫秒的延迟供设备初始化,然后内核开始向设备发送命令。
对于 USB2.0 设备,延迟被硬编码到内核中,但对于 3.0 设备,该值是可配置的并且由设备提供。
如果设备不为内核提供延迟值,内核将永远不会向驱动器发送命令,因为它将永远等待。
解决此问题的唯一方法是获取不同的驱动器外壳(您的驱动器外壳已损坏)或修补内核以使用 USB3.0 中的默认延迟,这将非常困难,并且可能还会破坏其他东西。
我以前也遇到过类似的问题。
启用 ehci 切换并在 BIOS 中启用传统支持。
还可以在 3.0 端口中尝试 USB 2.0 集线器,以及其中的驱动器(为了排除故障)
验证您的 3.0 总线板上没有额外的电源连接器;它就像一个 4 针。(有时会发生)-因为,如果我没记错的话,如果没有那个电源连接器,它仍然会使用低功率 USB 设备,但不会使用更高功率的硬盘。(正确)
希望这里有帮助你。
| 归档时间: |
|
| 查看次数: |
15586 次 |
| 最近记录: |