在 Ubuntu 14.04 上安装 xmonad 后出现 Lightdm 问题

在 Ubuntu 14.04 上安装 xmonad 后出现 Lightdm 问题

昨天,我决定在运行全新安装的 14.04 的笔记本电脑上安装并试用 Xmonad。运行 Xmonad 会话后,我决定试用 Gnome-xmonad(或类似选项)选项。我看到的只是背景,xmonad 的所有组合键都不起作用,所以我使用电源按钮重新启动。

之后,计算机无法启动到 Lightdm 登录,只有灰色屏幕。我可以按 ctrl+alt+F1 打开 shell。sudo service lightdm restart没有用,start只告诉我 Lightdm 已在运行。

我读,但它并不适用于我的问题。我尝试sleep 2根据,但无济于事。我现在不太确定自己在寻找什么,所以决定在做其他事情之前先发布这个问题。

我白天可以发布日志并回答详细信息。

编辑1:输出sudo lshw -c display

  *-display
       description: VGA compatible controller
       product: Haswell-ULT Integrated Graphics Controller
       vendor: Intel Corporation
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 09
       width: 64 bits
       clock: 33MHz
       capabilities: msi pm vga_controller bus_master cap_list rom
       configuration: driver=i915 latency=0
       resources: irq:66 memory:b5000000-b53fffff memory:c0000000-cfffffff ioport:6000(size=64)
  *-display
       description: 3D controller
       product: GK208M [GeForce GT 730M]
       vendor: NVIDIA Corporation
       physical id: 0
       bus info: pci@0000:09:00.0
       version: a1
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: driver=nouveau latency=0
       resources: irq:65 memory:b3000000-b3ffffff memory:a0000000-afffffff memory:b0000000-b1ffffff ioport:3000(size=128)

编辑2:运行sudo Xorg -configure结果为:

Fatal server error:
(EE) Server is already running for display 0
        if this server is no longer running, remove /tmp/.X0-lock
        and start again.

答案1

  1. 切换到tty1,登录
  2. 停止 lightdm:

    sudo stop lightdm
    
  3. 清除 lightdm 然后重新安装它:

    sudo apt-get remove --purge lightdm
    sudo apt-get install lightdm
    
  4. 启动 lig​​htdm

    sudo start lightdm
    

图形质量低下,请尝试重新配置 Xorg

  1. 切换到tty1,登录
  2. 停止 lightdm:

    sudo stop lightdm
    
  3. 创建新的 Xorg 配置文件:

    sudo Xorg -configure
    sudo mv /root/xorg.conf.new /etc/X11/xorg.conf
    
  4. 重启

    sudo reboot
    

相关内容