Ubuntu 没有在密钥上安装我的磁盘?

Ubuntu 没有在密钥上安装我的磁盘?

我有一张磁盘,它运行良好,但是在使用 Windows 将其格式化为 Fat32 后突然将它连接到我的 Linux 却无法安装它,我该怎么办?

这是输出lsusb

$ ls usb
Bus 002 Device 003: ID 0a5c:21d7 Broadcom Corp. BCM43142 Bluetooth 4.0
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 005: ID 0c45:6449 Microdia
Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 001 Device 003: ID 138a:0011 Validity Sensors, Inc. VFS5011 Fingerprint Reader 
Bus 001 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 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 090c:1000 Silicon Motion, Inc. - Taiwan (formerly Feiya Technology Corp.) Flash Drive
Bus 003 Device 002: ID 046d:c52f Logitech, Inc. Unifying Receiver
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

mounting: mount: special device /dev/sdb1 does not exist

$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 698.7G  0 disk 
├─sda1   8:1    0 690.8G  0 part /
├─sda2   8:2    0     1K  0 part 
└─sda5   8:5    0   7.9G  0 part [SWAP]

sdc      8:32   1  59.6G  0 disk 

sr0     11:0    1  1024M  0 rom  

答案1

由于 USB 是用 FAT32 文件系统格式化的,您可以使用此命令挂载它吗?

$ sudo mount /dev/sdb1 /mnt

您也可以参考帮助在 Ubuntu 文档中。

相关内容