mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

These 6 files had multiple examples all separated by a single newline. While rendering it in markdown, the examples all come up in a single line. Adding another newline makes rendering better. Also will help in easier copying (double click on the line to copy).
29 lines
624 B
Markdown
29 lines
624 B
Markdown
# systemsetup
|
|
|
|
> Configure System Preferences machine settings
|
|
|
|
- Enable remote login (SSH)
|
|
|
|
`systemsetup -setremotelogin on`
|
|
|
|
- Specify TimeZone, NTP Server and enable network time
|
|
|
|
`systemsetup -settimezone {{US/Pacific}}`
|
|
|
|
`systemsetup -setnetworktimeserver {{us.pool.ntp.org}}`
|
|
|
|
`systemsetup -setusingnetworktime on`
|
|
|
|
- Make the machine never sleep; restart on freeze & power failure
|
|
|
|
`systemsetup -setsleep off`
|
|
|
|
`systemsetup -setrestartpowerfailure on`
|
|
|
|
`systemsetup -setrestartfreeze on`
|
|
|
|
- List valid startup disks, specify a new startup disk
|
|
|
|
`systemsetup -liststartupdisks`
|
|
|
|
`systemsetup -setstartupdisk {{path}}`
|