经过一番努力,我终于可以安装Debian 12(每周)在配备 Intel 和 T2 的 MacbookPro 2019 上使用 ISO CD 和以太网电缆:
我做了以下事情:
$ sudo iwconfig
lo no wireless extensions.
enx00e04c680318 no wireless extensions.
$ lspci -nn | grep Network
05:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM4364 802.11ac Wireless Network Adapter [14e4:4464] (rev 04)
/etc/modprobe.d$ ls -l
total 12
-rw-r--r-- 1 root root 180 Dec 26 2022 broadcom-sta-dkms.conf
-rw-r--r-- 1 root root 127 Mar 7 10:33 dkms.conf
-rw-r--r-- 1 root root 154 Mar 12 23:28 intel-microcode-blacklist.conf
$ sudo apt-get install linux-image-$(uname -r)
linux-image-6.6.15-amd64 is already the newest version (6.6.15-2).
$ sudo apt-get install linux-headers-$(uname -r)
$ sudo apt-get install broadcom-sta-dkms
$ find /lib/modules/$(uname -r)/updates
/lib/modules/6.6.15-amd64/updates
/lib/modules/6.6.15-amd64/updates/dkms
/lib/modules/6.6.15-amd64/updates/dkms/wl.ko.xz
$ sudo modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
$ sudo modprobe wl
$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
$ nmcli networking on
Added the PATH to modprobe in .bashrc file:
export PATH=$PATH:/sbin:/usr/sbin
WiFi 仍然没有显示。
有什么帮助吗?