我正在使用Ubuntu18.04.1版本,现在也想使用Windows 10。我已经下载了WoeUSB来为Windows创建可引导的USB,但是在安装时我会收到以下错误消息。在此之前,我已经将USB格式化为NTFS。
Installation failed!
Exit code: 256
Log:
WoeUSB v@@WOEUSB_VERSION@@
==============================
Mounting source filesystem...
mount: /media/woeusb_source_1533820829_2541: wrong fs type, bad option, bad superblock on /dev/loop8, missing codepage or helper program, or other error.
mount_source_filesystem: Error: Unable to mount source media
Error: Unable to mount source filesystem
Unmounting and removing "/media/woeusb_source_1533820829_2541"...
umount: /media/woeusb_source_1533820829_2541: not mounted.
cleanup_mountpoint: Warning: Unable to unmount "/media/woeusb_source_1533820829_2541".
Some mountpoints are not unmount/cleaned successfully and must be done manually
You may now safely detach the target device发布于 2019-03-27 15:52:05
Windows 10安装映像将需要NTFS,而不是FAT32。
WoeUSB图形用户界面会因为图像比受支持的文件格式更大而抓狂,但它将在命令行中工作。
假设SDD是您的USB棒,首先在上面为NTFS格式化一个分区。这个分区将是SDD1,但是在命令行中放置设备,而不是像这样的分区:
woeusb --target-filesystem NTFS --device ./Win10_1809Oct_English_x64.iso /dev/sdd这个命令行非常有效,我可以从微软网站下载的Windows映像创建一个Windows 10启动棒。
发布于 2021-05-09 13:49:10
另一个工具是腹型。它的优点是可以同时引导Windows.iso和一个实时的linux系统。
# you may use a newer version
wget -O- https://github.com/ventoy/Ventoy/releases/download/v1.0.43/ventoy-1.0.43-linux.tar.gz | tar -xz
cd ventoy*
lsblk
# change sdx to your usb pendrive
sudo ./Ventoy2Disk.sh -i /dev/sdx
sudo mount /dev/sdx1 /mnt
cp ~/Downloads/<windows.iso> /mnt && sync
cp ~/Downloads/<linux-live.iso> /mnt && sync
sudo umount /mnt
sudo eject /dev/sdx # may fail, doesn't matter现在你的吊坠准备好了。您可以查看如何与Linux一起安装一起安装?以了解如何继续进行。如果您需要在Windows安装之后修复您的引导加载程序,您可以从相同的usb吊坠启动到linux实时系统。尽管有了EFI,您也许可以从bios启动设备选择屏幕上启动您的旧的ubuntu系统。
@masterxilo在Windows中是对的--随着时间的推移,安装变得越来越简单。
发布于 2018-09-18 09:30:06
将USB驱动器格式化为FAT32 (或您的格式化程序可能调用它).只需尝试所有包含FAT的文件),只需将所有文件从ISO复制到它。
UEFI‘’es可以从FAT32分区启动--它们将尝试找到一个文件efi\boot\bootx64.efi或efi\boot\bootia32.efi (不区分大小写),您会注意到在典型的Windows或映像中存在该文件。
今天的事情就这么简单。不再需要使用覆盖引导扇区的特殊程序。
https://askubuntu.com/questions/1063842
复制相似问题