0

Recently I came using Ubuntu on my Notebook normally, and out of nowhere I could not access anything else in Firefox, nor check for updates. Could someone help me? I am running Ubuntu 17.10 on a Dell Inspiron 5558! Screenshot from the WiFi icon

BTW, there is the output of ip link and ip route:

gabriel@INSPIRON-5558:~$ ip link 
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 
2: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 
link/ether 84:7b:eb:e4:04:39 brd ff:ff:ff:ff:ff:ff 
3: wlp6s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000 
link/ether 68:14:01:a7:3c:f9 brd ff:ff:ff:ff:ff:ff 
4: anbox0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 
link/ether 16:a0:65:63:c3:de brd ff:ff:ff:ff:ff:ff 
gabriel@INSPIRON-5558:~$ ip route 
default via 192.168.1.1 dev wlp6s0 proto static metric 20600 
169.254.0.0/16 dev anbox0 scope link metric 1000 
192.168.1.0/24 dev wlp6s0 proto kernel scope link src 
192.168.1.5 metric 600 192.168.250.0/24 dev anbox0 proto kernel scope link src 192.168.250.1 
user68186
  • 37,461

1 Answers1

1

I managed to fix the error, was basically install resolvconf again and restart the computer. That means this problem has been solved!

How I did this:

  1. Downloaded the .deb file of resolvconf. Link: http://archive.ubuntu.com/ubuntu/pool/universe/r/resolvconf/resolvconf_1.79ubuntu8_all.deb
  2. Installed the .deb file of resolvconf on terminal. Command: dpkg -i <file location>
  3. Started resolvconf with systemctl. Command: systemctl start resolvconf
  4. Rebooted the computer.
  5. WiFi is back!
vidarlo
  • 23,497