转自:http://www.xnlinux.cn/thread-1370-1-1.html
entos5,启动过程中出现以下问题:
INIT:Id "x" respawning too fast,disabled for 5 minutes
图形界面无法启动。
首先根据错误信息知道是init程序在执行系统启动脚本时出现问题,init所执行的脚本是
/etc/inittab,
查看之,找到如下行:
-
cat /etc/inittab
-
x:5:respawn:/etc/X11/prefdm -nodaemon
复制代码
图形就是由这行启动的,ID为x的行在运行级5的时候会启动prefdm程序,而且有respawn参数,此参数的作用是当程序退出后自动重新启动它,根据错误提示里的respawing too fast判断是由于程序启动异常导致频繁重启,
-
[root@bogon ~]# file /etc/X11/prefdm
-
/etc/X11/prefdm: Bourne shell script text executable
复制代码
-
[root@bogon ~]# vi /etc/X11/prefdm
复制代码
-
if [ "$DISPLAYMANAGER" = GNOME ]; then
-
preferred=/usr/sbin/gdm
-
elif [ "$DISPLAYMANAGER" = KDE ]; then
-
preferred=/usr/bin/kdm
-
elif [ "$DISPLAYMANAGER" = XDM ]; then
-
preferred=/usr/bin/xdm
复制代码
我安装的是gnome使用的就是gdm这个程序,但ll查看提示不存在,证明此文件丢失,需要重新安装
软件包
-
[root@bogon ~]# yum whatprovides /usr/sbin/gdm
-
1:gdm-2.16.0-56.el5.centos.i386 : GNOME 显示管理器。
-
[root@bogon ~]# yum install gdm -y
复制代码
搞定over!
分享到:
相关推荐
Init: Command is Respawning Too Rapidly............ 16 Login.............................. 16 Patches、应用软件安装.................... 17 列出 Patches ............ 17 安装Patches ........... 17 下载...
### Unreal Engine 4.X By Example #### Introduction to Unreal Engine 4 Unreal Engine 4 (UE4) is a powerful game development platform that provides developers with the tools they need to create high-...
同时,需要注意一些常见的启动错误,例如 INIT: Id "co" respawning too fast 等。 使用 VMware Converter 迁移 Xen Server 虚拟机到 VMware ESXi 平台,是一种非常便捷的迁移方法。但是,需要注意迁移后的虚拟机...
在Linux启动过程中,如果出现"INIT: Id \"co\" respawning too fast"错误提示,是因为/etc/inittab文件中的某一行没有注释。如果未注释这行,启动将提示错误,无法进入系统! Xenserver虚拟机迁移到VMwareESX需要两...
- `Init: Command is Respawning Too Rapidly`:错误提示,表示某个进程异常重启,需检查并解决。 **用户登录与软件管理** - 用户通过登录界面进入系统。 - **Patches管理**: - 列出已安装的补丁:使用命令如`...
### Flash Cookies与隐私II:现加入HTML5及ETag重生技术 #### 概述 2009年8月,研究团队揭露了流行的网站正在利用“Flash cookies”追踪用户的行为。这种技术允许广告商即便在用户采取措施避免网络行为被记录的...
respawning.py - 检查可能从 XUID 标头重新生成的 cookie 包含的 OpenWPM 代码在很大程度上类似于公共存储库。 我只是将添加到了automation/Proxy/MITMProxy.py ,它将 UIDH 标头插入到所有流量中。 您可以通过首先...
Create a 3D space combat simulator with projectile shooting and respawning objects, and learn how to manage the appearance of 3D models Dive into Unity’s advanced features, such as precomputed ...