Quantcast
Channel: Output only MAC address on Ubuntu - Ask Ubuntu
Browsing latest articles
Browse All 9 View Live

Answer by mohanjoy for Output only MAC address on Ubuntu

The below command is working for my ubuntu PC.ifconfig | grep etherether c8:f7:50:fd:14:c8 txqueuelen 1000 (Ethernet)

View Article



Answer by rukn for Output only MAC address on Ubuntu

There are several ways for this :$ /sys/class/net//addressthis 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...

View Article

Answer by user352726 for Output only MAC address on Ubuntu

As some have commented, ifconfig is deprecated in favor of the ip command. So combining the various solutions and comments, I'd use:$ LANG=C ip link show | awk '/link\/ether/ {print $2}'FF:FF:FF:FF:FF:FF

View Article

Answer by terdon for Output only MAC address on Ubuntu

Here are a few ways:grep. There are various regular expressions that will pick these up. Here, I am looking for 5 repetitions of 2 letters or numbers followed by a colon, then any two characters. The...

View Article

Answer by muru for Output only MAC address on Ubuntu

You can access the address file for each device on the /sys virtual filesystem. The MAC address should be in /sys/class/net/<device-name>/address:$ cat...

View Article


Answer by heemayl for Output only MAC address on Ubuntu

The easiest way would be to use grep with PCRE:$ ifconfig -a | grep -Po 'HWaddr \K.*$'74:d4:35:84:34:13 grep -P will enable us to use perl compatible Regexgrep -o will only take the matched portion of...

View Article

Answer by Pilot6 for Output only MAC address on Ubuntu

ifconfig -a | grep HWaddr | awk '{print $5}'If your system output is non-English in this command, then it makes sense to run it this way.LANG=C ifconfig -a | grep HWaddr | awk '{print $5}'This is...

View Article

Output only MAC address on Ubuntu

In Ubuntu, with command ifconfig -a, I obtain all the information about my ethernet/wifi interfaces.But I need to obtain as output only the MAC address,...

View Article


Answer by steeldriver for Output only MAC address on Ubuntu

If you want a layer of abstraction away from the /sys/class/net interface you could use the nmcli command. For example, the GENERAL field of the dev[ice] object contains the interface type and hardware...

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images