我使用phpbrew已经安装了特定的php版本使用:
phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2
告诉我一个信息:
Apache module dir /usr/lib/apache2/modules is not writable.
Please consider using chmod or sudo.
我不知道怎么做。如果有人可以帮助我,那就太好了!谢谢!
答案 0 :(得分:2)
这意味着您正在运行的用户无权修改目录/usr/lib/apache2/modules
,这是进行安装所必需的。建议您使用chmod
修改目录的权限(除非您知道自己在做什么,否则不明白)或通过sudo
使用超级用户凭据运行命令:
$ sudo phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2
答案 1 :(得分:2)
尝试使用sudo运行相同的命令
sudo phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2