Okay so I was in the process of making Firefox perform Google searches from the address bar and realised that I was being redirected to my ISP's page not found screen. This I determined was because of the DNS that was set by default in Ubuntu to 127.0.1.1 or 127.0.0.1. I went to change this to Googles DNS 8.8.8.8 and 8.8.4.4. To do this in previous releases
Code:
gksudo gedit /etc/resolv.conf
Change this:
Code:
nameserver 127.0.1.1
to this:
Code:
nameserver 8.8.8.8
nameserver 8.8.4.4
This no longer works in Ubuntu 12.10 maybe not 12.04 either the only way that I found around this was to:
Code:
gksudo gedit /etc/resolvconf/resolv.conf.d/head
and to add this:
Code:
nameserver 8.8.8.8
nameserver 8.8.4.4
at the bottom. Then run this code to update the resolv.conf file
If there is a better way to do this please let me know as I am sure others would appreciate it was well.