|
楼主 |
发表于 2006-4-26 12:07:42
|
显示全部楼层
“用windows的boot loader 引导linux 的方法”
谢谢的大家帮助
linux系统搞定了。 我用的还是window 的 boot loader. 只是把 Linux boot sector copy 到了 windows partition上面. 我放在了 C:\BOOTSECT.LNX。 再在windows 里面 boot.ini 加上了C:\BOOTSECT.LNX="Linux"
具体方法
如下:
1.From Linux, copy the Linux boot sector from /boot to a file using the dd command.
2.In the below, replace /dev/hda3 with your boot partition's location
# dd if=/dev/hda3 of=/bootsect.lnx bs=512 count=1
3.Copy bootsect.lnx onto a floppy disk.
4.If mcopy is available, this is easy:
# mcopy /bootsect.lnx a:
If mcopy is not available (e.g. a minimal install of Linux) you'll need to mount the floppy drive and then copy:
# mount /dev/fd0 /mnt
# cp /bootsect.lnx /mnt
# umount /mnt
5.Boot W2K, log in as Administrator and copy bootsect.lnx from your floppy disk onto the root of your C: drive
6.Edit C:\BOOT.INI and add the following line at the end:
C:\BOOTSECT.LNX="Linux"
还有个简单方法
有个软件 http://www.winimage.com/bootpart.htm。 在你的windows, 里面的dos下运行的。 按照里面的说明书 1行命令 以后。从新启动以后你就看到了 如下菜单
Windows 2000 Professional
Linux
有什么切磋的 联系我 别客气 哥们儿 |
|