Hello, I tried rm and change permission chmod but its not working. Keeps giving me no such file or directory exist while i can clearly see the directory using filezilla and even browse it. any idea? thankss
Chances are you're probably logged in as a non-root user, or you're attempting to remove files that are not owned by you, in a directory that is. Let us know more about your FileZilla configuration.
Just come across with the following URL. Hopefully helpful J http://unix.stackexchange.com/questions/118441/removing-file-which-doesnt-have-any-permissions-and-attributes
Great!! Thanks all this worked: find . -printf "%i %f\n" Code (markup): once the ID shows ex: 53608458 do: find . -inum 53608458 -delete Code (markup): Regards!!