There are several ways for this :
$ /sys/class/net//address
this is the default location where u can find out the mac of any device.
$ cat /sys/class/net/*/addressis the easiest way to find out mac of hardware parts in ur ubuntu PC.
$ ifconfig -awill also provide the same details with some extra data.or you can use the grep to filter out the mac alone like :$ ifconfig -a | grep HWaddr | awk '{print $5}'
other commands :
$ ifconfig eth0
$ ip link show
$ ip -o link show eth0
Here in this blog it is explaining the same and several other ways to get this.