|
8#
楼主 |
发表于 2022-1-25 09:50:48
|
只看该作者
@echo off
if exist core.img (
del /f /q core.img
)
if exist bootmgr (
attrib -s -h -r bootmgr
del /f /q bootmgr
)
grub-mkimage -d i386-pc -c i386-pc.cfg -p / -o core.img -O i386-pc biosdisk part_msdos fat exfat ntfs configfile search help linux linux16 chain ntldr echo reboot halt
copy /b i386-pc\lnxboot.img+core.img bootmgr
attrib +s +h +r bootmgr
pause
@echo on |
|