Ubuntu 在断电后启动时挂起 - 检测可用的 GPU

Ubuntu 在断电后启动时挂起 - 检测可用的 GPU

请帮帮我,这是我的工作站。它工作正常,直到停电。从那时起它就再也无法启动了。(两次它启动到登录屏幕,但按下 ENTER 或单击鼠标时,登录屏幕消失,屏幕保持黑色。

图像

此后 Ubuntu (eOS) 无法进一步启动

更新:查看了 last_gfx_boot -> 它的空系统日志在这里 ->链接到我的系统日志

我下一步应该/可以尝试哪些步骤?

谢谢,Florian

答案1

我按照以下方式解决了该问题:

  1. 以具有读/写访问权限的恢复模式启动
  2. 以 root 身份进入 shell
  3. sudo apt-get remove lightdm(现在 gdm3 是默认的)
  4. 启动网络:sudo service network-manager restart
  5. sudo apt 升级
  6. 重启

对我来说这有效。如果我不删除 lightdm,它也可能有效。

答案2

出现类似错误后,我只需要启动恢复模式并运行update-grub来修复系统。

答案3

我在旧笔记本电脑上也遇到过这种情况。我们有一个自定义的 Ubuntu 12.04,安装在几台笔记本电脑上,大多数时候都运行正常,每台笔记本电脑都使用相同的 Ubuntu,但其中一台发生了这种情况。

我进入控制台(CTRL+F1)并使用命令启动 X startx,因为这有效,所以我尝试创建一个 X 文件并解决了该问题:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/X11/misc"
    FontPath     "/usr/share/fonts/X11/cyrillic"
    FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
    FontPath     "/usr/share/fonts/X11/Type1"
    FontPath     "/usr/share/fonts/X11/100dpi"
    FontPath     "/usr/share/fonts/X11/75dpi"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "glx"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "Accel"                 # [<bool>]
        #Option     "AccelMethod"           # <str>
        #Option     "Backlight"             # <str>
        #Option     "CustomEDID"            # <str>
        #Option     "DRI"                   # <str>
        #Option     "Present"               # [<bool>]
        #Option     "ColorKey"              # <i>
        #Option     "VideoKey"              # <i>
        #Option     "Tiling"                # [<bool>]
        #Option     "LinearFramebuffer"     # [<bool>]
        #Option     "HWRotation"            # [<bool>]
        #Option     "VSync"                 # [<bool>]
        #Option     "PageFlip"              # [<bool>]
        #Option     "SwapbuffersWait"       # [<bool>]
        #Option     "TripleBuffer"          # [<bool>]
        #Option     "XvPreferOverlay"       # [<bool>]
        #Option     "HotPlug"               # [<bool>]
        #Option     "ReprobeOutputs"        # [<bool>]
        #Option     "XvMC"                  # [<bool>]
        #Option     "ZaphodHeads"           # <str>
        #Option     "VirtualHeads"          # <i>
        #Option     "TearFree"              # [<bool>]
        #Option     "PerCrtcPixmaps"        # [<bool>]
        #Option     "FallbackDebug"         # [<bool>]
        #Option     "DebugFlushBatches"     # [<bool>]
        #Option     "DebugFlushCaches"      # [<bool>]
        #Option     "DebugWait"             # [<bool>]
        #Option     "BufferCache"           # [<bool>]
    Identifier  "Card0"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

编辑(2 个月后)我又遇到了类似的问题... xhost 无法打开“”

我已经重新安装了 xorg,并且成功了

编辑(2 天后)我发现删除 xorg 和 lightdm 的临时文件可以解决问题我在这里详细说明了一切

相关内容