质量为本、客户为根、勇于拼搏、务实创新
ubuntu自启动程序如何关停
要停止 Ubuntu 自启动的程序,您可使用以下命令:
sudo systemctl list-units --type=service
sudo systemctl stop <service-name>
sudo systemctl disable <service-name>
请将 <service-name> 替换为您希望停止或禁用的自启动程序的名称。
<service-name>
TOP