1

Just recently installed Ubuntu 15.04. My Mi-fi would connect to my computer but wont browse please kindly assist me

Volker Siegel
  • 13,065
  • 5
  • 49
  • 65

1 Answers1

2

Its difficult to tell what's wrong by hearing this kind of statement.. "My Mi-fi would connect to my computer but wont browse" you have to troubleshoot step by step and use process of elimination Since you have already confirmed wireless is connected fine,check you have ip address issued by the wireless device/router first.. To check that open a terminal and type

sudo ifconfig

If ip is in the range of wifi device that is issued, then ip is ok. Yet you can't browse then check gateway is ok, .. Use terminal and type

sudo route

if that one also looks good, next it may be DNS issue, try to have a ping .

open a terminal and ping 8.8.8.8

and also

ping www.google.com ..

This will help you to eliminate dns are ok or not.. If 8.8.8.8 pings are someting similar xx bytes from 8.8.8.8: icmp_seq=3 ttl=56 time=xx ms and ping www.google.com gives you ping: unknown host www.google.com potentially there could be a dns issue..

If everything works fine, yet cant browse, then use tracert kind of equivalent : to make sure upper level firewall or similar device is blocking/not blocking your path..

(and also if this is a business/working/enterprise environment they may use proxy settings etc )

If these things are too much technical for you , get in touch with your friend who is capable of helping you..

Aravinda
  • 982