在执行命令服务–status-all之后,我得到了我机器上所有服务的列表.我得到这样的输出.
[ ? ] acpi-fakekey [ ? ] acpi-support [ + ] acpid [ - ] anacron [ + ] apache2 [ + ] atd [ - ] bootlogd
什么是?意思?我总是假设一个过程开始的手段,并且 – 意味着过程被停止.什么状态是服务之前?在?
这是我/ proc / version文件的内容,这有助于任何人回答我.
Linux version 2.6.32-5-amd64 (Debian 2.6.32-45)
提前致谢!
解决方法
当/usr/sbin / service脚本在/etc/init.d下的相关脚本中的case结构中找不到状态行时,将打印service -status-all输出中的问号.
如果查看/usr/sbin / service脚本,可以找到这样的if语句:
if ! grep -qs "\Wstatus)" "$SERVICE"; then #printf " %s %-60s %s\n" "[?]" "$SERVICE:" "unknown" 1>&2 echo " [ ? ] $SERVICE" 1>&2 continue else