터미널에서 MAC 주소를 변경하려고 할 때 Wi-Fi가 비활성화된 PC를 다시 시작했는데 열 수 없어서 네트워크가 열립니다.
이 메시지가 팝업됩니다.
The system network Services Are Not Compatible With This Version
답변1
nic에서 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 주소를 나타냅니다. PC를 다시 시작할 필요가 없습니다. PC를 시작할 때 Mac 주소를 설정하려면 이 명령을 rc.local에 입력하세요.
sudo nano /etc/rc.local
ifconfig eth0 down &&
ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx &&
ifconfig eth0 up &&
그런 다음 쓰기는 Ctrl+O를 누르고 닫으려면 Ctrl+X를 누르세요. PC를 다시 시작하면 작동됩니다.