在Debian系统中,你可以使用systemctl
命令来设置服务开机自启
首先,找到你想要设置开机自启的服务名称。你可以使用systemctl list-units --type=service
命令来查看所有服务的列表。
假设你要设置的服务名称为your-service.service
,你可以使用以下命令来设置开机自启:
sudo systemctl enable your-service.service
这个命令会在/etc/systemd/system
目录下创建一个符号链接,指向your-service.service
文件。这样,在系统启动时,systemd
会自动加载并启动该服务。
sudo systemctl start your-service.service
sudo systemctl status your-service.service
这将显示服务的当前状态,如正在运行、已停止等。
sudo systemctl disable your-service.service
这将删除之前创建的符号链接,使得在系统启动时不会加载该服务。