我从源代码为Apache2构建了一个deb文件,也能够在我用来编译的机器上成功安装并运行。但是当我将那个deb文件复制(SCP)到另一台机器并安装时,新安装的系统中缺少apache2的日志目录(/ CloudS / Packages / apache2-cs / var / log /)。 >
使用命令dpkg -i file_name.deb安装
有人可以说出原因是什么,我该如何解决?
编译器:
root@compiler:/build/result# cd /CloudS/Packages/apache2-cs/
root@compiler:/CloudS/Packages/apache2-cs# ls
usr var
另一台机器:
root@ubuntu-1cpu-1gb-de-fra1:~# ls /CloudS/Packages/apache2-cs/
usr
root@ubuntu-1cpu-1gb-de-fra1:~#
如您所见,在另一台计算机上安装相同的deb文件时,缺少“ var”目录。我使用以下配置来构建deb文件
./configure --enable-layout=Debian --prefix=/CloudS/Packages/apache2-cs --sysconfdir=/etc/apache2-cs --enable-rewrite=shared --enable-speling=shared --with-pcre --with-include-apr --with-include-aprutils --enable-load-all-modules --with-suexec-caller=cloudS-www --with-suexec-logfile=/var/log/apache2-cs/suexec.log --with-suexec-bin=/usr/lib/apache2-cs/suexec --with-suexec-docroot=/var/www --with-suexec-userdir=public_html --with-suexec-uidmin=100 --enable-suexec=shared --with-program-name=apache2-cs --enable-logio
make clean
make
checkinstall --install=no --pakdir=/build/result/
答案 0 :(得分:0)
checkinstall
仅检查make
所做的事情,而make
不创建任何日志文件。您可以使用checkinstall
的{{1}}选项强制在生成的包中添加路径。进一步查看其manual page.