U盘grub for dos menu.lst文件备份

自己的U盘一些重要文件备份。

 

# This is a sample menu.lst file. You should make some changes to it.
# The old install method of booting via the stage-files has been removed.
# Please install GRLDR boot strap code to MBR with the bootlace.com
# utility under DOS/Win9x or Linux.

color black/cyan yellow/cyan
timeout 30
default 0


#MAXDOS 8.0
title MAX DOS Tools V8
map --mem /minipe/MaxDOS/Maxs.sys (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)


#Windows 7 Install From Disk
title Windows 7 Install & Rescuse
rootnoverify (hd0,0)
chainloader /boot/bootmgr


#WinPE
title Windows PE
chainloader (hd0,0)/MINIPE/SETUPLDR.BIN


#CDlinux & Wireless
title OverBT4
find --set-root /CDlinux/bzImage
kernel /CDlinux/bzImage quiet CDL_LANG=zh_CN.UTF-8
initrd /CDlinux/initrd
boot

#Ubuntu Install From Disk
title Ubuntu 9.10 Install & Rescues
root(hd1,2)
kernel /ubuntu/vmlinuz boot=casper iso-scan/filename=/ubuntu/ubuntu-9.10-desktop-amd64 --label check live-install
initrd /ubuntu/initrd.lz

#Grub For Dos Boot ISO  (未验证)
title Hitachi Feature Tool
map --mem (hd0,0)/ftool.iso (hd32)
map --hook
chainloader (hd32)
savedefault --wait=2


title Veket System
kernel (hd0,0)/veket3.11/vmlinuz root=/dev/ram0 PMEDIA=idehd
initrd (hd0,0)/veket3.11/initrd.gz

title Start BackTrack FrameBuffer (1024x768)
kernel (hd0,0)/boot/vmlinuz BOOT=casper boot=casper nopersistent rw quiet vga=0x317
initrd (hd0,0)/boot/initrd.g

title install FREEBSD【引导启动盘】
find --set-root /8.0-RELEASE-i386-bootonly.iso
map --mem /8.0-RELEASE-i386-bootonly.iso (hd32)
map --hook
chainloader (hd32)
boot

#####################################################################
# write string "cmdcons" to memory 0000:7C03 in 2 steps:
#####################################################################
# step 1. Write 4 chars "cmdc" at 0000:7C03
write 0x7C03 0x63646D63
# step 2. Write 3 chars "ons" and an ending null at 0000:7C07
write 0x7C07 0x00736E6F
savedefault --wait=2

title reboot
savedefault --wait=2
reboot

title halt
savedefault --wait=2
halt

你可能感兴趣的:(windows,linux,dos,ubuntu,FreeBSD)