我正在运行 13.10。全新安装。运行:sudo apt-get install apache2
我期望在 /usr/sbin 目录中有 htpasswd 以及 apache2 可执行文件。但事实并非如此。
我可以提供任何必要的信息。
答案1
可能你没有安装 apache2-utils。尝试在软件管理器或命令行中搜索 apache-utils:
sudo apt-get install apache2-utils
答案2
username@host:~$ htpasswd
The program 'htpasswd' can be found in the following packages:
* apache2-utils
* mini-httpd
Try: sudo apt-get install <selected package>
错误信息很明显。sudo apt-get install apache2-utils
应该可以解决您的缺少htpasswd
二进制文件的问题。