系統網路服務與該版本不相容

系統網路服務與該版本不相容

當我嘗試從終端更改我的 MAC 位址時,我重新啟動了電腦,Wi-Fi 被停用,我無法打開它,然後我打開網絡

它彈出此訊息

The system network Services Are Not Compatible With This Version

答案1

更改網路卡 mac 位址最簡單的方法是:

sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether  xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up

其中 xx:xx:xx:xx:xx:xx 代表 MAC 位址。無需重新啟動電腦。如果你想在電腦啟動時設定 mac 位址,請將此指令放在 rc.local 中

須藤納米 /etc/rc.local

 ifconfig eth0 down &&
 ifconfig eth0 hw ether  xx:xx:xx:xx:xx:xx &&
 ifconfig eth0 up &&

然後按 ctrl+O 進行寫入,按 ctrl+X 關閉。重新啟動電腦即可運作。

相關內容