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  
            ......

 

目录
打赏
0
0
0
0
12
分享
相关文章
All data created during this guest session will be deleted when you log out 问题的解决
All data created during this guest session will be deleted when you log out 问题的解决
225 0
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问题
252 0
Job for named.service failed because the control process exited with error code.
Job for named.service failed because the control process exited with error code.
876 0
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
586 0
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
解决方案 --Failed to initialize JPA EntityManagerFactory: Unable to create requested service
Job for named.service failed because the control process exited with error code.怎么解决
本篇内容记录了如何解决Job for named.service failed because the control process exited with error code.的问题。
3838 0
Job for named.service failed because the control process exited with error code.怎么解决
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)
819 0
安装centos7 报错[FAILED] Failed to start Switch Root. see 'systemctl status initrd-switch-root.service' for details
安装centos7 报错[FAILED] Failed to start Switch Root. see 'systemctl status initrd-switch-root.service' for details
24766 0
SP2-0618: Cannot find the Session Identifier. Check PLUSTRACE role is enabled
测试环境:OEL6.5+Oracle 11g R2在进行执行计划测试的时候,遇到一个小问题。在用普通用户执行下面这条命令的时候,普通用户名为hhu,已经赋予了create session和resource权限。
1146 1