Can't delete some files off of my HP home server

0

0

I have an HP Media Vault mv2120 (Linux based, not WHS based) and sometimes when I go to delete files that I added to the server, I get a message telling me that I need permission from Unix User Nobody to delete them. Why is this happening and how can I prevent it? So far when it happens, I have to ssh into the server (which was not enabled by default and I had to do some digging on Google to find out how to enable it) and delete them from there.

jasonh

Posted 2009-08-07T05:47:14.413

Reputation: 2 967

What distribution are you using? And is this a file already on it, or something you have just copied and loosing permission? - I got this a few times with my nas when I transfer files with large file names. To solve this, I either rename or delete using a web interface or ssh. – William Hilsum – 2009-08-07T06:57:59.157

When I login I get the message: BusyBox v1.01 (2008.02.08-22:41+0000) – jasonh – 2009-08-07T17:26:09.667

Answers

2

It sounds like you'll need to take ownership of the files with chown and possibly set permissions on the file(s) to 777 with chmod

Since your server is linux based, you should be able to get the correct syntax with the man command.

EvilChookie

Posted 2009-08-07T05:47:14.413

Reputation: 4 519

Oh I was afraid of that. That's what I was doing, but I was hoping for a way to prevent this from happening. – jasonh – 2009-08-07T17:27:10.943

Try setting the parent folder's ownership and permissions - that way, subsequent files that you place in that folder will inherit the parent's permissions. – EvilChookie – 2009-08-07T19:16:55.643

I'll have to give that another shot. – jasonh – 2009-08-08T19:04:29.217