发新话题
打印

Slackware安装,修改批处理文件后进入安装界面

Slackware安装,修改批处理文件后进入安装界面

根据论坛提示,把启动文件夹(如:e:\urrent)里4个文件(bzImage loadlin.exe color.bz initrd.bat)的color.bz换成initrd.img后,修改批处理文件内容如下:loadlin bzImage root=/dev/ram rw initrd=initrd.img。用98启动盘到DOS,进入e:\urrent,键入initrd.img 出现安装图形界面。      
老牛

TOP

问题解决了就好 装上了么?      

TOP

没有装上。我的计算机中现在在C:盘装有WINDOWS ME。紧跟后建立了SWAP、EXT3(/BOOT)和EXT3(/)3个分区,安装了SUSE PRO 9.1。再后我建立了7.6G的分区准备用来装SLACKWARE10。但进入安装界面后,交换分区仍用上面的SWAP,根分区用刚才建立的7.6G分区,并分别格式化,不挂载FAT分区。经过配置后,到了提示按CTR+ALT+DEL键重启。但重启后又回到ME或者SUSE桌面。是什么地方错了吗?请高手指点。      
老牛

TOP

用文本编辑器打开/boot/grub/menu.lst

加入这么一段:
“title Slackware
    root (hd0,5)
    chainloader +1”

这是我的menu.lst,你可以参考一下:
# Modified by YaST2. Last modification on Fri Aug 27 13:29:27 2004


color white/blue black/light-gray
default 0
timeout 8
gfxmenu (hd0,6)/boot/message

###Don't change this comment - YaST2 identifier: Original name: linux###
title SUSE
    kernel (hd0,6)/boot/vmlinuz root=/dev/hda7 vga=0x31a splash=silent desktop resume=/dev/hda8 showopts
    initrd (hd0,6)/boot/initrd

###Don't change this comment - YaST2 identifier: Original name: windows###
title Windows
    root (hd0,0)
    chainloader +1

###Don't change this comment - YaST2 identifier: Original name: windows###
title Slackware
    root (hd0,1)
    chainloader +1
   
###Don't change this comment - YaST2 identifier: Original name: failsafe###
title Failsafe
    kernel (hd0,6)/boot/vmlinuz root=/dev/hda7 showopts ide=nodma apm=off acpi=off vga=normal noresume nosmp noapic maxcpus=0  3
    initrd (hd0,6)/boot/initrd      

TOP

发新话题