Cannot access: No such file or directory


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Cannot access: No such file or directory
# 1  
Old 07-14-2010
Cannot access: No such file or directory

In a directory I have a file called 250SocatSC. When i use the ls -l command I see its size, permissions, etc. Everything seems alright with it but when I try to copy (cp) it or to rename (mv) it I got the following message: "cannot access: No such file or directory". I suspect that has something to do with its name or the way it was written on the hdd. Other files of the same type (scanned images) are working just fine. I would really want to use this file. It would save me from a lot of work. By the way when I try to make these changes I use the super user account.
# 2  
Old 07-14-2010
Can you do a ls -l on the directory and post the full line of output for the file? Are you logging in as root or doing a sudo when trying to work with the file?
# 3  
Old 07-14-2010
Quite likely the file has a non printing character in its name.
Try
Code:
ls -l >/tmp/list

Then use vi on /tmp/list
# 4  
Old 07-15-2010
I log as root but unfortunately only tomorrow I can show you the exact output of ls -l command.
I'll also try with vi to see if it works and let you know jgt.
Thank you!!!

---------- Post updated 07-15-10 at 09:53 AM ---------- Previous update was 07-14-10 at 12:07 PM ----------

I tried to find out if there were non printing characters in the file name. The output of the command ls -b (ls -q) was:
250SocatSC
forest
mountain
These are the files that I work with (scanned images). For two of them I got the message from the title of this thread even when I try to change their permission with chmod command. The last file is working properly. I can do whatever I like with it.
For mikep9 the output of the command ls -l is:
-rw-r--r-- 18345628 July 14 20:10 250SocatSC
-rw-r--r-- 18345628 July 14 21:00 forest
-rw-r--r-- 18345628 July 14 20:30 mountain

Any other advice?

Last edited by 78air; 07-14-2010 at 05:13 PM..
# 5  
Old 07-16-2010
Please post the output from:

Code:
ls -lisa | sed -n l

This should show any funny characters and also display the inode number with the links count. The "$" at the end of each line is normal (it's the line-feed character).
Please don't forget to include all the output (including where ls shows the parent directory and the dot files).
Also we'll need to know your username and group in the context of the above directory listing.


Let's see if a program is holding the inode after another program has deleted the file?
Code:
fuser *


Last edited by methyl; 07-16-2010 at 08:59 AM..
# 6  
Old 07-17-2010
I'm on holiday for the next couple of weeks so the files MUST wait. Thanks methyl for your answer. I'll try to post the output as soon as possible and let you know. You'll hear from me soon.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Samba 3.6 on AIX 7.1 - Windows 10 Access to AIX file shares using Active Directory authentication

I am running AIX 7.1 and currently we have samba 3.6.25 installed on the server. As it stands some AIX folders are shared that can be accessed by certain Windows users. The problem is that since Windows 10 the guest feature no longer works so users have to manually type in their Windows login/pwd... (14 Replies)
Discussion started by: linuxsnake
14 Replies

2. Ubuntu

No access to etc directory

Hi, I'm new to this... but I am unable to see /etc, however I can access it via gknautilus... but as superuser I'm getting told no such file or directory via terminal (15 Replies)
Discussion started by: GaryW
15 Replies

3. Red Hat

cannot access a directory with samba

path = /opt writeable = yes ; browseable = yes # guest ok = no valid users = oracle path = /opt/TEST8000/oracle/apps/apps_st/appl/ffcl/12.0.0/reports/US writeable = yes ; browseable = yes valid users = oracle path... (1 Reply)
Discussion started by: rehantayyab82
1 Replies

4. AIX

openssh chroot facility and directory access

Good day. I currently have a request to have sftp access to a specific directory for a user(s). They can have access to that folder only, and nothing below it. Now here is the gotcha that seems to be catching me. The folder they need access to is NOT owned by root, and most of the parent... (0 Replies)
Discussion started by: smurphy_it
0 Replies

5. UNIX for Advanced & Expert Users

about the access permission of users home directory

RHEL5.0 As we know, when root create a new user, a new home directory will be created : /home/user I want to know what determine the access permission of /home/user . Thanks! (1 Reply)
Discussion started by: cqlouis
1 Replies

6. UNIX for Advanced & Expert Users

Solaris auditing (file access logging) for specific directory only.

Hello, We need to log the operations that specific user on Solaris 10 (SPARC) is performing on one directory and it's contents. I was able to configure solaris auditing service (auditd) and it works fine. The only problem is that auditd logs huge amount of unneeded information. We need to log... (0 Replies)
Discussion started by: +Yan
0 Replies

7. Solaris

User with limited access to one directory

is there a way to create a user and limit him to read,write and execute only in one direcotry. the directory is already exsist and it belongs to dba group. i would like to make this user can't even cd to another directory or even if he can he cant do anything in the other directories. if... (7 Replies)
Discussion started by: q8devilish
7 Replies

8. Solaris

Restricting FTP access for a particular directory

Dear All, I have created a user called "x" who is allowed only to FTP and it is working fine. Here my problem is, I want to give access to a particular directory say for eg:- /dump/test directory. I don't find any option in the useradd command to restrict access to this particular directory only... (1 Reply)
Discussion started by: Vijayakumarpc
1 Replies

9. UNIX for Dummies Questions & Answers

How to access an directory with spaces

I am getting an error while trying to access a directory created with spaces in between, i couldn't able to login into that directory could you please suggest me what should i do to access that directory or if i want to rename that directory what should i do. Directory Name: MH PLR 2005... (1 Reply)
Discussion started by: Ariean
1 Replies

10. Shell Programming and Scripting

failed to access directory thru ftp

Hi all, I am a beginner to unix and ftp too.So i request your valuable comments. Requirement: I want to put a specific file into a server(linux) and under a particular directory path in that server as /caps/details/data/ Problem : I login to that server through the command `ftp... (1 Reply)
Discussion started by: DILEEP410
1 Replies
Login or Register to Ask a Question