Change MAC address via Terminal [duplicate]
Solution 1:
Easiest way to change mac address on nic is:
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up
Where xx:xx:xx:xx:xx:xx represent mac address
For wlan
sudo ifconfig wlan0 down
sudo ifconfig wlan0 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig wlan0 up