我遇到了一个问题。我的笔记本电脑上安装了 Ubuntu 12.04 两年了,到目前为止 USB 都没有问题。但从今天晚上开始,电脑就无法安装 USB。我读了一些讨论,但问题仍然存在。
sudo fdisk -l
节目
Disk /dev/sdb: 2003 MB, 2003828736 bytes
43 heads, 42 sectors/track, 2167 cylinders, total 3913728 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: 0x00095b2e
我的 USB 有fat32
文件系统:
使用带有文件系统的 USB 时ext4
,显示:
Disk /dev/sdb: 31.5 GB, 31457280000 bytes
255 heads, 63 sectors/track, 3824 cylinders, total 61440000 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: 0x000eecfd
其中数据是我的 SSD 的一个分区。whitsudo lsusb
命令:
Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0020 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 001 Device 003: ID 8644:8003
最后一行是 2GB USB,我有 Arduino,它工作正常。使用我家里的另一台电脑,使用 ubuntu 也可以完美读取 USB。我该如何解决我的问题?
答案1
答案2
手动挂载设备/分区。
尝试:
# mount -t ntfs /dev/sdb1
如果问题仍然存在:
# mkdir /media/$USER/USB1 # mount -t ntfs /dev/sdb1 /media/$USER/USB1
您可以尝试使用设备/分区的 UUID/LABEL 来挂载设备/分区。双击给定的设备/分区分区检索
<uuid>
。然后:# mount -t ntfs UUID=<uuid>
或者
# mount -t ntfs /dev/disk/by-uuid/<uuid>
或者
# mount -t ntfs LABEL=<label>
或者
# mount -t ntfs /dev/disk/by-label/<label>
3a. 您可以定义挂载点:
# mount -t ntfs /dev/disk/by-uuid/<uuid> <mountpoint>
- 如果没有得到预期的结果,请使用 USB 电流表检查 USB 端口是否正常供电。
进一步阅读:
A。$ man mount
B.山在维基百科。
C。安装(8)在死亡网。