systemctl set-default
时间: 2023-04-28 07:02:51 浏览: 1080
systemctl set-default命令用于设置系统的默认运行级别。默认运行级别是系统启动时自动进入的运行级别。可以使用以下命令设置默认运行级别:
systemctl set-default [target]
其中,[target]是要设置的运行级别。常见的运行级别包括:
- graphical.target:图形化界面
- multi-user.target:多用户命令行界面
- rescue.target:救援模式
例如,要将系统的默认运行级别设置为图形化界面,可以使用以下命令:
systemctl set-default graphical.target
这样,系统启动时就会自动进入图形化界面。
相关问题
systemctl set-default multi-user.target
这个问题属于技术问题,我可以回答。systemctl set-default multi-user.target 是一个用于设置系统默认运行级别的命令,将系统默认的运行级别设置为 multi-user.target,表示系统将以多用户模式启动。
sudo systemctl set-default graphical.target
您好!对于您的问题,可以将系统默认的运行级别设置为图形界面目标(graphical.target)。这样,在下次启动时,系统将自动进入图形界面模式。
要执行此操作,请在终端中输入以下命令:
```
sudo systemctl set-default graphical.target
```
输入密码后,系统将确认并更新默认的运行级别。
请注意,这仅适用于基于systemd的Linux发行版,如Ubuntu、Fedora等。不同的发行版可能使用不同的命令或工具来设置默认运行级别。
阅读全文