Imposta il nome host / nome computer per macOS

9

Ho una rete locale a casa. Questa rete contiene 5 laptop. Uno dei laptop è il laptop Apple con macOS 10.8. L'altro ha un Linux installato, tutti gli altri esegue Windows.

Quando provo ad aprire il mio router e controllo "Connected devices", sotto l'indirizzo IP di questo Mac vedo:

Nome host - qualche indirizzo IPV6

Quello che preferirei vedere è un nome significativo in modo che io possa usarlo nel file / etc / hosts nel laptop Linux. E vorrei anche controllare il nome del computer in modo che la riga / etc / hosts fosse corretta.

    
posta Igor 24.06.2017 - 06:03
fonte

2 risposte

13

Impostazione del nome host o del computer Mac dal terminale

  1. Open a terminal.
  2. Type the following command to change the primary hostname of your Mac:
    This is your fully qualified hostname, for example myMac.domain.com

    sudo scutil --set HostName <new host name>
    
  3. Type the following command to change the Bonjour hostname of your Mac:
    This is the name usable on the local network, for example myMac.local.

    sudo scutil --set LocalHostName <new host name>
    
  4. If you also want to change the computer name, type the following command:
    This is the user-friendly computer name you see in Finder, for example myMac.

    sudo scutil --set ComputerName <new name>
    
  5. Flush the DNS cache by typing:

    dscacheutil -flushcache
    
  6. Restart your Mac.

    
risposta data 24.06.2017 - 08:50
fonte
2

Puoi impostare il nome del computer in Preferenze di Sistema → Condivisione.

    
risposta data 24.06.2017 - 08:33
fonte

Leggi altre domande sui tag