当前位置: 技术问答>linux和unix
刚刚用硬盘法装在win下装了linux帽9,最后都恭喜成功了,可是我重起电脑,还是只有一个win,为什么看不到引导呢?急!!等待高手帮助新手!
来源: 互联网 发布时间:2015-10-16
本文导语: 刚刚用硬盘法装在win下装了linux帽9,最后都恭喜成功了,可是我重起电脑,还是只有一个win,为什么看不到引导呢?急!!等待高手帮助新手! 我是用lilo作的引导...为什么重起后,就根本不出现引导呢?我也没有做启动盘. ...
刚刚用硬盘法装在win下装了linux帽9,最后都恭喜成功了,可是我重起电脑,还是只有一个win,为什么看不到引导呢?急!!等待高手帮助新手!
我是用lilo作的引导...为什么重起后,就根本不出现引导呢?我也没有做启动盘.
我是用lilo作的引导...为什么重起后,就根本不出现引导呢?我也没有做启动盘.
|
1、
dd if=/dev/hdaXXX of=/home//Redhat9.boot bs=512 count=1 #其中,hdaXXX是你的linux的boot所在分区(引导程序安装的分区)。"of="后面的是输出文件,如果输出到软盘或者U盘或者经过mount的Windows分区,则跳过第2步
2、重新启动,进入Windows,下载一个在Windows读取linux分区的软件(忘了叫什么名了,ext2dos ?),把Redhat9.boot文件copy出来,放在C:盘下
3、编辑 C:boot.ini,加入这么一行
C:Redhat9.boot="Redhat Linux 9.0"
4、保存boot.ini,重新启动Windows
附:linux 的 dd 命令帮助信息
-------------------
$ dd --help
Usage: dd [OPERAND]...
or: dd OPTION
Copy a file, converting and formatting according to the operands.
bs=BYTES force ibs=BYTES and obs=BYTES
cbs=BYTES convert BYTES bytes at a time
conv=CONVS convert the file as per the comma separated symbol list
count=BLOCKS copy only BLOCKS input blocks
ibs=BYTES read BYTES bytes at a time
if=FILE read from FILE instead of stdin
iflag=FLAGS read as per the comma separated symbol list
obs=BYTES write BYTES bytes at a time
of=FILE write to FILE instead of stdout
oflag=FLAGS write as per the comma separated symbol list
seek=BLOCKS skip BLOCKS obs-sized blocks at start of output
skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input
status=noxfer suppress transfer statistics
dd if=/dev/hdaXXX of=/home//Redhat9.boot bs=512 count=1 #其中,hdaXXX是你的linux的boot所在分区(引导程序安装的分区)。"of="后面的是输出文件,如果输出到软盘或者U盘或者经过mount的Windows分区,则跳过第2步
2、重新启动,进入Windows,下载一个在Windows读取linux分区的软件(忘了叫什么名了,ext2dos ?),把Redhat9.boot文件copy出来,放在C:盘下
3、编辑 C:boot.ini,加入这么一行
C:Redhat9.boot="Redhat Linux 9.0"
4、保存boot.ini,重新启动Windows
附:linux 的 dd 命令帮助信息
-------------------
$ dd --help
Usage: dd [OPERAND]...
or: dd OPTION
Copy a file, converting and formatting according to the operands.
bs=BYTES force ibs=BYTES and obs=BYTES
cbs=BYTES convert BYTES bytes at a time
conv=CONVS convert the file as per the comma separated symbol list
count=BLOCKS copy only BLOCKS input blocks
ibs=BYTES read BYTES bytes at a time
if=FILE read from FILE instead of stdin
iflag=FLAGS read as per the comma separated symbol list
obs=BYTES write BYTES bytes at a time
of=FILE write to FILE instead of stdout
oflag=FLAGS write as per the comma separated symbol list
seek=BLOCKS skip BLOCKS obs-sized blocks at start of output
skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input
status=noxfer suppress transfer statistics
|
lilo没装在MBR下,装在引导分区下了吧,而引导分区受WINDOWS管理,可能需要装LILO装到MBR中。
|
你可以先用光盘引导linux,然后使用dd命令导出引导区的前512字节,把导出的文件放到c盘根目录下,然后修改boot.ini。
|
建议安装grub引导工具
|
这个好像在进入linux系统(可以使用linux系统软盘启动或者光盘启动),然后使用lilo命令重新写一下MBR就可以了。
另外,诚如楼上所说,以后还是改用grub吧,这个比较好用。
好运
另外,诚如楼上所说,以后还是改用grub吧,这个比较好用。
好运
|
顶