2

我一直在运行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再次运行后仍然出现相同的错误消息。

**更新 2——附加信息**

root@kali:~# ls -lA /sbin (其他文件) -rwxr-xr-x 1 root root 28208 Aug 12 15:00 start-stop-daemon

4

2 回答 2

0

首先,您必须检查第一行的反馈信息(尽管它只是一个警告)。

那么,你一定明白警告是关键。所有的错误都是由这个警告引起的。您必须将 start-stop-daemon 添加到您的 PC。

根据以下:

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

现在你可以帮助自己,也可以帮助他人

于 2014-11-06T10:42:01.613 回答
0

我有同样的问题,根据https://debianforum.de/forum/viewtopic.php?f=34&t=155279(德语),唯一已知的解决方案是sudo lb cleansudo lb build.

于 2017-08-20T05:49:01.580 回答