1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 17:26:14 +02:00
tldr/pages/osx/systemsetup.md

25 lines
657 B
Markdown
Raw Normal View History

# systemsetup
> Configure System Preferences machine settings.
2021-11-15 03:45:59 +08:00
> More information: <https://ss64.com/osx/systemsetup.html>.
- Enable remote login (SSH):
`systemsetup -setremotelogin on`
- Specify timezone, NTP Server and enable network time:
`systemsetup -settimezone {{US/Pacific}} -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime on`
- Make the machine never sleep and automatically restart on power failure or kernel panic:
`systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze on`
- List valid startup disks:
`systemsetup -liststartupdisks`
2016-01-20 03:52:51 -08:00
- Specify a new startup disk:
`systemsetup -setstartupdisk {{path}}`