init: sys_prop: permission denied uid:1003 name:service.bootanim.exit

简介: /************************************************************************* * init: sys_prop: permission denied uid:1003 name:service.bootanim.exit * 说明: * 在调试中断串口中每次看到这行输出,有时候觉得挺别扭的,所以查了一下 * 资料,解决了去。
/*************************************************************************
 * init: sys_prop: permission denied uid:1003 name:service.bootanim.exit
 * 说明:
 *     在调试中断串口中每次看到这行输出,有时候觉得挺别扭的,所以查了一下
 * 资料,解决了去。
 *
 *                                   2016-5-13 深圳 南山平山村 曾剑锋
 ************************************************************************/

一、参考文章:
    解决init: sys_prop: permission denied uid:1003 name:service.bootanim.exit问题
        http://blog.csdn.net/jsonz/article/details/43765051
    
二、解决办法:
    1. cat init.rc
        ......
        service bootanim /system/bin/bootanimation  
        class main  
        user graphics  
        group graphics  
        disabled  
        oneshot  
        ......
    2. 修改为:
        cat init.rc
            ......
            service bootanim /system/bin/bootanimation  
            class main  
            user system             # modify this line
            group graphics  
            disabled  
            oneshot  
            ......

 

目录
相关文章
|
2月前
|
网络协议 Linux
搭建FTP报错:Job for vsftpd.service failed because the control process exited with error code. See
搭建FTP报错:Job for vsftpd.service failed because the control process exited with error code. See
162 3
|
4月前
|
安全 网络安全 数据安全/隐私保护
auth required pam_tally2.so file=/var/log/tallylog onerr=fail deny=3 unlock_time=300 even_deny_root root_unlock_time=300 什么作用?
【8月更文挑战第2天】auth required pam_tally2.so file=/var/log/tallylog onerr=fail deny=3 unlock_time=300 even_deny_root root_unlock_time=300 什么作用?
71 1
|
4月前
|
安全 网络安全 数据安全/隐私保护
auth required pam_tally2.so file=/var/log/tallylog onerr=fail deny=3 unlock_time=300 even_deny_root root_unlock_time=300 什么作用
【8月更文挑战第14天】auth required pam_tally2.so file=/var/log/tallylog onerr=fail deny=3 unlock_time=300 even_deny_root root_unlock_time=300 什么作用
122 0
|
网络安全 Docker 容器
failed to create network error response from daemon filed to setup ip tables问题
failed to create network error response from daemon filed to setup ip tables问题
210 0
|
7月前
Example: Auditing the SYS User
Example: Auditing the SYS User
26 0
|
开发工具 git
error: could not lock config file .git/config: Permission denied/Command failed with exit 255
error: could not lock config file .git/config: Permission denied/Command failed with exit 255
421 0
|
关系型数据库 MySQL SQL
[解决] Error Code: 1044. Access denied for user 'root'@'%' to database
今天在测试集群用的mysql上,遇到个权限的问题: SQLException : SQL state: 42000 com.mysql.jdbc.exceptions.
5450 0
|
关系型数据库 MySQL 数据安全/隐私保护
ERROR 1142 (42000): GRANT command denied to user ** 或 ERROR 1045 (28000): Access denied for user '**'@'localhost' (using password: YES)
ERROR 1142 (42000): GRANT command denied to user ** 或 ERROR 1045 (28000): Access denied for user '**'@'localhost' (using password: YES)
832 0
|
XML 分布式计算 Hadoop
hiveserver2连接报错: User: root is not allowed to impersonate anonymous (state=08S01,code=0)
hiveserver2连接报错: User: root is not allowed to impersonate anonymous (state=08S01,code=0)
783 0
|
Dubbo 应用服务中间件 容器
关于Failed to check the status of the service com.taotao.service.ItemService. No provider available fo
原文:http://www.bubuko.com/infodetail-2250226.html 项目中用dubbo发生:     Failed to check the status of the service com.taotao.service.ItemService. No provider available for the service 原因: Dubbo缺省会在启动时检查依赖的服务是否可用,不可用时会抛出异常,阻止Spring初始化完成,以便上线时,能及早发现问题,默认check=true。
2770 0