I've got a very puzzling problem. When rm -rf'ing .config/chromium, I got this error:
rm: cannot remove 'chromium/Default': Directory not empty Sure enough, when I ls -l chromium/Default, I see:
-?????????? ? ? ? ? ? TransportSecurity So, I tried chmod a+rx chromium/Default, and I see:
chmod: cannot access 'chromium/Default/TransportSecurity': No such file or directory I can't rm the file. If I touch TransportSecurity, I get another file with the same name and same permissions.
The directory's permissions, to confirm, are: drwxr-xr-x
I can't remove the files (three identical ones now). They survive reboots and being root doesn't help.
Anyone seen this or have suggestions for how to investigate?
Per @Deathgrip's suggestion below, running ls -lb chromium/Default reports:
ls: cannot access 'Default/TransportSecurity': No such file or directory ls: cannot access 'Default/TransportSecurity': No such file or directory ls: cannot access 'Default/TransportSecurity': No such file or directory total 0 -?????????? ? ? ? ? ? TransportSecurity -?????????? ? ? ? ? ? TransportSecurity -?????????? ? ? ? ? ? TransportSecurity Running rm -i *TransportSecurity* tells me:
rm: cannot remove 'TransportSecurity': No such file or directory
ls -bl chromium/Defaultand you may see something a bit different. Orls -l chromium/Default | cat -vet. You could try an rm with wildcards and the-ioption to be interactive and ask for confirmation.rm -irf chromium/Default/*TransportSecurity*.