我正在使用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.
我不知道该怎么做。如果有人可以帮助我,那将是很棒的!谢谢!
最佳答案
这意味着您正在运行的用户没有权限修改目录/usr/lib/apache2/modules
,而这是安装所必需的。建议您使用chmod
修改目录的权限(除非您知道自己在做什么,否则不建议这样做),或者通过sudo
使用 super 用户凭据运行命令:
$ sudo phpbrew install 5.3.10 +default +apxs2=/usr/bin/apxs2
关于php - phpbrew安装特定的php版本(ubuntu 13.04),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22982361/