我使用 Mint,并且经常这样做
sudo....
apt-get install xxx
它可以工作,但后来我不知道 xxx 安装在哪里。我想编辑并重新配置我的 apache 'r 根文档以与 cakephp 一起使用,但我不知道如何操作。
答案1
这能达到你想要的效果吗?
apt-file show apache2
作为最后的手段
sudo find / -name httpd.conf
更新:
`find / -name httpd | grep "bin.*httpd"` -V | egrep 'ROOT|CONFIG'
应该产生类似
-D HTTPD_ROOT="/etc/httpd"
-D AP_TYPES_CONFIG_FILE="conf/mime.types"
-D SERVER_CONFIG_FILE="conf/httpd.conf"
除非你有很多 httpd 文件垃圾桶目錄。
否则,你可以仔细检查启动脚本的内容,例如/etc/init.d/httpd
或/etc/init.d/apache*