|
How can my user delete a root owned file?
I created the esm directory with my user `xcanm`.
$ ls -ld esm/
drwxr-xr-x 6 xcanm users 4096 Ago 17 00:35 esm/
$ cd esm/
Inside I have the a.dd file owned by root.root
$ ll
total 489504
-rw-r--r-- 1 root root 501211136 Ago 17 00:25 a.dd
-rw-r--r-- 1 root root 32768 Dez 31 1979 $RFS_LOG.LO$
drwxr-xr-x 3 root root 4096 Ago 17 00:31 VIDEO
Using my user, I'm able to delete the file, although with this question.
$ rm a.dd
(translated) rm: remove regular file «a.dd» write protected?y
$ ll
total 36
-rw-r--r-- 1 root root 32768 Dez 31 1979 $RFS_LOG.LO$
drwxr-xr-x 3 root root 4096 Ago 17 00:31 VIDEO
Maybe it's too late for me at night... Is it me or this should not happen?
|