I want to delete a backup of a website (FTP-mirrored with wget), but a single file, named js_composer.less resists. I can create new files and delete them in the same directory, so the problem might be with the file itself.
It can't be force-deleted:
$sudo rm -f js_composer.less
rm: cannot remove 'js_composer.less': Operation not permitted
I can't change its permissions:
$sudo chmod 644 js_composer.less
chmod: changing permissions of 'js_composer.less': Operation not permitted
I can't change its owner:
$sudo chown myuser:mygroup js_composer.less
chown: changing ownership of 'js_composer.less': Operation not permitted
I can't list the file's attributes:
$sudo lsattr js_composer.less
lsattr: Operation not supported While reading flags on js_composer.less
From ls I can see that it's a named pipe (FIFO) with sticky bit (restricted deletion flag) applied:
p-ws-wS--t 41284 30917 5212 3944510081 márc 14 1902 js_composer.less
Now I don't see any way to get rid of this file. What else could I try?