Results 1 to 2 of 2

Thread: Failed to start light display manager

  1. #1
    Join Date
    2022-Jun
    Posts
    1

    Failed to start light display manager

    I found 'failed to start light display manager' problem after boot to kali Linux from Windows 7.

  2. #2
    Join Date
    2022-May
    Posts
    4
    Code:
    uname -a
    Linux kali 5.16


    I just did normal update process with
    Code:
    sudo apt update && sudo apt upgrade -y && sudo apt dist-upgrade && sudo apt autoremove -y && sudo apt autoclean

    now
    Code:
    uname -a
    Linux kali 5.17


    and can not start normally ( black screen just after kali logo ) but still I can go to TTY (ctl+alt+(F1..F3)
    I check some log file, and you can see tell is something wrong with lightdm and tty process and finally Xorg log point me to a solution.


    Code:
    /home/<user>/.local/share/xorg/Xorg.0.log

    xorglog.JPGsystemctl.JPGjournal.JPGjournal.jpg











    then cheking other forum find a solution could be forcing X to use fbdev driver and provinding the framebuffer device ID by:


    Create the .conf file:


    Code:
    /etc/X11/xorg.conf.d/fbdev.conf

    Edit it:


    Code:
    Section "Device"
            Identifier  "Card0"
            Driver      "fbdev"
            BusID       "PCI:0:8:0"
    EndSection

    Please mind that your BusID might be different.


    You can check it with: (if exist)


    Code:
    cat /root/xorg.conf.new

    or you can just run


    Code:
    Xorg -configure

    which will create /root/xorg.conf.new. Then look in this file for your BusID and act accordingly if it differs




    (some credit to this post !!)


    HAPPY FIXING !!!

Similar Threads

  1. "Failed to start light diplay manager" after an upgrade
    By FredJ in forum TroubleShooting Archive
    Replies: 2
    Last Post: 2023-01-04, 15:43
  2. Replies: 0
    Last Post: 2020-10-19, 10:13
  3. Replies: 0
    Last Post: 2020-10-19, 10:00

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •