Reputation: 11476
I see "builds01" directory when I do ls,when I "cd builds01" on that directory I get the following error,any idea why I am getting below error for a directory that exists/s
<user:/prj/com/builds>ls -la
total 8
dr-xr-xr-x 3 root root 4096 2013-05-29 00:53 .
dr-xr-xr-x 4 root root 4096 2013-05-29 00:53 ..
drwxr-xr-x 2 root root 0 2013-05-29 00:53 builds01
<user:/prj/qca/builds>cd builds01/
-bash: cd: builds01/: No such file or directory
Upvotes: 0
Views: 6190
Reputation: 21
I had an issue once such as this. It’s possible that this is on mount point and not a real directory. Another possibility is there may be white space before the name of the directory that was somehow created.
Try to do: cd \ builds01
or even cd “builds01”
and see if that works.
If all else fails attempt to use something such as filezilla or winscp and navigate to the path.
Upvotes: 2
Reputation: 101
Check out user permissions: you are not root at the moment. The folder is readable only by root (and belongs to root).
Upvotes: 1