vote up 1 vote down star

This is a two part question.

1) Someone on our network keeps "accidentally" deleting files off the samba server. I look into my /var/log/samba and i see a ton of files for each ip connecting. Is there a way to have samba make an overall log file so that i could easily search for the time, date, and username for file deletions / creations?

2) what is a good program to view logs in. Currently I ssh into my box and use vim, this works but im sure there is a much better way. It would be great if it was some windows app, but i wouldn't mind walking to the server room the the server itself to view logs if need be.

flag

Can you rephrase the question to be more programming related? As is this is more of an IT question, and SO has a low tolerance for IT questions. – Joel Coehoorn Mar 30 at 20:45

closed as not programming related by Patrick McElhaney, Joel Coehoorn, sth, ephemient, Josh Mar 31 at 20:08

4 Answers

vote up 1 vote down

Yes, Samba can produce log files for you and offers quite a few options for doing so. There is a chapter on this in O'Reilly's book on Samba and you can read it here.

link|flag
vote up 0 vote down

I'm sure there is a better way to do this. But, it sounds like a task for grep.

find /var/log/samba -maxdepth 1 -type f -not -name "*.gz" | xargs grep <username>

What does a delete line in the logfile look like?

link|flag
vote up 1 vote down

Not a complete answer, but you can use some simple shell tricks to help narrow down what you're looking for.

i.e. (from the command line)

grep "string_to_find" /var/log/samba/*log | less

You can pipe it into further greps with the -v option to eliminate stuff you don't care for. You'll get the file name as the first part of the output. Additionally you can pipe it to sort and uniq to remove duplicate entries:

grep "string_to_find" /var/log/samba/*log |sort|uniq|grep -v "words_you_dont_want"|less

Simple yet effective.

link|flag
vote up 1 vote down
  1. Samba offers extensive logging options. For details, in the smb.conf manpage, see the log level and log file options and the "VARIABLE SUBSTITUTIONS" section. To log file deletions in particular, you'll want to add the audit or extd-audit VFS modules, both of which are documented here.
  2. vim, less, and grep can all be used to view log files. If you're lucky, you can find a syntax highlighting file for vim to make viewing the log easier, or you can write your own. For more powerful log viewing software, you might try Splunk or Sawmill (both of which I have very limited experience with, so I can't tell you much about them).
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.