系统不会崩溃

系统不会崩溃
/etc/init.d/.depend.stop

我的Ubuntu 12.04系统正常关闭没有收到错误消息无法打开

 / etc / init.d / .depend.stop
    no such file of directory

见图片

http://screencloud.net//img/screenshots/21c7280b39f072361ac838005de4ab1a.png

我能做些什么?

答案1

我不知道它们是做什么用的,但是下面这三个命令可以创建这些文件,并用与我的副本相同的内容填充它们/etc/init.d/.depend.{stop,start,boot}

sudo install -b -m 644 <(<<EOF
TARGETS =
EOF) /etc/init.d/.depend.stop

sudo install -b -m 644 <(<<EOF
TARGETS =
INTERACTIVE =
EOF) /etc/init.d/.depend.start

sudo install -b -m 644 <(<<EOF
TARGETS =
INTERACTIVE =
EOF) /etc/init.d/.depend.boot

答案2

@Oli 的答案应该会为您创建这些文件,但如果您想关闭系统,请尝试使用:

sudo shutdown -P now

相关内容