TheMonarch macrumors 65816 Original poster May 6, 2005 1,467 1 Bay Area Apr 13, 2006 #1 Quick question. How do I find my Mac's Host ID? Preferably using terminal. Thanks
tag macrumors 6502a Apr 29, 2005 918 9 Apr 13, 2006 #2 I think this is what your referring to... Code: uname -n
TheMonarch macrumors 65816 Original poster May 6, 2005 1,467 1 Bay Area Apr 13, 2006 #3 Hmm. I think its Ethernet ID that I'm looking for.
tag macrumors 6502a Apr 29, 2005 918 9 Apr 13, 2006 #4 blaskillet4 said: Hmm. I think its Ethernet ID that I'm looking for. Click to expand... So your looking for your MAC address for your Ethernet port? You can find that with the command 'ifconfig' or more specifically if you need it for a script or something and need the ethernet address only you could run something like this... Code: ifconfig | grep "en0:" -A 3 | grep ether -m 1 | awk '{print $2}'
blaskillet4 said: Hmm. I think its Ethernet ID that I'm looking for. Click to expand... So your looking for your MAC address for your Ethernet port? You can find that with the command 'ifconfig' or more specifically if you need it for a script or something and need the ethernet address only you could run something like this... Code: ifconfig | grep "en0:" -A 3 | grep ether -m 1 | awk '{print $2}'
TheMonarch macrumors 65816 Original poster May 6, 2005 1,467 1 Bay Area Apr 13, 2006 #5 Yes! Thank you so much for your help