0

I updated my ubuntu to the new version 22.04.

I can download packages via apt install, I can use some software like slack who need internet connection

...but, my browsers can't navigate on internet :/ I don't understand why... By example, when I open firefox, I get this page :

enter image description here

I tried some proposed solutions :

But none of them work... Thanks for any help !

1 Answers1

1

As expected, its an ubuntu issue and this answer help me to fix it :)

https://askubuntu.com/a/1273633/621125

edit :

From a quick look, the issue is a bad configuration of the current /etc/resolv.conf file. Replace this file by /run/systemd/resolve/resolv.conf file resolve my issue, here the commands I used :

sudo rm -f /etc/resolv.conf
sudo ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf

Reboot may be necessary