我可以在没有 USB 或 CD 的情况下在 Ubuntu 22.04 上下载 Windows 10 吗?

我可以在没有 USB 或 CD 的情况下在 Ubuntu 22.04 上下载 Windows 10 吗?

所以基本上我丢了我的 Windows 10 USB,我买不起新的。我需要 Windows,因为我运行的大多数程序都在 Windows 上。有人请帮忙

答案1

从硬盘安装 Windows

1- 下载 Windows 7/8/10/11 iso 文件。2-
将 iso 文件提取到ntfs数据分区。3-
sudo update-grub将菜单项添加到/boot/grub/grub.cfg

menuentry "Windows installation Environment" --class windows --class os {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  55DD0595418E5BFC
    else
      search --no-floppy --fs-uuid --set=root 55DD0595418E5BFC
    fi
    parttool ${root} hidden-
    drivemap -s (hd0) ${root}
    chainloader +1
}

55DD0595418E5BFC用磁盘实用程序提供的该分区的 uuid 替换。
将条目中的 0 和 1 替换为您的,0 是硬盘号,1 是分区号。

相关:在 Ubuntu 中创建包含多个 ubuntu 版本 hbcd-pe-64 和多个窗口的 USB 驱动器

笔记:安装 Windows 将从您的硬盘中删除 grub 引导加载程序,因此如果您想返回 ubuntu,您将必须使用 boot-repair 或 ubuntu live USB 来恢复 grub 引导加载程序并将 Windows 条目添加到 grub 菜单,因此无需再次使用 Windows 引导加载程序。

相关内容