关于 'start-stop-daemon' not found in PATH or not executable

Posted der1128

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 'start-stop-daemon' not found in PATH or not executable相关的知识,希望对你有一定的参考价值。

  有段时间没有登上ubuntu了,再次登上系统安装软件时,出现可如下的情况:

技术图片

  如图提示:start-stop-daemon 不在环境变量中,或不能执行;

  根据文章中的方法进行尝试,但是,问题任然没有结果。可能是start-stop-daemon没有安装(可能是之前文件误删导致)。于是有对守护进程“start-stop-daemon”进行安装。问题得到解决。

  安装"start-stop-daemon"

cd /tmp  
wget http://developer.axis.com/download/distribution/apps-sys-utils-start-stop-daemon-IR1_9_18-2.tar.gz  
tar zxf apps-sys-utils-start-stop-daemon-IR1_9_18-2.tar.gz  
cd apps/sys-utils/start-stop-daemon-IR1_9_18-2/  
gcc start-stop-daemon.c -o start-stop-daemon  
cp start-stop-daemon /usr/local/bin/start-stop-daemon 

   参考:https://blog.csdn.net/weixin_33701617/article/details/88694701

     https://blog.csdn.net/weixin_33858336/article/details/91886882

以上是关于关于 'start-stop-daemon' not found in PATH or not executable的主要内容,如果未能解决你的问题,请参考以下文章

start-stop-daemon 在外部脚本条件下运行

如何记录由 start-stop-daemon 启动的进程的标准输出?

什么是 linux 脚本中的 start-stop-daemon?

如何通过start-stop-daemon优雅地关闭Spring Boot应用程序[重复]

linux中守护进程启停工具start-stop-daemon

如何防止 start-stop-daemon 在 cronjob 中创建多个实例?