我正在使用本教程将包从.rpm转换为.deb 。但是,要测试和调试应用程序,我需要运行它。程序自述文件解释了如何使用以下命令将其作为服务运行:
systemctl enable progname.service
systemctl start progname.service
这些命令在ubuntu上相当于什么?
systemctl
(Ubuntu 15.04,Debian 8,CentOS 7,Fedora 15 ...之上的任何系统也是如此)。当系统运行systemd时,旧/usr/sbin/service
实用程序将调用systemctl
。
sudo service network-manager restart
当我找到这个时我一直在寻找。