博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Permission denied in linux
阅读量:5923 次
发布时间:2019-06-19

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

在linux上安装有些东西时会出现 Permission denied 的情况:以下就是解决它的办法之一
编辑/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
把 SELINUX=enforcing 注释掉:#SELINUX=enforcing ,然后新加一行为:
SELINUX=disabled
保存,关闭。
......
编辑/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 disabled.
SELINUX=enforcing
如果SELINUX已经是 SELINUX=disabled,那么就不用改了,否则就把SELINUX=enforcing 注释掉,新加一行:
SELINUX=disabled
保存,退出。
如果你碰到其他类似提示:
cannot restore segment prot after reloc: Permission denied
哪应该是SELinux的问题,可以考虑把它关闭。
-------------------------------------------------------------------------------------
郁闷的是.我把SELinux关闭后还是不行.于是到google上search.发现这个很有用.
在你保证SElinux 被disable后.还执行下
chcon -t texrel_shlib_t
如: chcon -t texrel_shlib_t /路径/路径/名字.so (这个文件视具体执行文件.)
以上两步.已经解决了很多server的问题了.

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

你可能感兴趣的文章
[转] SqlServe到PG迁移错误:无效的编码序列"UTF8": 0x00
查看>>
Nginx + nagios +perl fcgi 取缔apache
查看>>
Puppet扩展篇1-自定义fact结合ENC(hirea)的应用实践
查看>>
《从零开始学Swift》学习笔记(Day 20)——函数中参数的传递引用
查看>>
脚本监控网络状态,输出日志并归档(V2)
查看>>
轻量级HTTP服务器Nginx(Nginx日常维护)
查看>>
Android系统的开机画面显示过程分析(1)
查看>>
7.VMware vsphere 5.0新体验-备份
查看>>
组建高效快速研发团队的必要角色
查看>>
基于Windows Media Service的流媒体直播系统
查看>>
linux下和windows下如何防止php木马
查看>>
SQL2K数据库开发八之表操作创建主键
查看>>
WCF分布式安全开发实践(6):传输安全模式之自定义X509Certificate证书验证
查看>>
打造自己的LINQ Provider(中):IQueryable和IQueryProvider
查看>>
【代码分享-SQL】(已有数据)表的[ID]字段变更为‘自增长’
查看>>
如何有效的部署规划Exchange Server 2010
查看>>
使用组策略对移动设备管理
查看>>
mysql参数thread_cache和table_cache详解
查看>>
通过视频展示如何通过Samba配置PDC
查看>>
PCI: Not using MMCONFIG解决方法
查看>>