当前位置: 技术问答>linux和unix
红旗 Linux 启动问题
来源: 互联网 发布时间:2014-11-15
本文导语: 小弟我最近安装了红旗 Linux 2.4桌面版。安装完毕后用软盘启动(因为要用NT的启动菜单启动Linux所以装在了/dev/hdb1下)后出现下列情况后就死机了。启动画面最后五行是: VFS: Mounted root (ext2 fils system) readonly Chang...
小弟我最近安装了红旗 Linux 2.4桌面版。安装完毕后用软盘启动(因为要用NT的启动菜单启动Linux所以装在了/dev/hdb1下)后出现下列情况后就死机了。启动画面最后五行是:
VFS: Mounted root (ext2 fils system) readonly
Change_root: old root has d_count=3
Trying to unmount old root...okay
Freeing unused kernel memory: 516K freed
Warning: unable to open an initial console
后屏幕不再出字,按键也无反应,只好按机箱上的重启键。
而联想的 Happy Linux 则可以正常运行,虽然Happy Linux可以找到我的声卡,但是不能加载,所以只好用新买的红旗 Linux 2.4
具本机器为:
Pentium 133MHz/48M EDO 72线(2*16 + 2*8)/Maxtor 星钻 30.7G(主) + 希杰 1.2G(从)/联想 P5I430VX-250 主板/NEC 52X + 米苏米 4X/Creative Vibra128 声卡
VFS: Mounted root (ext2 fils system) readonly
Change_root: old root has d_count=3
Trying to unmount old root...okay
Freeing unused kernel memory: 516K freed
Warning: unable to open an initial console
后屏幕不再出字,按键也无反应,只好按机箱上的重启键。
而联想的 Happy Linux 则可以正常运行,虽然Happy Linux可以找到我的声卡,但是不能加载,所以只好用新买的红旗 Linux 2.4
具本机器为:
Pentium 133MHz/48M EDO 72线(2*16 + 2*8)/Maxtor 星钻 30.7G(主) + 希杰 1.2G(从)/联想 P5I430VX-250 主板/NEC 52X + 米苏米 4X/Creative Vibra128 声卡
|
看看init函数的定义,你的错误是不能打开控制台。你做过什么设置吗?这是内核错误。修补的几率不大。你可以试试动态修改启动内核。
static int init(void * unused)
{
lock_kernel();
do_basic_setup();
/* OK, we have completed the initial bootup, and we're
* essentially up and running. Get rid of the initmem
* segments and start the user-mode stuff.. */
free_initmem();
unlock_kernel();
if (open("/dev/console", O_RDWR, 0)
static int init(void * unused)
{
lock_kernel();
do_basic_setup();
/* OK, we have completed the initial bootup, and we're
* essentially up and running. Get rid of the initmem
* segments and start the user-mode stuff.. */
free_initmem();
unlock_kernel();
if (open("/dev/console", O_RDWR, 0)