安装gparted

 

linux安装windows启动盘

 

 

制作引导:

sudo grub-install --target=i386-pc --boot-directory="/media/root/FA00-5777/boot" /dev/sdc1

 

linux安装windows启动盘

 

boot/grub/下添加文件grub.cfg

default=1  
timeout=15
color_normal=light-cyan/dark-gray
menu_color_normal=black/light-cyan
menu_color_highlight=white/black

menuentry "Start Windows Installation" {
    insmod ntfs
    insmod search_label
    search --no-floppy --set=root --label FA00-5777 --hint hd0,msdos1
    ntldr /bootmgr
    boot
}

menuentry "Boot from the first hard drive" {
    insmod ntfs
    insmod chain
    insmod part_msdos
    insmod part_gpt
    set root=(hd1)
    chainloader +1
    boot
}

 

相关文章:

  • 2021-10-07
  • 2022-01-30
  • 2021-04-08
  • 2021-10-16
  • 2021-12-30
  • 2021-08-18
  • 2021-08-23
  • 2022-12-23
猜你喜欢
  • 2021-12-25
  • 2021-11-15
  • 2021-05-14
  • 2021-12-30
  • 2021-11-01
相关资源
相似解决方案