我正在使用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.我不知道如何做that.if,有人可以帮助我,这将是伟大的!谢谢!
发布于 2014-04-10 08:22:07
这意味着您正在运行的用户没有修改目录/usr/lib/apache2/modules的权限,这是进行安装所必需的。建议您使用chmod修改目录的权限(除非您知道自己在做什么,否则这是个坏主意),或者通过sudo运行具有超级用户凭据的命令
$ sudo phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2发布于 2014-04-10 08:22:09
尝试使用sudo运行相同的命令
sudo phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2https://stackoverflow.com/questions/22982361
复制相似问题