Bash . configure permission denied错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash . configure permission denied错误相关的知识,希望对你有一定的参考价值。
当你在Linux(我这里是Ubuntu10.04LTS Desktop)下编译安装某个包的时候,你首先是进入到解压目录然后执行“$ ./configure”的,但是有时候你会发现提示错误,错误提示是这样的:
$ ./configure
bash: ./configure:权限不够?????? [英文状态下提示的是“bash . /configure permission denied”]
如果你改为执行
$ bash ./configure
那么就没有这个问题了,那为什么会出现这个问题呢?那是因为那个configure文件非可执行文件的原因,当你在当前目录下执行
$ chmod +x ./configure
即为当前目录下的configure文件添加可执行性之后你就可以通过直接
$ ./configure
的方式来安装了。也就是说解决这个错误的办法是先执行
$ chmod +x ./configure
亦或者你加个“bash”即:
$ bash ./configure
亦可。
转自 http://blog.sina.com.cn/s/blog_5ff8e88e010110aj.html
以上是关于Bash . configure permission denied错误的主要内容,如果未能解决你的问题,请参考以下文章