我试图在启动时添加ssh deamon,但是我遇到了以下问题
$ sudo update-rc.d ssh start 50 2 3 4 5 . stop 90 0 1 6 .
update-rc.d: warning: stop runlevel arguments (0 1 6) do not match ssh Default-Stop values (none)
Adding system startup for /etc/init.d/ssh ...
/etc/rc0.d/K90ssh -> ../init.d/ssh
/etc/rc1.d/K90ssh -> ../init.d/ssh
/etc/rc6.d/K90ssh -> ../init.d/ssh
/etc/rc2.d/S50ssh -> ../init.d/ssh
/etc/rc3.d/S50ssh -> ../init.d/ssh
/etc/rc4.d/S50ssh -> ../init.d/ssh
/etc/rc5.d/S50ssh -> ../init.d/ssh发布于 2014-06-06 20:17:50
更新-rc.d将尝试修改现有的运行级链接。如果它们不存在,就会抛出一个错误。
尝试默认选项来创建链接。
update-rc.d -f script defaultshttps://askubuntu.com/questions/477827
复制相似问题