Files
tldr/pages.zh/osx/systemsetup.md

24 lines
717 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 系统设置
> 配置系统偏好设置的机器设置。
> 更多信息:<https://support.apple.com/guide/remote-desktop/about-systemsetup-apd95406b8d/mac>。
- 启用远程登录SSH
`systemsetup -setremotelogin on`
- 指定时区、NTP 服务器并启用网络时间:
`systemsetup -settimezone "{{US/Pacific}}" -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime on`
- 让机器永不进入睡眠状态,并在断电或内核恐慌时自动重启:
`systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze on`
- 列出有效的启动磁盘:
`systemsetup -liststartupdisks`
- 指定一个新的启动磁盘:
`systemsetup -setstartupdisk {{path/to/directory}}`