linux中怎么找到开机自启任务
时间: 2023-05-30 08:01:33 浏览: 273
linux开机自启动
5星 · 资源好评率100%
1. 查看 /etc/rc.d/ 目录下的 rc.local 文件,该文件中包含着开机自启动的命令。
2. 使用 systemd 来管理开机自启动任务,可以通过以下命令来查看开机自启动的服务:
systemctl list-unit-files --type=service --all
3. 使用 chkconfig 命令来管理开机自启动任务,该命令可以显示所有的运行级别下的服务状态:
chkconfig --list
4. 使用 systemctl 命令来启动或停止开机自启动的服务:
systemctl start/stop/restart service_name
5. 使用 crontab 命令来管理定时任务,可以在 /etc/crontab 文件中设置开机自启动的任务。
阅读全文