Xubuntu 不再读取 USB 闪存驱动器

Xubuntu 不再读取 USB 闪存驱动器

今天早上我使用了闪存驱动器,但是当我回家使用它时,它不再工作了。我开始认为,当我没有正确弹出时,我可能已经损坏了它。我运行 fdisk 来查找分区...

sudo fdisk -l

我发现了与我的设备相似的设备...

Disk /dev/sda: 15.6 GB, 15571353600 bytes
194 heads, 21 sectors/track, 7465 cylinders, total 30412800 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: 0xa9f375df

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2880    30412799    15204960    b  W95 FAT32

我应该从这里做什么来尝试使闪存驱动器再次可读?


编辑:

按照要求:

$ mkdir /media/nax/usb
$ mount /dev/sda1 /media/nax/usb
mount: can't find /dev/sda1/media/nax/usb in /etc/fstab or /etc/mtab

答案1

将您的 USB 挂载到文件夹中以再次读取。

mkdir /media/<your username>/usb
mount /dev/sda1 /media/<your username>/usb

相关内容