0

there was windows 8 before on my laptop and the wifi was working without a trouble. After I ve installed Ubuntu 14.04 the wifi connection is not visible (there is the icon available on the upper panel, but no wireless option visible).

Thank you in advance for help. MB

2 Answers2

0

First you need to check the output of ifconfig -a and see how many interfaces are listed. Do you have anything for "eth0"?

if not, then do sudo vi /etc/network/interface place the following lines (make sure to change the IP address according to Your Network Range at home as your router may broadcast 172.2.0.0 network or something else.)

auto lo
iface lo inet loopback
# Primary Network
iface eth0 inet static
address 192.168.2.13   #this ip might be different according to your router
netmask 255.255.255.0
gateway 192.168.2.1    
network 192.168.2.0

Now do

sudo /etc/init.d/networking/restart

You may have to restart the PC. I hope this helps. Please enter the result whatever you get after doing all this.

0

ifconfig -a eth0

Link encap:Ethernet HWaddr 00:1e:68:87:3e:9e

      UP BROADCAST MULTICAST  MTU:1500  Metric:1 
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
      collisions:0 txqueuelen:1000 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo
Link encap:Local Loopback

      inet addr:127.0.0.1  Mask:255.0.0.0 
      inet6 addr: ::1/128 Scope:Host 
      UP LOOPBACK RUNNING  MTU:65536  Metric:1 
      RX packets:241 errors:0 dropped:0 overruns:0 frame:0 
      TX packets:241 errors:0 dropped:0 overruns:0 carrier:0 
      collisions:0 txqueuelen:0 
      RX bytes:18033 (18.0 KB)  TX bytes:18033 (18.0 KB)