在PATH中找不到预期的程序或不可执行



我一直运行lb build,修复问题后再运行它,现在我得到这个消息:

dpkg: warning: 'start-stop-daemon' not found in PATH or not executable
dpkg: error: 1 expected program not found in PATH or not executable
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin
E: Sub-process /usr/bin/dpkg returned an error code (2)
P: Begin unmounting filesystems...
P: Saving caches...
Reading package lists... Done
Building dependency tree... Done

然后我去检查我的路径,我看到

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

这清楚地显示了/usr/local/sbin, /usr/sbin/sbin

有什么建议吗?

<标题> * *更新1 * *

遵循本指南

http://ubuntuforums.org/showthread.php?t=1449322

每个命令都运行正常,但再次运行lb build后仍然出现相同的错误信息。

**UPDATE 2——附加信息**

root@kali:~# ls -lA/sbin(其他文件)-rwxr-xr-x 1 root root 28208 Aug 12 15:00 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://debianforum.de/forum/viewtopic.php?f=34&t=155279(德语)唯一已知的解决方案是在sudo lb build之前运行sudo lb clean

相关内容

  • 没有找到相关文章

最新更新