我想安装upstart到我的ubuntu服务器13.10,但我很困惑我是否需要下载源代码或安装包。在暴发户的入门页面中,我认为他们指示安装源代码。
但是这里和这里似乎都说暴发户包括在以后的发行版中。我在shell中尝试了initctl,得到了缺少的命令错误。这是否意味着我需要从源代码安装它?我是新手,所以如果你能解释我如何安装新贵,我会很感激。
发布于 2013-12-27 00:33:22
你确实安装了启动程序。实际上,你链接的网页的内容是:Ubuntu has had upstart installed as a replacement for init scripts since as far back as 2006, but it hasn’t yet been really used until the latest beta release of Karmic (Ubuntu 9.10).和新贵主页列出了Ubuntu6.10以及以后使用Upstart的内容。
若要学习initctl用法,请键入initctl --help或man initctl。
讯息
user@ubuntu:~$ initctl
initctl: missing command
Try `initctl --help' for more information.由initctl打印,并暗示它已安装并可执行,否则shell宁愿打印initctl: command not found。实际上,which initctl在我的机器上返回/sbin/initctl。
发布于 2014-09-09 18:04:00
要检查您正在运行的upstart的哪个版本:
initctl --version预期输出类似于以下内容:
initctl (upstart 1.5)
Copyright (C) 2012 Scott James Remnant, Canonical Ltd.
This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.要检查您正在运行的Ubuntu的哪个版本:
lsb_release -sd预期输出类似于以下内容:
Ubuntu 12.04.4 LTShttps://askubuntu.com/questions/396167
复制相似问题