-
Do a web search with duckduckgo for "generate mac address"
-
Note the MAC address
-
Open the ternminal
-
Get a root shell
sudo -i
- Get the device name
ip link show
-
Note device name (ex: enp0s25)
-
Clear the device record (may be optional)
ip link set dev DEVICENAMEHERE
- Set the new MAC address
ip link set dev DEVICENAMEHERE address NEWMACADDRESSHERE
- Restart the device, applying the new MAC address
ip link set dev DEVICENAMEHERE up
- Verify that the MAC has changed
ip link show
- Close the root terminal
logout