LXQt 在全新的 Arch 安裝上完美運行,然後在重新啟動後只會出現黑屏

LXQt 在全新的 Arch 安裝上完美運行,然後在重新啟動後只會出現黑屏

在我的筆記型電腦上重新安裝Arch 後,LXQt 可以完美運行,然後我重新啟動,無需更改任何內容,只需以以前的同一用戶身份登錄,像以前一樣運行startx,而不是像在出現死屏黑屏之前那樣運行lxqt。沒有生命跡象。

在過去 24 小時內,兩次新安裝的 Arch 上都發生了兩次這種情況。我想,按照文檔進行操作。

我已嘗試按照其他帖子中的建議刪除 .Xauthority 文件,但無濟於事,並且在 tty 屏幕之間切換也無濟於事(它默認為我運行 startx 的屏幕),還有什麼我可以嘗試的嗎?

似乎必須有一些設定或配置在重新啟動過程中丟失或創建,從而導致中斷,對嗎?正如另一篇文章中提到的,沒有建立 xorg.conf 檔案。而我的~/.xinitrc文件在重啟前後是一樣的。我很困惑。

任何意見或建議將不勝感激,謝謝!

編輯:

〜/.xinitrc

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f
fi

exec startlxqt

/var/log/Xorg.0.log(過濾為錯誤和警告,因為太大而無法包含全部 - 完整版本位於https://justpaste.it/1dqn7

[    59.429] 
X.Org X Server 1.19.5
Release Date: 2017-10-12
[    59.429] X Protocol Version 11, Revision 0
[    59.429] Build Operating System: Linux 4.9.54-1-lts x86_64 
[    59.429] Current Operating System: Linux h 4.13.12-1-ARCH #1 SMP PREEMPT Wed Nov 8 11:54:06 CET 2017 x86_64
[    59.429] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=45b53c70-775d-42ed-acc7-c392bc87c007 rw quiet
[    59.430] Build Date: 12 October 2017  09:59:53PM
[    59.430]  
[    59.430] Current version of pixman: 0.34.0
[    59.430]    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    59.430] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    59.549] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    59.549]    Entry deleted from font path.
[    59.549] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    59.549]    Entry deleted from font path.
[    59.549]    (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    59.550] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    59.550]    Entry deleted from font path.
[    59.562] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    60.434] (II) LoadModule: "nouveau"
[    60.471] (WW) Warning, couldn't open module nouveau
[    60.471] (II) UnloadModule: "nouveau"
[    60.471] (II) Unloading nouveau
[    60.471] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    60.471] (II) LoadModule: "nv"
[    60.471] (WW) Warning, couldn't open module nv
[    60.471] (II) UnloadModule: "nv"
[    60.471] (II) Unloading nv
[    60.471] (EE) Failed to load module "nv" (module does not exist, 0)
[    60.495] (II) LoadModule: "intel"
[    60.495] (WW) Warning, couldn't open module intel
[    60.495] (II) UnloadModule: "intel"
[    60.495] (II) Unloading intel
[    60.495] (EE) Failed to load module "intel" (module does not exist, 0)
[    60.495] (II) LoadModule: "fbdev"
[    60.495] (WW) Warning, couldn't open module fbdev
[    60.495] (II) UnloadModule: "fbdev"
[    60.496] (II) Unloading fbdev
[    60.496] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    60.496] (II) LoadModule: "vesa"
[    60.496] (WW) Warning, couldn't open module vesa
[    60.496] (II) UnloadModule: "vesa"
[    60.496] (II) Unloading vesa
[    60.496] (EE) Failed to load module "vesa" (module does not exist, 0)
[    60.496] (II) NVIDIA dlloader X Driver  387.22  Wed Oct 25 22:14:47 PDT 2017
[    60.496] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    60.585] (WW) Falling back to old probe method for modesetting
[    60.585] (II) modeset(G0): using drv /dev/dri/card0
[    61.073] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[    62.239] (WW) NVIDIA(0): Option "PrimaryGPU" is not used

相關內容