Files listed by bash but unaccessible
Posted
by
Cerin
on Super User
See other posts from Super User
or by Cerin
Published on 2014-08-18T22:20:16Z
Indexed on
2014/08/18
22:24 UTC
Read the original article
Hit count: 415
What would cause the following behavior on an Ubuntu 12.04 system?
- I've SSHed into a machine as the "ubuntu" user.
- Running
ls -lah /data/*
shows dozens of non-empty files (e.g. file1.txt, file2.txt, etc), all owned by the "ubuntu" user/group, and with full read/write access. - If I try to
cat /data/file1.txt
, bash gives me the error "cat: /data/file1.txt: No such file or directory"
In short, ls
is listing files, but in every other way, the files essentially don't exist. I can't cat them or read them in any way. Even giving all the files 777 permission doesn't change anything. This is really bizarre. What's going on here?
© Super User or respective owner