我的组(根据 /bin/id)对 Char 设备具有 rw 访问权限,但访问被拒绝

我的组(根据 /bin/id)对 Char 设备具有 rw 访问权限,但访问被拒绝

我在群里graphics

shell@lt03wifi:/ $ id
uid=2000(shell) gid=2000(shell) groups=1003(graphics),1004(input),1007(log),1009(mount),1011(adb),1015(sdcard_rw),1028(sdcard_r),3001(net_bt_admin),3002(net_bt),3003(inet),3006(net_bw_stats) context=u:r:shell:s0

该字符设备/dev/graphics/fb0被标记为我的组可访问 (rw):

shell@lt03wifi:/ $ ls -l /dev/graphics/fb0                         
crw-rw---- root     graphics  29,   0 2013-12-24 23:30 fb0*
shell@lt03wifi:/ $ mount | grep "/dev "
tmpfs /dev tmpfs rw,seclabel,nosuid,relatime,size=1421696k,nr_inodes=114626,mode=755 0 0

但我被拒绝访问(为什么?):

shell@lt03wifi:/ $ cd data/data/com.spartacusrex.spartacuside/files/system/bin
shell@lt03wifi:/data/data/com.spartacusrex.spartacuside/files/system/bin $ ./grep -l . /dev/graphics/fb0
grep: /dev/graphics/fb0: Permission denied

测试可执行grep文件有效,见:

shell@lt03wifi:/data/data/com.spartacusrex.spartacuside/files/system/bin $ ./grep -l . grep
./grep

为什么我被拒绝访问该字符设备?

相关内容