Kali-Linux

升級後 gnome 登錄失敗:哦,沒有問題

  • July 6, 2020

我升級了我的 Kali Linux 版本 2,現在當我嘗試登錄我的桌面時,我收到此錯誤消息“哦,沒有什麼問題”。

Ctrl我使用++進入控制台模式,然後啟動並返回AltF1``gnome-shell

(gnome-shell:4934): Clutter-CRITICAL **: Unable to initialize Clutter: Unable to open display. You have to set the DISPLAY environment variable, or use the --display command line argument
(gnome-shell:4934): mutter-ERROR **: Unable to initialize Clutter.

我檢查/var/log/messages並發現:

Jan 13 18:48:05 kali kernel: [  106.005592] traps: gnome-shell[3992] trap int3 ip:7f159197ad30 sp:7ffe8c719c80 error:0

dmesg返回相同的消息。

我安裝X-window-systemxorg一個apt-get update.

我添加了一個使用者,我嘗試使用它登錄,但它不起作用。

journalctl返回No journal files were found

我的 CPU 是i5-3210M.

問題是蟒蛇。當我這樣做時,我收到一個包錯誤apt-get upgrade

這是因為usr/bin/pythonpython3.4的連結。所以我為python2.7更改了這個,然後我再次這樣做apt-get upgrade,這解決了問題!

這是一個升級錯誤,我也遇到過這個問題。

不過,這是一個快速修復,直到 Offsec 人員修復它。生成一個 tty。Ctrl``Alt``F2

納米 /etc/gdm3/daemon.conf

取消註釋為 root 使用者啟用自動登錄的前兩行。

AutomaticEnableLogin = true
AutomaticLogin = root

從安全形度來看,這可能不是最好的解決方法,因此您還可以添加一個非 root 使用者並啟用它來自動登錄。

AutomaticEnableLogin = true
AutomaticLogin = <username>

如果您需要添加使用者,

useradd -m 使用者名 -G sudo -s /bin/bash

密碼使用者名

引用自:https://unix.stackexchange.com/questions/255214