Linux – Can’t delete files from server

ftplinux

When I try to delete files from my ftp using filezilla I get the following error:

550 image.jpg: Permission denied

The file permissions on this image are 644, tried to change it with something higher but no success…

550 CHMOD 777 image.jpg: Operation not permitted

Tried to delete from plesk panel but the same.

Any ideas? I have a vps hosting with linux/centos.

Best Answer

You don't have permissions to the file. You aren't the owner of the file. Therefore, you cannot remove or change permissions on the file. Try this in a shell:

sudo rm -f image.jpg

Related Topic