3

I got kali linux installed on my pc for a while but now linux will not boot in gui mode , only in text mode ( terminal ).

I get no errors on booting it goes directly to the login screen .

Hope you can help me and yes I tried googling it.

CaptainStony
  • 51
  • 1
  • 1
  • 4

1 Answers1

4

Type:

gdm3 

into the command line. This should start the gui.

If this does not work:

login to tty1
apt-get update
apt-get upgrade -y
apt-get install -f gdm3

UPDATE:

I found some more to this workaround which may help you:

apt-get install chkconfig
chkconfig --level 2 gdm3
gdm3

Now the system should take you to the graphical mode.

Other users also managed to get to the graphical mode just by typing:

X
Kevin
  • 441
  • 2
  • 6
  • 10