赞
踩
Ubuntu的SELinux
、
libselinux-utils、 policycoreutils以下默认root用户输入命令
fixfiles -F onboot
getenforce
#或
sestatus
sudo setenforce 1
setenforce 0
sudo ausearch -m AVC,USER_AVC,SELINUX_ERR,USER_SELINUX_ERR -ts today
sudo ausearch -m AVC,USER_AVC,SELINUX_ERR,USER_SELINUX_ERR -ts recent
sudo dmesg | grep -i -e type=1300 -e type=1400
root
用户sudo -i
sudo semanage login -l
seinfo -u # setools-console软件包需要安装
sudo semanage boolean -l
# 由于boolean状态很多,可以做些筛选
# 识别与 NFS、CIFS 和 Apache 相关的 SELinux 布尔值
semanage boolean -l | grep 'nfs\|cifs' | grep httpd
# 列出布尔值的当前状态
getsebool -a | grep 'nfs\|cifs' | grep httpd
# 启用指定的布尔值
setsebool -P httpd_use_nfs on # 可使系统重启后设置具有持久性
setsebool httpd_use_cifs on
sudo semanage user -l
1) system_u
是系统进程和对象的特殊用户身份,system_r
是关联的角色。管理员不得将这个 system_u
用户和 system_r
角色关联到 Linux 用户。另外,unconfined_u
和 root
是没有限制的用户
seinfo -r # setools-console软件包需要安装
id -Z
[<example_user>@localhost ~]$ ps axZ
http_port_t
端口类型添加端口号9999semanage port -a -t http_port_t -p tcp 9876
# a 选项添加新的记录; -t 选项定义类型; -p 选项定义协议。最后的参数是要添加的端口号
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。