Windows 2003下安装Ubuntu 9.10 Alpha 2后不能进入Win2K3

启动讨论 grub/grub2/syslinux/grub4dos/Lilo
回复
Cyber.W
帖子: 13
注册时间: 2009-06-25 0:28

Windows 2003下安装Ubuntu 9.10 Alpha 2后不能进入Win2K3

#1

帖子 Cyber.W » 2009-07-22 1:02

最近心血来潮,突然爱上了Ubuntu ,下载了一个Ubuntu 9.04版,通过Wubi.exe安装到windows 2003系统中,试用了以后,感觉还行。但是总是有说不出的感觉!
前几天又从网上下载了Ubuntu 9.10 Alpha 2版的,先用Unetbootin-357把karmic-desktop-i386.iso文件写到U盘中,用U盘起动,起动后点桌面上的安装到硬盘,一步一步安装完了之后,重启。。。。。
用颤抖着的手输完开机密码,回车,崭新的画面使我眼前一亮,随后就傻了:我的windows 2003没了!
只有以下4项:
Ubuntu, linux 2.6.30-8-generic
Ubuntu, linux 2.6.30-8-generic (recovery mode)
Memory test (memtest86+)
Memory test (memtest86+, serial console 115200)
这怎么办? Windows 2003下有很多的工程文件和设计文档,还有公司的几个网站的源程序,要是找不回 来我的前途就没了,老板肯定要炒我鱿鱼了 :em06
上网一查,只是MBR内容改了,这个心中不怕了 :em05 先不管了,选第一项进去再说。
进到系统中,先在“系统-系统管理-语言支持”中打开语言管理面页,在网上更新语言包。N分钟之后,重启,终于可以看到中文面了。
试用了一天,感觉好极了,和windos没有什么差别了,但是安全性是windows的N倍!新增加了个星际译王感觉很爽,就像windows下的金山词霸似的,随着应用软件的丰富,Ubuntu进入家用的日子就要来临了!!!朋友扔掉XP装上Ubuntu吧!
啰嗦了一堆废话,老板来要活了,唉呀!我的Win2K3!我的文件!!我的工程图!!!
再上网G一下,说是在/boot/grub/menu.lst中加入Windows启动项就行了。再进入我的/boot/grub/中没有找到menu.lst这个文件 :em20 :em06 我想有起动项肯定有配置文件,我分析了一下,决定打开grub.cfg这个文件,正如我的猜想,下面是我们想要的文件:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
if loadfont /usr/share/grub/ascii.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, linux 2.6.30-8-generic" {
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
linux /boot/vmlinuz-2.6.30-8-generic root=UUID=1bccfe5a-0e47-4e5e-a668-4e864280220e ro quiet splash
initrd /boot/initrd.img-2.6.30-8-generic
}
menuentry "Ubuntu, linux 2.6.30-8-generic (recovery mode)" {
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
linux /boot/vmlinuz-2.6.30-8-generic root=UUID=1bccfe5a-0e47-4e5e-a668-4e864280220e ro single
initrd /boot/initrd.img-2.6.30-8-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file is an example on how to add custom entries
### END /etc/grub.d/40_custom ###

:em05 :em05 全在这呢!下面是我改好的文件:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
if loadfont /usr/share/grub/ascii.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Windows, Windows 2003 Server" {
set root=(hd0,1)(说明:硬盘分区不同,(hd0,1)不同)
chainloader +1
boot
}

menuentry "Ubuntu, linux 2.6.30-8-generic" {
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
linux /boot/vmlinuz-2.6.30-8-generic root=UUID=1bccfe5a-0e47-4e5e-a668-4e864280220e ro quiet splash
initrd /boot/initrd.img-2.6.30-8-generic
}
menuentry "Ubuntu, linux 2.6.30-8-generic (recovery mode)" {
set root=(hd0,10)
search --fs-uuid --set 1bccfe5a-0e47-4e5e-a668-4e864280220e
linux /boot/vmlinuz-2.6.30-8-generic root=UUID=1bccfe5a-0e47-4e5e-a668-4e864280220e ro single
initrd /boot/initrd.img-2.6.30-8-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file is an example on how to add custom entries
### END /etc/grub.d/40_custom ###

重启后出再了我的windows 2K3:

Windows, Windows 2003 Server
Ubuntu, linux 2.6.30-8-generic
Ubuntu, linux 2.6.30-8-generic (recovery mode)
Memory test (memtest86+)
Memory test (memtest86+, serial console 115200)

选1回车,进入了熟悉的windows画面 :em02 :em02 赶快画板,我可不想丢了饭碗 :em05 :em05
头像
xyf
帖子: 2032
注册时间: 2007-05-05 23:59
来自: 嘉兴

Re: Windows 2003下安装Ubuntu 9.10 Alpha 2后不能进入Win2K3

#2

帖子 xyf » 2009-07-22 13:48

很好,安装过程中分区环节要特别小心。
ufraw中文(raw图像处理)  http://sites.google.com/site/ufrawzh/
Gimp影像处理 http://sites.google.com/site/gimpcn/
Cyber.W
帖子: 13
注册时间: 2009-06-25 0:28

Re: Windows 2003下安装Ubuntu 9.10 Alpha 2后不能进入Win2K3

#3

帖子 Cyber.W » 2009-07-22 16:12

用wubi.exe安装到windows 2003下,搞了我两天8小时之外,在windows 2003下安装9.10 Alpha2双系统启动,又搞了我3天8小时之外,一个星期过去了俺总算是能自由的安装、卸载Ubuntu了 :em02
但是Grub还没有搞清楚,这星期争取把Grub1.96搞清!我发的都是初级问题,高手不要拍我砖 :em05
头像
jxhow
帖子: 5859
注册时间: 2008-10-24 22:02
来自: 浙江

Re: Windows 2003下安装Ubuntu 9.10 Alpha 2后不能进入Win2K3

#4

帖子 jxhow » 2009-07-22 22:16

:em11
佩服LZ的折腾精神
:em05 :em05
http://sb.google.com/ 提问前 请在右上角搜索一下
回复