12月 172019
查看SeLinux是否启用,输入命令:
getenforce
如果返回:Enforcing – 正在启用,Permissive – 未启用但会提示
临时设置为不启用(需要root权限):
setenforce 0
查看进程的SeLinux相关权限:
ps -AZ
查看文件的SeLinux相关权限:
ls -lZ
在源码中关闭SeLinux:
找到相应的BoardConfig.mk,打开文件,找到BOARD_KERNEL_CMDLINE项,在这一行的结尾增加
androidboot.selinux=permissive(前面加一个空格)
Sorry, the comment form is closed at this time.