-1

I am a newbie at Linux, in fact this is the first time i'm using linux. Having installed Kali Linux i keep getting the text mode display, a youtube tutorial shows that i need a display manager and how to set it up, but i can't run

sudo apt-get update

or

sudo apt-get install

gdm3 because i am not connected to the net ( a step i skipped while setting up due to ignorance). Please how do i set up a WIFI connection or install a usb modem in text mode? Thanks. I'm stuck at black n white

Joel Tanko
  • 15
  • 7

2 Answers2

-2

Try to enable the WiFi by running:

nmcli r wifi on
silverbackbg
  • 183
  • 2
  • 15
-2

Just edit /etc/network/interfaces and write:

auto wlan0
iface wlan0 inet dhcp 
                wpa-ssid {ssid}
                wpa-psk  {password}

After that write and close file and use command:

sudo dhclient wlan0

Replace {ssid} and {password} with your respective WiFi SSID and password.

HCP
  • 43
  • 8