layout: ; --tw-contain-paint: ; --tw-contain-style: ; margin: 0px 0px 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif; white-space: pre-wrap; background-color: rgb(255, 255, 255);">
本文介绍在开源鸿蒙OpenHarmony系统下,开启/关闭SELinux权限的方法,触觉智能Purple Pi OH鸿蒙开发板演示,搭载了瑞芯微RK3566芯片,类树莓派设计,Laval官方社区主荐,已适配全新OpenHarmony5.0 Release系统! SELinux一共有3种状态,分别是Enforcing,Permissive和Disabled状态。
Enforcing:强制模式,违反SELinux规则的行为将被阻止并记录到日志中。
Permissive:宽容模式,违反SELinux规则的行为只会记录到日志中,一般为调试用。
C:\Users\industio>hdc shell
//查看SELinux权限状态
# getenforce
//此状态下SELinux权限为开启状态
Enforcing
临时修改SElinux权限
临时关闭SELinux权限命令如下:
//临时关闭SElinux权限
# setenforce 0
# getenforce
Permissive
注意:这样SELinux权限就会被临时关闭,但是系统重启此方法就会失效,以下展示永久修改SELinux权限的方法。
在OpenHarmony系统中SELinux的config配置文件的路径
system/etc/selinux/config,如下图所示:
C:\Users\industio>hdc shell mount -o remount,rw /
C:\Users\industio>hdc file recv system/etc/selinux/config "本地路径"
在本地对config文件中对SELinux权限状态进行修改后,将文件推送回系统
C:\Users\industio>hdc file send "本地路径" system/etc/selinux/
FileTransfer finish, Size:624 File count = 1, time:30ms rate:20.80KB/s
注意:这样SELinux权限就会被永久的修改,重启后SELinux权限也不会因重启而改变权限状态,但是重新烧录固件此次方法依旧失效。
/base/security/selinux_adapter/selinux.gni ,如下图所示:
declare_args() {
//权限根据自己所需进行修改,当前为开启状态.关闭将true改为false即可
selinux_enforce = true
}