Monitor files being copied/accessed


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Monitor files being copied/accessed
# 1  
Old 03-17-2010
Monitor files being copied/accessed

Hello,

Is there a way (without 3rd party software) to know if a file has been accessed and/or copied ?

I'm interested in any solution : doing command line instructions , running background scripts etc...

I apologize if I posted this in the wrong forum.

Thank you!
# 2  
Old 03-17-2010
IF you are linux read up on inotify in C or maybe inotifywait.
If it is a different kernel we need specifics: OS & version
# 3  
Old 03-17-2010
Sorry about that.

Mac OS X 10.5.

Thank you about the information concerning inotify (i was interested in a linux solution too, but I prefer a Mac one, if possible).

Thank you
# 4  
Old 03-17-2010
Apple is not like linux - there is no API. Try
Watcher
# 5  
Old 03-17-2010
I was just reading about FSevents (google pointed me there after you told about inotify).

Thank you for your help. Maybe watcher will allow me to learn how to manipulate FSevents in order to do what i want it to do.
# 6  
Old 03-18-2010
Code:
sudo fs_usage -e -w -f filesys |grep -i write |grep -v grep

--this shows you what is being written to, instead of grep -i write, you could try cache_hit or just leave out the grep stuff and filter later, this is the OSX command you want I believe. It is a spin off of the Solaris dtrace utility which reads real time system calls and what not. You will learn what to filter by looking at the unfiltered output first, if you want to know what a specific process is doing, writing, etc, then grep for it, you should see the process on the left and the files being touched on the right when it's writing to a plist which is what I assume you are trying to figure out.
# 7  
Old 03-18-2010
Yes, that's what I need. the -f network is very useful too!
Thank you!

P.S. I am new on this forum (you probably know this already ). Do I have to do something to close this thread ?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Record top accessed processes/files

Hello, I have about 100 servers that I'm looking to collect information regarding top files and processes accessed within a 168 hr (1 week) period. Each server has a different purpose and so different installed applications. All servers are running either unix or linux. What would be a... (0 Replies)
Discussion started by: umang2382
0 Replies

2. UNIX for Advanced & Expert Users

Track the files accessed by a script.

How can i track all the files accessed by script. The script is supposed to bring up my application and this script is just the main script which inturn calls another scripts and executable. I need to know all the the files this main script calls and the files accessed by all the other scripts... (2 Replies)
Discussion started by: chacko193
2 Replies

3. Red Hat

Files copied to FTP server not shown

I had copied 2 files to an FTP server which I deployed on my RHEL 5.8 server. The ownership I kept for the files are for the user, ftp. But, I do not see the files on the FTP location using either accessing through Windows explorer or the browser. The ftp location is ftp://10.101.17.80/incoming.... (7 Replies)
Discussion started by: RHCE
7 Replies

4. Shell Programming and Scripting

Check files copied from remote server

There is a process which copy files form unix a to unix b I would like to check whether all files copied from a to b or not ,and list which are the missing files. Is there a command to check like that (3 Replies)
Discussion started by: lalitpct
3 Replies

5. Shell Programming and Scripting

no of files copied by scp command

hi, I have a script which copy files by using scp command. when i run that script, i can see the process meter but I want to know how many files have been copied. suppose, by using scp 10 files is being copied and I can see process meter for all 10 files. but i also want to see ... that 10... (0 Replies)
Discussion started by: anshu ranjan
0 Replies

6. UNIX for Dummies Questions & Answers

Number of files accessed this week

I have looked around on the internet and still i am no wiser as to how to show the number of files in a directory that have been accessed this week and also that as a percentage. Any help would be much appreciated. (5 Replies)
Discussion started by: RAFC_99
5 Replies

7. UNIX for Dummies Questions & Answers

Ignoring already copied files

I'm almost brand new to UNIX, so I have no idea if how easy or difficult this would be, or if it's even possible. I've been using FTP to copy a total of about 150gb of files to a remote drive. Since the directory being copied is so large, I've been trying to break it up into smaller chunks based... (0 Replies)
Discussion started by: nvandyke
0 Replies

8. UNIX for Dummies Questions & Answers

Searching files by last accessed time

How can I search for files by last accessed time? I want to see files accessed in the last 24 hours, for example...or even less time, maybe in the last 3 hours? Thank you in advance, Trellot (4 Replies)
Discussion started by: Trellot
4 Replies

9. Shell Programming and Scripting

Find files not accessed on a remote server and delete - Help!

Hi Guys, I am currently working on a script to find all the files that have not been accessed for the past 2 years. This, i guess has been discussed n number of times in this forum. Now, my requirement is to find all the files in the remote windows server. I have it mounted in unix. I was... (1 Reply)
Discussion started by: bond_bhai
1 Replies

10. Programming

monitoring files copied onto hard disk

hi... i need pointers to books/website... 'm trytin to write a daemon that monitors files of particular type(eg. text or pdfs) copied onto the hard disk. the daemon should detect the above n write the file name (along with the absolute path) to a file. please DO NOT give me the code... (2 Replies)
Discussion started by: abhi_abhijith
2 Replies
Login or Register to Ask a Question