OSX Terminal showing incorrect hostname

31

14

When I open Terminal I expect it to show what my PS1 is set to \h:\W \u\$.

However it's not displaying my hostname Eriks-MacBook, as displayed in System Preferences.

Instead, it's showing a random string unknownb88d120cd4b2.

How can this be fixed or reset?

This machine is brand new, and the preferences/settings haven't been changed.

Erik W

Posted 2011-11-14T04:24:11.843

Reputation: 313

Type in hostname into the prompt and press enter. What do you get? – Blender – 2011-11-14T04:27:12.423

unknownb88d120cd4b2:~ erik$ hostname unknownb88d120cd4b2 unknownb88d120cd4b2:~ erik$ – None – 2011-11-14T04:43:57.293

But that is not what my computer's name is in System Prefs - Sharing. I changed it from default to "erik-mba" hoping that would help, but no dice. – None – 2011-11-14T04:45:21.740

Answers

26

Gordon gives a good answer to the origin of your hostname.

If you want the name that you set in System Preferences -> Sharing -> Computer Name to show up in your prompt, replace \h with $(scutil --get ComputerName). E.g my prompt is set with

PS1="[\u@:$(scutil --get ComputerName) \W]\\$ "

ajs

Posted 2011-11-14T04:24:11.843

Reputation: 276

20

Terminal is showing you the first label of your BSD hostname (assuming your shell is BASH). If your BSD hostname is yourhostname.mynetwork.com then Terminal will display only yourhostname-

So from where does the BSD hostname come? It can come from several places:

• from the file: /etc/hostconfig

• else from the file: /Library/Preferences/SystemConfiguration/preferences.plist (System ▸ System ▸ HostName)

• else the result of a reverse DNS query for your primary IP address (so you might notice a totally different hostname showing up when you visit an internet café than when connected at home)

• else your "Bonjour" hostname in System Preferences > Sharing (preferences.plist again... System ▸ Network ▸ HostNames ▸ LocalHostName)

• finally, if none of the above have been set, the BSD hostname will be simply localhost

By the way, I answered the same question a while ago over here: Mac OS X Terminal - where does the prompt name come from

username

Posted 2011-11-14T04:24:11.843

Reputation: 1 178

1is it possible that the reverse DNS lookup takes precedency over all other configurations on my system? – caesarsol – 2014-11-27T13:30:39.380

1I checked on my own system: /etc/hostconfig does not exist. preferences.plist ▸ System ▸ System ▸ HostName is not defined (although ComputerName is). Reverse DNS lookup returns the gibbering I'm seeing in my terminal window. System ▸ Network ▸ HostNames ▸ LocalHostName is defined. So if your system is showing the same as mine, then the reverse DNS lookup was the first match, and does take precedence over LocalHostName. – Edward Falk – 2016-04-25T21:48:20.667

12

OS X tries a number of things to find its "hostname". Unfortunately I don't know the exact list (and order), but I think what's happening here is that it's discovering a DNS name associated with its IP address, and using that instead of the Bonjour name it's advertising for itself (the one defined in Sharing preferences).

So why's it finding a DNS name? My guess is that your local router/DHCP server/DNS server is dynamically assigning it one, based on its ethernet hardware address (presumably b8:8d:12:0c:d4:b2). You may be able to adjust the router's settings to stop it doing this, or you could probably set the computer's DHCP client ID (in the Network Preferences, Advanced settings) to control what name it assigns you.

Gordon Davisson

Posted 2011-11-14T04:24:11.843

Reputation: 28 538

2This was most helpful to me. My machine was displaying this behavior, the key point being, to it seemed to have SPONTANEOUSLY changed names, as I had never seen a different one before. So I just wasted 90 minutes checking for viruses and disk issues and such. Glad to know I can safely stop wasting time. – conspiritech – 2013-03-22T18:18:35.390

1

Not sure if you are still having problems or not, this appears to have been fixed sometime between Yosemite and Sierra.

For new computers I start with the Sharing System Preferences, entering the [new name] as the Computer Name desired. I also enter the [new name] in all of the active DHCP Client ID fields for each network interface. After I've done that I open Terminal to confirm it reports a similar name, some characters are not allowed so the system will modify the name if necessary. You can change the name using the steps below, just replace the [new name] block with your desired computer name.

  1. Open Terminal
  2. At the prompt enter the following- sudo scutil --set HostName [new name]
  3. Open a new Terminal window to confirm the new name was accepted.

If the name is not to my liking I proceed with the above before binding it to Active Domain.

Wallace Karraker

Posted 2011-11-14T04:24:11.843

Reputation: 11