首页 > 其他分享 >debian 安装博通网卡驱动

debian 安装博通网卡驱动

时间:2023-04-01 11:22:32浏览次数:41  
标签:free non apt 网卡 bullseye 博通 main debian

 

 

1、 环境准备

1.1 修改 apt 的配置文件,允许安装 non-free 软件

  在 /etc/apt/sources.list 中生效的行的最后加上 contrib non-free

执行: vim /etc/apt/sources.list 

    修改为

# deb cdrom:[Debian GNU/Linux 11.6.0 _Bullseye_ - Official amd64 DVD Binary-1 20221217-10:40]/ bullseye contrib main

# deb cdrom:[Debian GNU/Linux 11.6.0 _Bullseye_ - Official amd64 DVD Binary-1 20221217-10:40]/ bullseye contrib main

deb http://ftp.cn.debian.org/debian/ bullseye main non-free
deb-src http://ftp.cn.debian.org/debian/ bullseye main non-free

deb http://ftp.cn.debian.org/debian/ bullseye-security main contrib non-free
deb-src http://ftp.cn.debian.org/debian/ bullseye-security main contrib non-free

# bullseye-updates, to get updates before a point release is made;
# see https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_updates_and_backports
deb http://ftp.cn.debian.org/debian/ bullseye-updates main contrib non-free
deb-src http://ftp.cn.debian.org/debian/ bullseye-updates main contrib non-free

1.2 更新源

  执行

apt-get update

2、开始安装驱动

  执行

apt-get install broadcom-sta-dkms

  提示如下,

正在读取软件包列表... 完成
正在分析软件包的依赖关系树... 完成
正在读取状态信息... 完成                 
您也许需要运行“apt --fix-broken install”来修正上面的错误。
下列软件包有未满足的依赖关系:
 broadcom-sta-dkms : 依赖: dkms (>= 2.1.0.0) 但是它将不会被安装
                     推荐: wireless-tools 但是它将不会被安装
 ibverbs-providers : 依赖: libc6 (>= 2.34) 但是 2.31-13+deb11u5 正要被安装
                     依赖: libibverbs1 (>= 38) 但是它将不会被安装
 libibverbs1-dbg : 依赖: libibverbs1 (= 1.2.1-2) 但是它将不会被安装
E: 有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt --fix-broken install”(也可以指定一个解决办法)。

  则按照提示,执行(如果上面的命令每报错,则不用执行)

apt --fix-broken install

再次尝试安装

apt-get install broadcom-sta-dkms

 

4、执行

modprobe -r b44 b43 b43legacy ssb brcmsmac

  4.1 bash: modprobe:未找到命令

  修改profile文件:

vim /etc/profile

  找到设置PATH的行,添加 export PATH=/usr/sbin:$PATH
  使修改立即生效

source /etc/profile
再次执行
modprobe -r b44 b43 b43legacy ssb brcmsmac

 

  

 参考

https://www.cnblogs.com/arra1888/p/15516934.html

https://www.cnblogs.com/springhgui/p/16797049.html

 

 

 

 

 

   

标签:free,non,apt,网卡,bullseye,博通,main,debian
From: https://www.cnblogs.com/lovleo/p/17278266.html

相关文章

  • 虚拟机网卡起不来
    昨天晚上家中断电,早上起来重启虚拟机发现ssh连不上去了,在虚拟机内部发现ens33网卡没有启动,想着通过systemctl restart network重启该网卡,发现重启失败,通过journalctl-xe发现错误提示:Bringingupinterfaceens33:Error:Connectionactivationfailed在网上搜索一圈后尝试......
  • 双网卡设备通过HIKSDK接入EasyCVR平台显示离线是什么原因?
    EasyCVR视频融合平台基于云边端协同架构,具有强大的数据接入、处理及分发能力,平台支持海量视频汇聚管理,可支持多协议接入,包括市场主流标准协议与厂家私有协议及SDK,如:国标GB28181、RTMP、RTSP/Onvif、海康Ehome、海康SDK、宇视SDK等(具体见下图)。平台能在复杂的网络环境中,将分散的各......
  • Vanilla OS 2.0 底层从 Ubuntu 迁移到 Debian
    VanillaOS是去年才正式发布的 Linux 发行版“新秀”,基于Ubuntu构建,免费且开源,默认桌面环境是GNOME。虽然VanillaOS的底层是Ubuntu,但它删除了各种Ubuntu定制和......
  • Add Bash Completion In Debian
    Bashcompletionisausefultoolforcompletionoffilepaths,commandsetc.BydefaultitisenabledonUbuntubutnotonDebian.Withtwosimplestepsitcan......
  • DM9000有线网卡驱动编写
    1.DM9000简介   DM9000是一款完全集成的、性价比高、引脚数少、带有通用处理器接口的单芯片快速以太网控制器。自带一个10/100MPHY和4K双字的SRAM,DM9......
  • 关于ESXi 8 + Debian 11的VMware Tools安装
    问题描述今天登录vCenter查看虚拟机的时候,发现除了debian虚机的VMwareTools状态栏写着“未知”:查看虚拟机摘要的时候,发现“VMwareTools正在运行,版本:11333(客户机......
  • debian 安装软件及卸载软件的三种方法
    debian下,例如kalidebian第一种:通过安装源安装的软件1、安装软件apt-getinstallsoftname2、删除软件包,但是不删除软件的配置文件:(如果再想安装,可能会出现问题)apt-ge......
  • Gpt告诉你如何通过代码获取安卓root权限并创建虚拟网卡
    在Android5.0及以上的操作系统中,已经内置了TUN和TAP驱动,因此可以使用代码的方式创建虚拟网卡。以下是一个使用Java代码创建虚拟网卡的示例:```javapubliccla......
  • ubuntu系统单网卡配置多网段IP
    环境系统版本:Ubuntu16.04.5LTS配置ubuntu系统网卡文件是interfaces,修改网卡配置文件vim/etc/network/interfaces添加2个IP地址:autoeth0:1ifaceeth0:1inetstat......
  • vmware安装redhat 6.0初次启动网卡无法启动问题
    在使用vmware(目前在6.5和7.1.4版本上试过)安装redhatenterpriselinux6.0之后,第一使用网卡会遇到无法获取IP地址的情况,当运行“#servicenetworkrestart”之后,只能显示......