isibed-1# pwd
/ifs/data
isibed-1# ls -led .
drwxr-xr-x 9 root wheel 203 Dec 24 15:21 .
OWNER: user:root
GROUP: group:wheel
SYNTHETIC ACL
0: user:root allow dir_gen_read,dir_gen_write,dir_gen_execute,std_write_dac,delete_child
1: group:wheel allow dir_gen_read,dir_gen_execute
2: everyone allow dir_gen_read,dir_gen_execute
isibed-1# ls -led bin
drwxrwxrwx 2 root wheel 21 Dec 24 15:20 bin
OWNER: user:root
GROUP: group:wheel
SYNTHETIC ACL
0: user:root allow dir_gen_read,dir_gen_write,dir_gen_execute,std_write_dac,delete_child
1: group:wheel allow dir_gen_read,dir_gen_write,dir_gen_execute,delete_child
2: everyone allow dir_gen_read,dir_gen_write,dir_gen_execute,delete_child
isibed-1# ls -led bin/rcp
-rwxrwxrwx 1 root wheel 44256 Jun 10 2014 bin/rcp
OWNER: user:root
GROUP: group:wheel
SYNTHETIC ACL
0: user:root allow file_gen_read,file_gen_write,file_gen_execute,std_write_dac
1: group:wheel allow file_gen_read,file_gen_write,file_gen_execute
2: everyone allow file_gen_read,file_gen_write,file_gen_execute
isibed-1# rm bin/rcp
remove bin/rcp? y
rm: bin/rcp: Operation not permitted
isibed-1#
--
You received this message because you are subscribed to the Google Groups "Isilon Technical User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isilon-user-gr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Do you have a quota on that dir?
To unsubscribe from this group and stop receiving emails from it, send an email to isilon-user-group+unsubscribe@googlegroups.com.
Usually wouldn't step in here...but this scenario is interesting.Being pedantic, I would ask if you are really logged in as root, or more correctly operating with a root credential. Assuming you are...I would ask if your cluster is in SmartLock Compliance mode with autocommit enabled? If so, you're not going to be able to delete files, even as root. But I'm betting your cluster is not in that mode, so...
The most common scenarios for this is that you are not executing the 'rm' you think you are. Have you tried /bin/rm, stating the absolute path?It's really easy to have $PATHs incorrect ( I have done that, and I bet everyone else here as well at least once in the past). /usr/bin/which is your friend here.Worse yet, perhaps your tarball has a bin/rm itself, and by unrolling that ball your $PATH is now trying to execute bin/rm instead of the 'real' /bin/rm, which I am guessing is what you intended.The worst scenario is that your tarball mangled the real /bin, since you are logged in as root...
isibed-1# which rm
rm: aliased to rm -i
isibed-1# unalias rm
isibed-1# which rm
/bin/rm
isibed-1# ls -ld /bin/rm
-r-xr-xr-x 2 root wheel 14019 Mar 28 2012 /bin/rm
isibed-1# id
uid=0(root) gid=0(wheel) groups=0(wheel),5(operator),20(orphan),70(src),10(staff)
isibed-1#
isibed-1# find /ifs/data -name rm
isibed-1#
I saw something similar after making a tar copy of part of /usr/bin, and was also pretty befuddled... when root can't do something, I start thinking rootkits.
Turns out it was the FreeBSD immutability bit. Google that and the chflags binary. Turn off the bit recursively on the affected directories and you should be able to clear everything out. Whew!
I saw something similar after making a tar copy of part of /usr/bin, and was also pretty befuddled... when root can't do something, I start thinking rootkits.
Turns out it was the FreeBSD immutability bit. Google that and the chflags binary. Turn off the bit recursively on the affected directories and you should be able to clear everything out. Whew!
On Dec 26, 2014 2:32 PM, "Erik Weiman" <erik.j...@gmail.com> wrote:I'd try using tree delete job engine operation or try from another node. It's possible that since it was an install tar that maybe it modified that local node...
To unsubscribe from this group and stop receiving emails from it, send an email to isilon-user-gr...@googlegroups.com.
Then I would mark this as very weird. It's been a few days, did you find a solution to this?