|
你的10.04的都没有启动成功,就跑去弄10.10的?官方提供的下载在原10.04的内核中加入了驱动,你的10.10呢?
说一下我的:
vboot文件夹在c:\,ubuntu-1004-desktop-i386.vhd也在c盘
(如果想都放到其他主分区,相应修改下面的的(hd0,1)和root=/dev/sda1 即可)
————————————————————————————————————————————
简要说一次:首先在下面网页下载官方已经制作好的ubuntu10.04的vhd镜像文件ubuntu-1004.7z
http://www.vmlite.com/index.php/ ... ux-vboot-appliances
与之前的引导xp的文件相比,其实我们需要的只有这个压缩包中的两个文件:ubuntu-1004-desktop-i386.vhd和\ubuntu-1004\vboot\grub目录下的vhd.mod
将ubuntu-1004-desktop-i386.vhd解压至C:\,将vhd.mod放置在你的C:\vboot\grub目录下,
修改C:\vboot\grub目录下的grub.cfg文件,添加如下代码:
menuentry "VHD Ubuntu 10.04, Linux 2.6.32-21-generic" {
insmod vhd
vhd vhd0 (hd0,1)/ubuntu-1004-desktop-i386.vhd --partitions
linux (vhd0,1)/boot/vmlinuz-2.6.32-21-generic root=/dev/sda1 vloop=/ubuntu-1004-desktop-i386.vhd vlooppart=p1 quiet splash
initrd (vhd0,1)/boot/initrd.img-2.6.32-21-generic
}
至此,你就可以重启电脑开始你的vhd ubuntu10.04之旅了。 |
|