Linux mint broadcom wifi driver

Linux mint broadcom wifi driver

After installing Linux Mint 12 on my Compaq Presario CQ40-410AU (x64 bit) laptop, the wireless LAN Broadcom BCM4312 802.11/bg doesn’t work out of the box.

Solution:

I found this site, linuxwireless.org, very helpful in solving this problem.

b43 and b43legacy are drivers for the 802.11 B/G/N family of wireless chips that Broadcom produces. The choice of which driver your card uses depends on the revision level of the 802.11 core. If your card is a BCM4306 Rev 2 or only has 802.11b capability, it uses b43legacy. All other models use b43. This number is read by the driver ssb, and the correct choice for your device is made at that point. The drivers are called bcm43xx in mainline kernels, and b43 and b43legacy in wireless-2.6 and 2.6.24 and later.

Driver Installation:

1. Open the Terminal window (this is similar to M$ Windows command prompt)

Note: You can access the Terminal application from Menu —> Accessories —> Terminal. Optionally, you can use the shortcut by pressing ALT+F2, type gnome-terminal then press the enter key to launch it.

2. Execute the following command from Terminal window to find out whether your PCI device is supported by the b43 and b43legacy drivers.

Terminal Command:

Result Sample: My Device

09:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g LP-PHY [ 14e4:4315 ] (rev 01)

3. Check the result and compare the PCI-ID (highlighted above) of your WLAN device with the driver support table posted on linuxwireless.org.

4. Once you have confirmed that your WLAN device is supported, you may proceed to installing the driver by running the following command from Terminal window.

sudo apt-get install firmware-b43-installer 

Additional Note:

In my case, this command raised the following error.

Читайте также:  Какие загрузочные файлы линукс

«An unsupported BCM4312 Low-Power (LP-PHY) device was found.»

I was able to fix this by installing the appropriate LP-PHY driver.

sudo apt-get install firmware-b43-lpphy-installer

Источник

установка драйверов на broadcom limited bcm43142 в linux mint

Установил linux mint а он не видит wifi wlan0 интерфейс отсутствует и в параметрах wifi найти не могу.Думаю причина отсутствие драйверов.Подскажите пожалуйста как установить драйвера на broadcom bcm43142?

Не раз обсуждалась проблема, поищи по лору, про bcm43142 много должно быть. Крепись.

~$ inixi CPU: Dual Core Intel Core i3-4030U ( -MT MCP- ) speed/min/max: 1796/800/1800 MHz Kernel: 4.15.0-20-generic x86_64 Up: 58m Mem: 1016.8/3829.0 MiB (26.6%) Storage: 456.76 GiB (4.1% used) Procs: 212 Shell: bash 4.4.19 inxi: 3.0.27 ~$ -Nni -Nni: command not found ~$ lsusb Bus 001 Device 002: ID 8087:8000 Intel Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 002 Device 005: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller Bus 002 Device 004: ID 04ca:2006 Lite-On Technology Corp. Broadcom BCM43142A0 Bluetooth Device Bus 002 Device 003: ID 0bda:57b5 Realtek Semiconductor Corp. Bus 002 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse Bus 002 Device 017: ID 04e8:6863 Samsung Electronics Co., Ltd GT-I9500 [Galaxy S4] / GT-I9250 [Galaxy Nexus] (network tethering) Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Также заметил странность,что в /etc/apt/sources.list репозитории kali(загуглил репы linux mint,они другие) И еще когда ввожу: ~$ apt-get update Чтение списков пакетов… Готово E: Не удалось открыть файл блокировки /var/lib/apt/lists/lock — open (13: Permission denied) E: Невозможно заблокировать каталог /var/lib/apt/lists/ W: Проблема при удалении файла /var/cache/apt/pkgcache.bin — RemoveCaches (13: Permission denied) W: Проблема при удалении файла /var/cache/apt/srcpkgcache.bin — RemoveCaches (13: Permission denied) Интернет есть(от андроид в режиме usb-модем),страницы в браузере открывает

Так и думал что Kali , кстати inxi -Nni это одна команда. Поставь тэг Kali и посмотри темы внизу страницы , там уже вагон их. А еще лучше действительно поставь LinuxMint и все у тебя заработает.

В каком смысле поставить linux mint?Она и так у меня стоит но в sources.list репы от кали а в /etc/apt/sources.list.d/official-package-repositories.list вообще нет файла с репозиториями.

но в sources.list репы от кали

Не смешивай системы, сломаешь всё.

Так что делать то?Я ничего не писал в файле так изначально было,как исправить репозитории

Читайте также:  Fdisk linux удалить раздел

Источник

Linux mint broadcom wifi driver

This tutorial is applicable to LinuxMint Debian Edition for it doesn’t come with the Hardware Driver option ( System->Administration->Hardware Drivers ) found in Ubuntu and LinuxMint. Installing LMDE will not automatically install the driver for you so you have to manually do it from the Terminal.

You are required to connect to the Internet with the LAN interface before proceeding.

1.) After successfully installing LMDE, you have to update it first prior to installing the driver.

sudo apt-get update && sudo apt-get upgrade

2.) After a successfull update, we can now install the desired driver for our Broadcom wireless card:

sudo apt-get install b43-fwcutter firmware-b43-installer

All you have to do is wait for the installation to finish and you will be able to use the Broadcom wifi card.

Here’s an update if you’re trying to install the driver on a netbook with low-power b43 chipset:

sudo apt-get install b43-fwcutter firmware-b43-lpphy-installer

Updating my LMDE with the latest kernel had my broadcom wireless messed up. In order to have my connection back, I had to use a different set of commands.

sudo -i
apt-get install module-assistant wireless-tools broadcom-sta-common broadcom-sta-source
m-a a-i broadcom-sta
echo «blacklist brcm80211» >>/etc/modprobe.d/broadcom-sta-common.conf
update-initramfs -u -k $(uname -r)
modprobe -r b44 b43 b43legacy ssb brcm80211
modprobe wl
iwconfig

Now, it’s working fine. You had to issue this command whenever you have to upgrade your current kernel.

Источник

How to Install Broadcom Wifi Drivers on Linux Mint

In this tutorial you will learn how to install broadcom wifi drivers on Linux mint.

Step 1 — Update your system

Run the following command on terminal to update your system

Step 2 — Install Wifi Drivers

Run the command below to install Broadcom STA Wireless driver (Proprietary)

sudo apt-get install bcmwl-kernel-source 

Run the command below to install b43 driver

sudo apt-get firmware-b43-installer 

Step 3 — Activate wifi driver

Open menu, go to «Administration» tab and then click to «Driver Manager» this will launch the driver manager app where you can activate the broadcom wifi drivers.

If the broadcom driver doesn’t appear on «Driver Manager» window, you need to reboot your system and then launch driver manager again and select the driver.

Then you should see the wifi icon on the panel

Читайте также:  Linux дать пользователю sudo

By now you should know how to install Broadcom Wifi drivers on Linux mint.

Источник

How to Install Broadcom 802.11 Driver on Linux Mint 20

GNU/Linux Mint 20 Installing Broadcom 802.11n Wifi Driver Guide

Hi! The Tutorial shows you Step-by-Step How to Install Broadcom 802.11 Wireless Driver in GNU/Linux Mint 20.x Ulyana/Ulyssa/Uma/Una LTS Desktop.

And this Driver Supports the following Broadcom Devices:

  • BCM4311
  • BCM4312
  • BCM4313
  • BCM4321
  • BCM4322
  • BCM43142
  • BCM43224
  • BCM43225
  • BCM43227
  • BCM43228
  • BCM4331
  • BCM4352
  • BCM4360

Finally, for BCM4306, BCM4309, and BCM4318 see instead: B43 Wireless Driver.

How to Install Broadcom 802.11 Driver in Linux Mint 20 GNU/Linuxe - Featured

Broadcom 802.11 Wi-fi Driver Linux Mint 20 Installation Guide

Showing Ads here is the best solution I found for not embarassing somebody about participating in a #%$Foundation^.

«When the Last Tree has been cut down, the Last Fish caught, the Last River poisoned, only then will we realize that One Cannot Eat Money.»

«No usable Computer exists today with completely Open Software and Hardware (as much as some companies want to Market themselves as such).»

Follow Us

The GNU/Linux Free Software Phylosophy

GNU/Linux Logo

Steve Jobs’ Last Words

Steve Jobs Last Words in the Darkness

«Being a Winner in a Free Computing OS Mission means to adopt a Commercial like Strategy. Transcending Duality in Oneness and so dispensing both Free and Non Free Software. Cause evangelizing Freedom in a Non Free World is like keeping a Trojan Horse. Hallelujah!»

«Using the Money just for buying Stuff and Not Supporting the Free Gift Philosophy is a sign of a Selfish and Narrow Mind.»

What can Save the World from a Blind and Quick Self-destruction.
The Immediate and Humble Mass Conversion to the Spiritual Way!
Because Earth & Nature has been Ravaged without Pity by the Wild and Selfish mass Competition to Win and Shown that U’re someone Better because you got a Lot of fla$hY Power$$$.

«Taking care if somebody is liking, following, or buying is just a serious hidrance on the priceless Way of Creative Freedom.»

Credits

Ganesha

Everlasting Glory to God, Jesus Christ, The Holy Spirit, Ganesha, Shiva, Vishnu, Krisna, Laozi, Buddha, Bodhidharma, Ma Gcig, Hakuin, Ikkyu, Nagarjuna, Tilopa, Naropa, Milarepa, Suhrawardi, St Dismas, St Francesco, St Teresa, St John, St Filippo, Eckehart. All The Holy Divinities, Avatars, Saints, Mystics, and True Spiritual Masters. Because they are in the Eternal Light of Truth & Delight Enlightening a World of Darkness, Nescience, Blindness, Uneasiness and Falsehood!

Источник

Оцените статью
Adblock
detector