`
chenhua_1984
  • 浏览: 1237897 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

linux下启动eclipse 权限不够 错误解决办法

阅读更多

   下载了一个eclipse for cpp的版本,在centos 上运行,报权限不足的错误.

[root@mylinux eclipse]# ./eclipse
/usr/local/jdk1.6.0_17/bin/../jre/lib/i386/client/libjvm.so: cannot restore segment prot after reloc: 权限不够

查看自己的jvm,eclipse都是有可执行权限的,网上找了下,据说是问题是安全级别和防火墙导致的,

 

解决办法:

  注释#SELINUX=enforcing
添加SELINUX=disabled
或从 系统->管理->安全级别和防火墙->SELinux ->禁用

vi /etc/sysconfig/selinux

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disablied.
#SELINUX=enforcing
SELINUX=disabled

# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

其中红色的是要改掉的部分.这样重启linux,eclipse就可以正常了.

 

关于SELINUX的解释,

SELinux(Security-Enhanced Linux)美国国家安全局 (NSA)对于强制访问控制的实 现,是 Linux® 上最杰出的新安全子系统。NSA是在Linux社区的帮助下开发了一种访问控制体系,在这种访问控制体系的限制下,进程只能访问那些在他的任务中所需要文 件。SELinux 默认安装在 Fedora 和 Red Hat Enterprise Linux 上,也可以作为其他发行版上容易安装的包得到。

更详细的解释可以参考百度词条.

 

http://baike.baidu.com/view/487687.htm

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics