Answers:
小更新。从15.04开始,Ubuntu默认使用systemd而不是upstart,因此现在要在启动时禁用tor,我们应该运行:
sudo systemctl disable tor.service
您在这里有几种选择。对于GUI用户,我建议使用 bum
(Boot-Up Manager)这样的答案。但是,您使用的是服务器,目前Tor尚未移至新贵,因此可以使用update-rc.d
或rm
。
sudo update-rc.d -f tor remove
。这将删除所有符号链接,并且在下次重新启动时,Tor将不会启动。“ Ubuntu Server的Chkconfig替代方案? ” 的答案对此进行了讨论。sudo update-rc.d tor disable
。这会将启动脚本更改为停止脚本,并在启动时有效地禁用了Tor启动。“ 如何在计算机启动时自动停止apache2,mysql的启动? ” 的答案讨论了该方法。rm
删除以下链接:sudo rm /etc/rc?.d/S*tor
。这将删除rcX.d
子目录中的每个文件(X
代表数字或S),每个文件S
均以字母开头(对于Start脚本),并以结尾tor
。find
和rm
:find /etc/rc?.d -type l -name "S*tor" -exec rm {} \;
。这看起来是特定于符号链接的。