我刚安装了守护进程:
apt-get install daemon
我正在使用的脚本需要守护程序的安装目录。这是哪里,或者我如何找到它?
答案 0 :(得分:1)
在apt cache中找到下载的包:
ls -alF /var/cache/apt/archives | grep daemon
如果您已经清除了apt缓存,请尝试重新下载包:
sudo apt-get --download-only install daemon
然后在安装后检查此包和文件路径的内容:
sudo dpkg -c /var/cache/apt/archives/daemon_0.6.4-1_amd64.deb
drwxr-xr-x root/root 0 2010-06-14 23:55 ./
drwxr-xr-x root/root 0 2010-06-14 23:55 ./etc/
-rw-r--r-- root/root 141 2010-06-14 23:55 ./etc/daemon.conf
drwxr-xr-x root/root 0 2010-06-14 23:55 ./usr/
drwxr-xr-x root/root 0 2010-06-14 23:55 ./usr/bin/
-rwxr-xr-x root/root 187080 2010-06-14 23:55 ./usr/bin/daemon
...
我认为答案是 / usr / bin 。
<强>更新强>
以上版本的daemon
包实际用于Debian 7.3