我有一个戴尔PowerEdge T710,我正在尝试作为一个主服务器运行。我已经成功地安装了Devuan,但是我没有正确地建立网络。我想知道是否有任何方法为其Broadcom Limited NetXtreme II BCM5709 Gigabit Ethernet controller添加非免费的网络驱动程序。我也开放重新安装,但如果我要这样做,我想要一些关于添加适当的网络固件到安装映像的指导。我也开放放弃和使用debian非免费网络安装iso。(我最终使用Devuan来玩其他init系统,但我坚持使用这个发行版并不是非常重要)
发布于 2018-10-27 18:34:36
由于devuan是基于Debian的,所以您可以在/etc/apt/sources.list中添加Debian非空闲存储库。
deb http://deb.debian.org/debian stretch non-free
deb http://deb.debian.org/debian-security/ stretch/updates non-free然后为BCM5709千兆以太网安装相应的固件包
sudo apt-get update
sudo apt-get install firmware-bnx2x至于手动下载,您可以查看任何弹力包的用途,然后从https://packages.debian.org/stretch/下载;在本例中,是https://packages.debian.org/stretch/firmware-bnx2x。
https://unix.stackexchange.com/questions/478144
复制相似问题