`
jubincn
  • 浏览: 242350 次
  • 性别: Icon_minigender_1
  • 来自: 宁波
文章分类
社区版块
存档分类
最新评论

INIT:Id "x" respawning too fast,disabled for 5 minutes解决思路 转自:http://www.xnlinux.cn/thread-1370-1-1.

 
阅读更多

转自:http://www.xnlinux.cn/thread-1370-1-1.html


entos5,启动过程中出现以下问题:

INIT:Id "x" respawning too fast,disabled for 5 minutes
图形界面无法启动。
首先根据错误信息知道是init程序在执行系统启动脚本时出现问题,init所执行的脚本是
/etc/inittab,
查看之,找到如下行:
  1. cat /etc/inittab
  2. x:5:respawn:/etc/X11/prefdm -nodaemon
复制代码
图形就是由这行启动的,ID为x的行在运行级5的时候会启动prefdm程序,而且有respawn参数,此参数的作用是当程序退出后自动重新启动它,根据错误提示里的respawing too fast判断是由于程序启动异常导致频繁重启,
  1. [root@bogon ~]# file /etc/X11/prefdm
  2. /etc/X11/prefdm: Bourne shell script text executable
复制代码
  1. [root@bogon ~]# vi /etc/X11/prefdm
复制代码
  1. if [ "$DISPLAYMANAGER" = GNOME ]; then
  2. preferred=/usr/sbin/gdm
  3. elif [ "$DISPLAYMANAGER" = KDE ]; then
  4. preferred=/usr/bin/kdm
  5. elif [ "$DISPLAYMANAGER" = XDM ]; then
  6. preferred=/usr/bin/xdm
复制代码
我安装的是gnome使用的就是gdm这个程序,但ll查看提示不存在,证明此文件丢失,需要重新安装软件
  1. [root@bogon ~]# yum whatprovides /usr/sbin/gdm
  2. 1:gdm-2.16.0-56.el5.centos.i386 : GNOME 显示管理器。
  3. [root@bogon ~]# yum install gdm -y
复制代码
搞定over!
分享到:
评论

相关推荐

    HP-Unix命令 HP系统宝典

    Init: Command is Respawning Too Rapidly............ 16 Login.............................. 16 Patches、应用软件安装.................... 17 列出 Patches ............ 17 安装Patches ........... 17 下载...

    Unreal Engine 4.X By Example

    ### 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-...

    Xen server 虚拟机 迁移到 VMware esxi

    同时,需要注意一些常见的启动错误,例如 INIT: Id "co" respawning too fast 等。 使用 VMware Converter 迁移 Xen Server 虚拟机到 VMware ESXi 平台,是一种非常便捷的迁移方法。但是,需要注意迁移后的虚拟机...

    Xenserver虚拟机迁移到VMwareESX

    在Linux启动过程中,如果出现"INIT: Id \"co\" respawning too fast"错误提示,是因为/etc/inittab文件中的某一行没有注释。如果未注释这行,启动将提示错误,无法进入系统! Xenserver虚拟机迁移到VMwareESX需要两...

    hp9k宝典 hp9k宝典

    - `Init: Command is Respawning Too Rapidly`:错误提示,表示某个进程异常重启,需检查并解决。 **用户登录与软件管理** - 用户通过登录界面进入系统。 - **Patches管理**: - 列出已安装的补丁:使用命令如`...

    FLASH COOKIES AND PRIVACY II: NOW WITH HTML5 AND ETAG RESPAWNING

    ### Flash Cookies与隐私II:现加入HTML5及ETag重生技术 #### 概述 2009年8月,研究团队揭露了流行的网站正在利用“Flash cookies”追踪用户的行为。这种技术允许广告商即便在用户采取措施避免网络行为被记录的...

    verizon-uidh:我对 Verizon 的 UIDH 的调查中的一些简单脚本

    respawning.py - 检查可能从 XUID 标头重新生成的 cookie 包含的 OpenWPM 代码在很大程度上类似于公共存储库。 我只是将添加到了automation/Proxy/MITMProxy.py ,它将 UIDH 标头插入到所有流量中。 您可以通过首先...

    Mobile Game Development with Unity

    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 ...

Global site tag (gtag.js) - Google Analytics