I was also stuck on browser and it was probably because I was running some docker containers, it caused this issue. I removed all the containers, images, docker network as well. Unfortunately, none of them worked for me. However, thanks to A J it was made clear for us. Go to this question and follow the instructions them step by step.
Try to stop all your running docker containers and prune your docker network. docker network prune
may help you, but in my case it did not work as well. I deleted Chrome browser completely, but it also did not work as well. Some forms suggested to if you have same problem try to disable IPv6 in Network.
At first, I thought how that could be related, apparently, people in Chrome's forum says you need to that in order not to get stuck in browser, just giving you quick commands:
In order to disable IPv6, open with:
nano /etc/sysctl.conf
insert at the end what is given below:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
If IPv6 is still not disabled, then the problem is that sysctl.conf is still not activated.
To solve this, open a terminal with Ctrl + Alt + T and type the command:
sudo sysctl -p
You will see this in the terminal:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
Run the following command:
cat /proc/sys/net/ipv6/conf/all/disable_ipv6
that will output:
1
which IPv6 has been successfully disabled.
HTTPS
sites in general? – NPsoft Dec 28 '18 at 16:49HTTPS
I haven't found a non-SSL page with this problem yet. – mhellmeier Dec 28 '18 at 17:16sudo /etc/init.d/dns-clean restart
– NPsoft Dec 28 '18 at 18:04