我购买了 TP-link Archer T2UH wifi USB 加密狗。我正在尝试将其安装在我的工作计算机上,该计算机具有 linux mint 18.2 Sofia 和内核 4.8.0。
我使用以下说明成功地将其安装在我的家庭电脑上,其中有 Mint 18 Sarah,内核为 4.4.0.21:
mkdir ~/src
cd ~/src
git clone https://github.com/Myria-de/mt7610u_wifi_sta_v3002_dpo_20130916.git
make
sudo make install
sudo cp RT2870STA.dat /etc/Wireless/RT2870STA/RT2870STA.dat
sudo reboot
然而,当在我的工作计算机上使用较新的内核尝试相同的操作时,运行“make”时会出现错误:
/home/mikael/src/mt7610u_wifi_sta_v3002_dpo_20130916/include/cfg80211.h:35:49
: error: ‘IEEE80211_NUM_BANDS’ undeclared here (not in a function) struct
ieee80211_supported_band Cfg80211_bands[IEEE80211_NUM_BANDS];
如何解决这个问题?
米凯尔