This is a static archive of the old Zorin Forum.

The information below may be outdated. Visit the new Zorin Forum here ›

If you have registered on the old forum, you will need to create an account on the new forum.

[SOLVED] Zorin 6.3 & WiFi

kkoz83

Thu Aug 08, 2013 11:41:25 pm

So my problem - I can't get WiFi. There's no icon on the taskbar but when I turn the laptop on, a pop-up stated "disconnected" with what looks like the WiFi icon next to the words.
Ethernet has no problem & there's nothing found when I check for additional drivers.

I found the following code:

lspci -nn | grep 0280
lsusb
lshw -c network
sudo rfkill list all

The result is:

janusz@janusz-Aspire-5100-5840:~$ lspci -nn | grep 0280
06:02.0 Network controller [0280]: Broadcom Corporation BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller [14e4:4318] (rev 02)
janusz@janusz-Aspire-5100-5840:~$ lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 5986:0100 Acer, Inc Orbicam
Bus 002 Device 002: ID 045e:007d Microsoft Corp. Notebook Optical Mouse
janusz@janusz-Aspire-5100-5840:~$ lshw -c network
WARNING: you should run this program as super-user.
*-network:0
description: Ethernet interface
product: RTL-8139/8139C/8139C+
vendor: Realtek Semiconductor Co., Ltd.
physical id: 1
bus info: pci@0000:06:01.0
logical name: eth0
version: 10
serial: 00:16:d4:cc:a6:e3
size: 100Mbit/s
capacity: 100Mbit/s
width: 32 bits
clock: 33MHz
capabilities: bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=8139too driverversion=0.9.28 duplex=full ip=192.168.1.108 latency=64 maxlatency=64 mingnt=32 multicast=yes port=MII speed=100Mbit/s
resources: irq:21 ioport:a000(size=256) memory:b0202000-b02020ff
*-network:1
description: Network controller
product: BCM4318 [AirForce One 54g] 802.11g Wireless LAN Controller
vendor: Broadcom Corporation
physical id: 2
bus info: pci@0000:06:02.0
version: 02
width: 32 bits
clock: 33MHz
capabilities: bus_master
configuration: driver=wl latency=64
resources: irq:22 memory:b0200000-b0201fff
WARNING: output may be incomplete or inaccurate, you should run this program as super-user.
janusz@janusz-Aspire-5100-5840:~$ sudo rfkill list all

Any help please?

Wolfman

Fri Aug 09, 2013 6:55:35 am

Hi,

I am not an expert on this one (where is MV when you need him?) but I think you need to install the package with the following terminal command and it should work afterwards:

Code:
sudo apt-get install firmware-b43-installer


Regards Wolfman :D

madvinegar

Fri Aug 09, 2013 7:43:05 am

Your card is BCM4318. According to the broadcom wiki, this card uses the b43 driver (as WM correctly stated). The problem you have is that your system has loaded by default the wl driver and creates a conflict.
So we need first to remove the wl driver and then install the b43 driver.

Plug an ethernet cable on your pc and run the following 3 commands:

sudo apt-get remove --purge bcmwl-kernel-source
sudo apt-get install linux-firmware-nonfree
sudo modprobe b43

Dabrudda

Fri Aug 09, 2013 9:39:36 pm

I have a Broadcom 4311 wireless card and the B43 drivers do not work correctly.

The only way to get my wifi to work is install this firmware.

Code:
sudo apt-get install linux-firmware-nonfree


And even then the wifi is very buggy, drops out and takes several minutes or even a reboot to get the wireless working again. Wish Broadcom would release a driver package that did not require compiling.

Wolfman

Sat Aug 10, 2013 7:39:02 am

Dabrudda wrote:I have a Broadcom 4311 wireless card and the B43 drivers do not work correctly.

The only way to get my wifi to work is install this firmware.

Code:
sudo apt-get install linux-firmware-nonfree


And even then the wifi is very buggy, drops out and takes several minutes or even a reboot to get the wireless working again. Wish Broadcom would release a driver package that did not require compiling.

Hi,

for the BCom 4311 model see this:

http://askubuntu.com/questions/55868/ho ... ss-drivers

and:

https://help.ubuntu.com/community/WifiD ... er/bcm43xx


Regards Wolfman :D

madvinegar

Sat Aug 10, 2013 8:27:39 am

Dabrudda wrote:I have a Broadcom 4311 wireless card and the B43 drivers do not work correctly.

The only way to get my wifi to work is install this firmware.

Code:
sudo apt-get install linux-firmware-nonfree


And even then the wifi is very buggy, drops out and takes several minutes or even a reboot to get the wireless working again. Wish Broadcom would release a driver package that did not require compiling.


I have the bcm4311 as well (see my signature) and it works great. The same set of commands applies for bcm4311 as well.

sudo apt-get remove --purge bcmwl-kernel-source
sudo apt-get install linux-firmware-nonfree
sudo modprobe b43


Make sure you have removed the bcmwl-kernel-source (1st command) as it conflicts with b43.

kkoz83

Sun Aug 11, 2013 10:39:20 pm

Hi, all is well but after entering 'sudo modprobe b43', I pressed Enter and the green cursor moved down a line and nothing. How long do I wait? Trying to exit the terminal gives me a warning stating it's still in process.

Wolfman

Mon Aug 12, 2013 6:44:37 am

Hi,

did you get any feedback from the modprobe command?, is it working anyway?.

Regards Wolfman :D

kkoz83

Mon Aug 12, 2013 7:56:23 pm

Wolfman wrote:Hi,

did you get any feedback from the modprobe command?, is it working anyway?.

Regards Wolfman :D


I had to shut down, so I just closed the terminal, clicked the option to close it anyway & restarted.

I took a chance & after a restart --- :)

Thank you everybody!!!