Yestoday,i created any necessary raw devices with VXVM on linux and changed the permissions.After reboot,the permission of all raw devices are become to user root.

Following steps is the original way to change permissions:

[root@syb01 ~]# cd /dev/vx/rdsk/datavg [root@syb01 datavg]# chown sybase:sybase * [root@syb01 datavg]# chmod 660 * [root@syb01 datavg]# la total 0 drwxr-xr-x 2 root   root          80 Sep  4 09:20 . drwxr-xr-x 5 root   root         100 Sep  4 09:20 .. crw-rw---- 1 sybase sybase 199, 1000 Sep  4 09:20 dev01 crw-rw---- 1 sybase sybase 199, 1001 Sep  4 09:20 dev02

The new way is use the vxedit command that the permission was never meant to be permanent.

[root@syb01 ~]# vxedit -g datavg set user=sybase group=sybase mode=0660 dev01 [root@syb01 ~]# vxedit -g datavg set user=sybase group=sybase mode=0660 dev02 [root@syb01 ~]# la /dev/vx/rdsk/datavg/ total 0 drwxr-xr-x 2 root   root          80 Sep  4 09:32 . drwxr-xr-x 5 root   root         100 Sep  4 09:32 .. crw-rw---- 1 sybase sybase 199, 1000 Sep  4 09:32 dev01 crw-rw---- 1 sybase sybase 199, 1001 Sep  4 09:32 dev02