Change your Network Card MAC Address on Ubuntu

There are a lot of reasons you might want to manually set your MAC address for your network card. I won’t ask you what your reason is.To change this setting, we’ll need to edit the /etc/network/interfaces file. You can choose to use a different editor if you’d like.sudo gedit /etc/network/interfacesYou should see the line for your network interface, which is usually eth0. If you have dhcp enabled, it will look like this:auto eth0iface eth0 inet dhcpJust add another line below it to make it look something like this:auto eth0iface eth0 inet dhcp...