LXQt funktioniert einwandfrei auf einer frischen Arch-Installation und erhält nach dem Neustart nur einen schwarzen Bildschirm

LXQt funktioniert einwandfrei auf einer frischen Arch-Installation und erhält nach dem Neustart nur einen schwarzen Bildschirm

LXQt funktioniert nach einer Neuinstallation von Arch auf meinem Laptop einwandfrei. Dann starte ich neu und melde mich, ohne etwas zu ändern, einfach als derselbe Benutzer wie zuvor an, führe startx wie zuvor aus, statt lxqt wie zuvor und bekomme einen leeren schwarzen Bildschirm. Keine Lebenszeichen.

Dies ist in den letzten 24 Stunden zweimal bei zwei neuen Arch-Installationen passiert. Ich dachte, ich habe die Dokumentation genau befolgt.

Ich habe wie in anderen Beiträgen vorgeschlagen versucht, die Datei .Xauthority zu entfernen, aber es hat nichts genützt. Auch das Umschalten zwischen den TTY-Bildschirmen hat nichts genützt (standardmäßig wird der Bildschirm angezeigt, auf dem ich startx ausführe). Gibt es noch etwas, das ich versuchen kann?

Es scheint, als ob beim Neustart eine Einstellung oder Konfiguration verloren geht oder erstellt wird, die den Fehler verursacht, oder? Es wird keine xorg.conf-Datei erstellt, wie in einem anderen Beitrag erwähnt. Und meine ~/.xinitrc-Datei ist vor und nach dem Neustart dieselbe. Ich bin ratlos.

Ich wäre für jeden Ratschlag oder Vorschlag sehr dankbar, vielen Dank!

BEARBEITEN:

~/.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 (gefiltert nach Fehlern und Warnungen, da zu groß, um alle einzuschließen - Vollversion unterhttps://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

verwandte Informationen