redhat linux 无法启动 提示(kernel panic - not syncing:attempted to kill init!)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redhat linux 无法启动 提示(kernel panic - not syncing:attempted to kill init!)相关的知识,希望对你有一定的参考价值。
先说我的系统是 redhat enterprise linux 4 as(2.6.9.-22.elsmp) 问题是这样的 有在系统提示 /dev/sdb5错误 我就用 "fsck" 这个命令检查了下 重启之后就提示如下,我就捡重要的说
EXT3-fs: journal inode is deleted
mount: error 22 mounting ext3
mount: error 2 mounting none
switchroot: mount failed:22
umount /initrd/dev failed:2
kernel panic -not syncing:attempted to kill init!
其它别说 就告诉我怎么弄好啊
redhat enterprise linux as4(2.6.9.-22.elsmp) 这个版本的DVD版ISO文件哪有下载的,我发现这个文件也没了
盘都没有 怎么救啊? 网上找了很久 没有带这个内核的 linux as4的版本下了
RedHat Linux 5无法使用ifconfig怎么办
参考技术A ifconfig是Linux显示网络设备的命令,能够设置网络设备的状态,但在RedHatLinux
5系统中,有时会遇到ifconfig命令无法使用的情况,下面就是RedHat
Linux
5无法使用ifconfig命令的解决方法。
在终端使用一些命令,如:
ifcinfig
查看本机的IP,发现不能使用此命令,提示说“command
not
found”,这是环境变量没有加载,需要动手修改一下环境变量,修改如下:
1、初始安装完成系统之后,系统为了更加安全,有些命令的路径没有在PATH环境变量中,可以用echo
$PATH命令查询得知,添加路径到PATH环境变量的方法如下:
(如添加/sbin到PATH环境变量中)
(1)如果只想在本次开机过程中临时性的添加修改,下次开机就无效的话,可以:
输入export
PATH=$PATH:/sbin
(2)如果只给当前用户永久添加,则:
在~/.bash_profile中的靠近末尾有类似这样的一行PATH=$PATH:$HOME/bin后添加:/sbin,就变成PATH=$PATH:$HOME/bin:/sbin
文件修改并保持完以后,运行source
~/.bash_profile命令即可使修改操作立即生效。
(3)如果给系统中所有的用户都永久添加,则:
在/etc/profile文件末尾添加export
PATH=$PATH:/sbin
文件修改并保持完以后,运行source
etc/profile命令即可使修改操作立即生效。
2、还有一种解决的办法
[root@admin007]#
/sbin/ifconfig
或者修改
/etc/profile
文件
[root@amdin007]#
vi
/etc/profile
把下面if
语句注释掉
#
Path
manipulation
if
[
“$EUID”
=
“0”
];
then
pathmunge
/sbin
pathmunge
/usr/sbin
pathmunge
/usr/local/sbin
fi
修改为:
#
Path
manipulation
#if
[
“$EUID”
=
“0”
];
then
pathmunge
/sbin
pathmunge
/usr/sbin
pathmunge
/usr/local/sbin
#fi
保存,重新启动系统!
以上是关于redhat linux 无法启动 提示(kernel panic - not syncing:attempted to kill init!)的主要内容,如果未能解决你的问题,请参考以下文章
我安装redhat linux 5 虚拟工具的时候 安装好了之后 重启电脑 提示failed to start the X server ...