how to see a list of programs that open themselves on osx?

  1. System Preferences:
    1. Click on the Apple icon in the top-left corner of the screen.
    2. Choose “System Preferences…” from the dropdown.
    3. Click on “Users & Groups”.
    4. Select your user account from the left pane (if it’s not already selected).
    5. Click on the “Login Items” tab on the right.
    6. You will see a list of items that open when you log in.
  2. Library Folder: Some applications might add startup scripts or daemons that aren’t listed in the Login Items. You can manually check these in the Library folders:
    1. In Finder, press Shift + Command + G (or from the menu select Go > Go to Folder).
    2. Type ~/Library/LaunchAgents and press enter. This will show the startup items specific to your user account.
    3. Go back to the “Go to Folder” dialog and type /Library/LaunchAgents to see system-wide startup items.
    4. For more system-level items, you can also check /Library/LaunchDaemons and /System/Library/LaunchDaemons. Note that you should be cautious when making changes in the system folder.

Cómo cambiar el hostname en OSX manualmente

Si necesitas cambiar el host en OSX, puedes seguir las siguientes instrucciones:

 

Procedure

Perform the following tasks to change the workstation hostname using the scutil command.

  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. Optional: 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.

https://knowledge.autodesk.com/support/smoke/learn-explore/caas/sfdcarticles/sfdcarticles/Setting-the-Mac-hostname-or-computer-name-from-the-terminal.html