如何从 USB 驱动器复制文件

如何从 USB 驱动器复制文件

如何从 Ubuntu Server 复制或访问 USB 驱动器上的文件? 这个答案在这里不起作用,我得到了

mount: you must specify the filesystem type

没有人解释如何解决。在我输入

sudo mount /dev/sdc /media/usb

其中 /dev/sdc 应该是我的 USB。

我该怎么做?

答案1

您可以使用选项指定文件系统类型-t。如下所述man mount

   -t, --types fstype
          The argument following the -t is used to indicate the filesystem
          type.  The filesystem types which are currently supported depend
          on the running  kernel.   See  /proc/filesystems  and  /lib/mod‐
          ules/$(uname  -r)/kernel/fs  for a complete list of the filesys‐
          tems.  The most common are ext2, ext3, ext4, xfs,  btrfs,  vfat,
          sysfs, proc, nfs and cifs.

因此,要安装 FAT32 (vfat) 驱动器,您需要运行:

sudo mount -t vfat /dev/sdc /media/usb

但是,您不是挂载设备,而是挂载分区。您所需的可能是:

 sudo mount /dev/sdc1 /media/usb

或者,如果它仍然抱怨:

sudo mount -t vfat /dev/sdc1 /media/usb

有关更多详细信息,请使用 的输出更新您的问题sudo fdisk -l /dev/sdc

答案2

启动应用程序 gnome-disk-utility,在侧边栏上找到您的 USB,然后单击文件系统图表下的三角形播放按钮,它就会挂载它。

像这样: 挂载USB:

相关内容