1

When I type sudo curl ifconfig.me it returns my ip, but when I type the same without sudo I get a squid Access Denied error?

Does anyone know why this could be happening?

user2829148
  • 73
  • 1
  • 8

1 Answers1

2

It looks like last time you tried to uninstall squid, it wasn't removed completely, therefore first install squid again:

apt install squid

and then remove and purge it completely:

apt purge squid

Now squid and all of its dependencies are fully removed and the problem will have gone away.

Fabby
  • 34,259