博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Eclipse在linux下的安装问题
阅读量:4134 次
发布时间:2019-05-25

本文共 767 字,大约阅读时间需要 2 分钟。

inux下安装eclipse出现如下错误

failed to load the jni shared library"/usr/local/java/jdk1.6.0_21/bin/../jre/lib/i386/client /libjvm.so" 双击就出现这个玩意 无法进入界面 不知道咋回事,我的jdk是安装好了的,在终端java -version显示正确
在网上查了一些资料,发现是没有禁用SELinux的原因,处理方法如下:
打开服务器上的SELinux配置文件,默认为:/etc/selinux/config,内容如下:
# 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 disabled.
SELINUX=enforcing
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted
将上面的
SELINUX=enforcing 改为:SELINUX=disable 禁用SeLinux

 

转载地址:http://yeivi.baihongyu.com/

你可能感兴趣的文章
Easy Problem(动态规划)
查看>>
Remove Extra One(思维)
查看>>
Statues(三维bfs)
查看>>
Mike and distribution(思维)
查看>>
Make a Permutation!(思维)
查看>>
Divide by three, multiply by two(dfs)
查看>>
Consecutive Subsequence(最长上升子序列)
查看>>
Equalize the Remainders(set二分+思维)
查看>>
Alyona and Spreadsheet(思维)
查看>>
PolandBall and Forest(并查集)
查看>>
Destroying Array(并查集)
查看>>
Mike and gcd problem(思维)
查看>>
Mahmoud and a Message(动态规划)
查看>>
The Trip On Abandoned Railway(线段树+树状数组)
查看>>
Distinct Characters Queries CodeForces - 1234D(线段树求区间字母种类数)
查看>>
Pipes CodeForces - 1234C(dfs)
查看>>
Social Network (easy version) CodeForces - 1234B1(vector)
查看>>
Social Network (hard version) CodeForces - 1234B2(离散化+双端队列)
查看>>
Squared Permutation(线段树)
查看>>
Complete Tripartite CodeForces - 1228D(三分图染色)
查看>>