snippetbashTip
systemsetup — Configure System Preferences machine settings. More information: <https://support.apple.com/guide/re
Viewed 0 times
commandpreferencesconfigureclisystemsetupsettingsmachinesystem
macos
Problem
How to use the
systemsetup command: Configure System Preferences machine settings. More information: <https://support.apple.com/guide/remote-desktop/about-systemsetup-apd95406b8d/mac>.Solution
systemsetup — Configure System Preferences machine settings. More information: <https://support.apple.com/guide/remote-desktop/about-systemsetup-apd95406b8d/mac>.Enable remote login (SSH):
systemsetup -setremotelogin onSpecify timezone, NTP Server, and enable network time:
systemsetup -settimezone "{{US/Pacific}}" -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime onMake the machine never sleep and automatically restart on power failure or kernel panic:
systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze onList valid startup disks:
systemsetup -liststartupdisksSpecify a new startup disk:
systemsetup -setstartupdisk {{path/to/directory}}Code Snippets
Enable remote login (SSH)
systemsetup -setremotelogin onSpecify timezone, NTP Server, and enable network time
systemsetup -settimezone "{{US/Pacific}}" -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime onMake the machine never sleep and automatically restart on power failure or kernel panic
systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze onList valid startup disks
systemsetup -liststartupdisksSpecify a new startup disk
systemsetup -setstartupdisk {{path/to/directory}}Context
tldr-pages: osx/systemsetup
Revisions (0)
No revisions yet.