📅  最后修改于: 2023-12-03 15:11:38.258000             🧑  作者: Mango
在 macOS 系统中,我们可以使用终端进行系统更新,而 Shell-Bash 是一种常见的终端命令行工具,下面我们来了解一下如何使用 Shell-Bash 进行 macOS 系统更新。
在终端中使用以下命令检查系统更新:
softwareupdate -l
返回结果类似于以下内容:
Software Update Tool
Finding available software
Software Update found the following new or updated software:
* macOS 10.15.7 Update-
macOS 10.15.7 Update (Update), 3500181K [recommended]
Info: https://support.apple.com/kb/HT211896
该命令会列出可用的 macOS 系统更新,我们可以通过该列表选择我们需要安装的更新。
在终端中使用以下命令安装系统更新:
sudo softwareupdate -i <product>
其中 <product>
是要安装的更新名称,例如:
sudo softwareupdate -i "macOS 10.15.7 Update"
该命令会开始下载并安装指定的系统更新。在执行该命令前,需要输入管理员密码进行确认。
我们也可以配置 macOS 系统在背景自动安装系统更新。在终端中使用以下命令配置:
sudo softwareupdate --schedule on
该命令会将系统更新设置为每天自动检查和安装更新。
通过终端使用 Shell-Bash 工具,我们可以方便地进行 macOS 系统更新,并且还能轻松配置系统自动更新,提高我们的工作效率。