在 Windows 版 Lubuntu 上启动 Pendrive

在 Windows 版 Lubuntu 上启动 Pendrive

我最近在我的 acer aspire 4720z 上安装了 Lubuntu,想切换回 Windows,但主要问题是我无法通过 rufus 通过 USB 获取 iso(因为它无法识别我的 pendrive,我已经从 rufus 网站安装了 rufus-3.13.exe,并通过命令从 Lx 终端运行它 - wine rufus-3.13.exe,但它无法识别我的 USB)

我尝试通过应用程序写入我的 USB(我认为是磁盘),但当我启动系统并尝试通过 U 盘启动 USB 时,系统提示没有操作系统。请帮帮我。我正在尝试安装 win 8.1 或 10 或 7,但请让我退出 Lubuntu............PLZZZZZZZZ

答案1

虽然我不确定这是否有效,但还是尝试一下吧。

  1. 插入您的 USB 并运行磁盘。
  2. 点击“格式化磁盘”,在分区中选择“MSDOS”。
  3. 单击创建新分区并选择 NTFS 系统。
  4. 安装 Windows 10 ISO 并将所有文件复制到您的 USB。

您应该能够从 USB 启动并安装 Windows 10。

答案2

使用 Ubuntu GRUB 无需 USB 安装 Windows 10

  • 备份目标驱动器。

  • 在硬盘上创建一个 6GB 的 NTFS 分区并将 Windows ISO 提取到其中。

  • 在硬盘上创建一个 20GB 或更大的 NTFS 分区用于 Windows 安装。

  • 打开磁盘(Gnome-Disks),并记下设备(/dev/sdx)和 Windows ISO 提取分区的 UUID。

  • 对于 msdos 分区表,将以下菜单项复制到/etc/grub.d/40-custom/*:

menuentry 'Windows Recovery Environment (on /dev/sda4)' --class windows --class os $menuentry_id_option 'osprober-chain-592C85254E2CD0B7' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos4'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos4 --hint-efi=hd0,msdos4 --hint-baremetal=ahci0,msdos4  592C85254E2CD0B7
    else
      search --no-floppy --fs-uuid --set=root 592C85254E2CD0B7
    fi
    parttool ${root} hidden-
    drivemap -s (hd0) ${root}
    chainloader +1
    ntldr /bootmgr
}
  • 编辑菜单项,将 更改sda4 to sdaxmsdos4msdosx4 处),并将 592C85254E2CD0B7 更改为 UUID(3 处),以适合上述第 4 步。

  • 运行sudo update grub确认ntldr /bootmgrgrub.cfg 中出现的内容。

  • 将计算机启动到新创建的 Windows 菜单项,并将 Windows 安装到其新分区中。

  • 如果需要,请重新安装 Ubuntu,GRUB 引导加载程序将被 Windows 引导加载程序取代。

*对于 gpt 分区表,将以下菜单项复制到/etc/grub.d/40-custom/

menuentry 'Windows Recovery Environment (on /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-5642BC722509341F' {
    insmod part_gpt
    insmod ntfs
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  5642BC722509341F
    else
      search --no-floppy --fs-uuid --set=root 5642BC722509341F
    fi
    drivemap -s (hd0) ${root}
    chainloader +1
    ntldr /bootmgr
}

从 GRUB 菜单选择 Windows 启动并按照说明进行操作。

相关内容