分页: 1 / 1

ISO文件硬盘安装时出现以下问题,怎么办啊?

发表于 : 2010-01-10 10:41
转角遇到鬼
zonkel 写了:1 下载grub4dos, 将目录中的menu.lst, grldr, grub.exe三个个文件复制到C盘根目录下。

2 将下载好的ubuntu-9.10-dvd-amd64.iso文件复制到C盘根目录下,解压缩ISO文件的casper目录内的initrd.lz和vmlinuz两个文件,也仅需要这两个文件即可,并将其拷贝到C盘根目录下。

3 在C盘根目录下menu.lst文件中添加

代码: 全选

 title Install Ubuntu 9.10
find --set-root /ubuntu-9.10-dvd-amd64.iso
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-9.10-dvd-amd64.iso
initrd /initrd.lz
4 然后右键“我的电脑-属性-高级”,然后点第三个“设置”,在新窗口中点“编辑”,在出现的文件最后添加:在最后一行添加C:\grldr="Ubuntu 9.10 Install"

5 重新启动系统,然后菜单选择 Ubuntu 9.10 Install,选择之后就会出现类似光盘启动的界面。在进入一个桌面系统后,点击桌面上的install就进入了安装过程。

6 一路点下去,会碰到需要点击“安装”, 这时可以输入ctrl+alt+f1进入命令行,运行下面的命令:

代码: 全选

sudo umount -l /isodevice
然后输入ctrl+alt+f7,点击“安装”, 搞定。
按上面说的,逐步下来,到启动菜单那里选择 Ubuntu 9.10 Install后,出现"systemroot\\system32\\hal.dll文件非法或该文件已损坏,系统无法启动"提示,怎么办?

Re: ISO文件硬盘安装时出现以下问题,怎么办啊?

发表于 : 2010-01-10 10:57
jxhow
你安装的是i386?
menu.lst也是这么写的?

viewtopic.php?f=77&t=250801

Re: ISO文件硬盘安装时出现以下问题,怎么办啊?

发表于 : 2010-01-10 11:02
转角遇到鬼
jxhow 写了:你安装的是i386?
menu.lst也是这么写的?

viewtopic.php?f=77&t=250801
安装的是ubuntu-9.10-alternate-amd64.iso,menu.lst是这么写的。

代码: 全选

# 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 blue/green yellow/red white/magenta white/magenta
timeout 30
default /default

title Install Ubuntu 9.10
find --set-root /ubuntu-9.10-alternate-amd64.iso
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-9.10-alternate-amd64.iso
initrd /initrd.lz

title find and load NTLDR of Windows NT/2K/XP
fallback 1
find --set-root --ignore-floppies --ignore-cd /ntldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /ntldr
chainloader /ntldr
savedefault --wait=2

title find and load BOOTMGR of Windows VISTA
fallback 2
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2

title find and load CMLDR, the Recovery Console of Windows NT/2K/XP
fallback 3
find --set-root --ignore-floppies --ignore-cd /cmldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /cmldr
chainloader /cmldr
#####################################################################
# 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 find and load IO.SYS of Windows 9x/Me
fallback 4
find --set-root /io.sys
chainloader /io.sys
savedefault --wait=2

title find and boot 0PE.ISO
fallback 5
find --set-root /0PE/0PE.ISO
map /0PE/0PE.ISO (0xff) || map --mem /0PE/0PE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title find and boot MicroPE.ISO
fallback 6
find --set-root /boot/MicroPE.ISO
map /boot/MicroPE.ISO (0xff) || map --mem /boot/MicroPE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title Parted Magic ISO
fallback 7
find --set-root /pmagic.iso
map /pmagic.iso (0xff) || map --mem /pmagic.iso (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title Ultimate Boot CD ISO
fallback 8
find --set-root /ubcd.iso
map /ubcd.iso (0xff) || map --mem /ubcd.iso (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title commandline
commandline

title floppy (fd0)
chainloader (fd0)+1
rootnoverify (fd0)

title back to dos
quit

title reboot
reboot

title halt
halt

title MAXDOS.IMG
find --set-root --ignore-floppies /boot/MAXDOS.IMG
map --mem /boot/MAXDOS.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)

这是menu.lst里面的全部内容。