标签:actually style ports debian less https == image rop
# Debian 9 "Stretch" deb http://deb.debian.org/debian stretch-backports main contrib non-free
# apt-get update # apt-get install linux-image-$(uname -r|sed ‘s,[^-]*-[^-]*-,,‘) linux-headers-$(uname -r|sed ‘s,[^-]*-[^-]*-,,‘) broadcom-sta-dkms
This will also install the recommended wireless-tools package. DKMS will build the wl module for your system.
# sudo modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
#sudo modprobe wl
I don‘t what below steps for
=================================================================================
shell script:
#!/bin/sh ip link set wlp2s0 down >/dev/null 2>&1 ip link set wlp2s0b1 down >/dev/null 2>&1 modprobe -r wl brcmsmac modprobe -r cfg80211 brcmsmac cordic brcmutil bcma if [ "$1" = "wl" ]; then modprobe wl else modprobe brcmsmac fi
标签:actually style ports debian less https == image rop
原文地址:https://www.cnblogs.com/winditsway/p/12495834.html