Ubuntu 上的 Windows USB 驱动器反复失败

Ubuntu 上的 Windows USB 驱动器反复失败

我正在尝试启动 Windows-10 的 USB 并使其可以从 Linux(Ubuntu)启动。

为此,我安装了 Woe-USB 作为 snap 包。USB 驱动器格式化为exfat

我收到这个奇怪的错误:

sudo woe-usb.woeusb --device ~/Desktop/Win10_2004_EnglishInternational_x64.iso /dev/sdb
WoeUSB v@@WOEUSB_VERSION@@
==============================
/snap/woe-usb/21/bin/woeusb: line 918: /bin/mount: Permission denied
/snap/woe-usb/21/bin/woeusb: line 899: /bin/mount: Permission denied
Mounting source filesystem...
mkdir: cannot create directory '/media/woeusb_source_1590608570_38263': Permission denied                                             
mount_source_filesystem: Error: Unable to create "/media/woeusb_source_1590608570_38263" mountpoint directory
/snap/woe-usb/21/bin/woeusb: line 1302: /bin/mount: Permission denied                                                                 
mount_source_filesystem: Error: Unable to mount source media
Error: Unable to mount source filesystem                                                                                              
/snap/woe-usb/21/bin/woeusb: line 899: /bin/mount: Permission denied                                                                  
You may now safely detach the target device

有任何想法吗?

答案1

您收到/bin/mount: Permission denied mount_source_filesystem: Error: Unable to mount source media Error: Unable to mount source filesystem错误。将 woe-usb:removable-media 插头连接到 woe-usb:removable-media 插槽,以便 WoeUSB 自动安装 USB 设备。

  1. 在 Ubuntu 软件中搜索 woeusb 并单击它进入 woe-usb 屏幕。

  2. 单击权限按钮。

  3. 切换在可移动存储设备上读取/写入文件滑块从 OFF 到 ON,如下面的屏幕截图所示。

  4. 使用您的用户密码进行身份验证时需要身份验证窗口弹出。

woe-usb 权限

答案2

安装

修复权限

发生这种情况是因为WoeUSB在“分区”下运行/snap,要解决此问题,只需将其复制到其他位置,例如:

sudo cp -v /snap/woe-usb/21/bin/woeusb /usr/bin/

用法

sudo /usr/bin/woeusb --device PATHTO.iso /dev/sdb --target-filesystem NTFS

笔记:确保更改PATHTO.iso为所需的图像,并/dev/sdb更改为正确的 USB 设备(您可以用来sudo blkid查看您的设备)和 NTFS,否则,请参阅支持的列表。

相关内容