Access time of files and directories

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Access time of files and directories
# 1  
Old 02-19-2013
Access time of files and directories

My query please:

What I saw how access times of a file and directories work.

1) For a file the access time is the time when I 1st access it after last modification of the file, i.e., if the file is modified at 10 AM and then I access it at 11 AM. After than whenever I access without modifying the file the access time remains same as 11 AM.
while copying a file also the access time doesn't change!! Am I right? What's then the significance?

2) For a directory I had the same experience.

If I don't get the latest time when I accessed, then what's the significance of this type of behavior.

Thanks!
# 2  
Old 02-20-2013
What filesystem mount options are you using? "noatime" is a commonly used one to improve filesystem performance. It improves performance by not recording the access time.
# 3  
Old 02-20-2013
Quote:
Originally Posted by lupin..the..3rd
"noatime" is a commonly used one to improve filesystem performance. It improves performance by not recording the access time.
To be more precise, it does not update the access time when a file is read. atime is still updated when a file is written to.

Without noatime, even a read handled by the page cache would require a disk write.

Regards,
Alister
# 4  
Old 02-21-2013
How to know file system mount options?
Thanks Lupin and Alistar
# 5  
Old 02-21-2013
Quote:
Originally Posted by ravisingh
How to know file system mount options?
Thanks Lupin and Alistar
You can look in /etc/fstab to see how the options. You can also type 'mount' to see what is currently mounted and what the options are.

Please assign "Thanks" if you found this helpful. Smilie
# 6  
Old 03-13-2013
I am attaching the output of the commands you have told.
notime command hasn't worked.
Also, how to understand from the output that the feature of updating access time on accessing a file is disabled.
Access time of files and directories-accesstmepng
# 7  
Old 03-14-2013
It was 'noatime', not 'notime'. And it's something that belongs in /etc/fstab, it's not something you type in the shell.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

2. Shell Programming and Scripting

listing directories and sub directories with time and name options

Hello all! I'm looking to list directories and sub-directories of a path, on this forum I found this command: find $path -type d -exec ls -ld {} \; The issue I have is that with a simple ls, the list is listed by name, and using -t I get it by time. How could I list directories and sub... (5 Replies)
Discussion started by: nomadvisuals
5 Replies

3. AIX

Want to find the last access time for large group of files at one go

Dear All, I'm working as a DBA and dont have much knowledge at OS level commands.we have requirement that we need find the files which has been last accessed >= apr 2010and also access date <= apr 2010 for a large set of files.Do know some commands likeistat, ls -u.But can anyone provide me the... (4 Replies)
Discussion started by: dbanrb
4 Replies

4. Shell Programming and Scripting

How to access files from different directories and to perform search action in those files?

Hi, I want to access files from different directories (for example: /home/dir1/file1 , /home/dir2/file2 ...) Like this i have to access these files(file1, file2...). (3 Replies)
Discussion started by: bangarukannan
3 Replies

5. UNIX for Dummies Questions & Answers

File access time does not change on some files

Hey All, I want to get the access time of files in a directory. I used ls -lu on a directory and picked a file that had the access time of Mar 1 and used cat to get the contents of the file. Then I used the ls -lu again and the access time changed on that file. Perfect !! Now if I cat a... (10 Replies)
Discussion started by: vipulgupta0
10 Replies

6. Shell Programming and Scripting

Time Difference between two files in two different directories

Hi, Can anyone please help me. How to write shell script for taking time difference between two files which are in two different folders. Example: Folder1 is having sample_1_*.txt with the time 13:10 hours Folder2 is having sample_1_*.txt with the time 13:17 hours Now i need the time... (6 Replies)
Discussion started by: SanjayPasum
6 Replies

7. Red Hat

restrict access of a user to two directories only

Hi all, I am using RHEL 5.0 I need a user say test to have full access to two directories, say /tmp1 & /tmp2 only other than his home directory. I do not want to change his login shell which is ksh or bash by default. Moreover, he should not even have read access of other directories. ... (10 Replies)
Discussion started by: vikas027
10 Replies

8. Solaris

help in changing the access level for directories

Hi all, can some one help me in chmod command, and let me know the various combinations for this command. for : eg chmod -R 777 <dir names> this gives all rights to all but i want the specific access levels kindly help me out in this issue. Thank you, lakshmanan (2 Replies)
Discussion started by: lakshmananl
2 Replies

9. HP-UX

HPUX list files with access time more than 5 min

Hi, does anyone know how to find files who have the last access time bigger than 5 min ago, in linux i use: find ./ -amin +5 -type f -maxdepth 1 -name "*.*" but in hp-ux the find command doesn't have the -amin option.... (2 Replies)
Discussion started by: mvrk
2 Replies
Login or Register to Ask a Question