>Подскажите, пожалуйста, какие настройки необходимо прописать в smb.conf для ведения протоколирования работы
>пользователей Samba - когда и какие файлы пользователь открывал, создавал, удалял
>и прочая.
>Очень хотелось бы и ссылочки на первоисточники, где об этом почитать, если
>можно...
не в smb.conf, а откуда у тебя читаются опции запуска smbd|nmbd (default - в /etc/sysconfig/samba):
SMBDOPTIONS="-D -d <level>"
NMBDOPTIONS="-D -d <level>"
, где level=[0...], чем больше - тем выше, уже на 2-м - пишет, кто чего открыл-закрыл.
А вообче-то по-простому:
man smbd ;-)
-----<cut>------
-d <debug level>
debuglevel is an integer from 0 to 10. The default value if this parameter
is not specified is zero.
The higher this value, the more detail will be logged to the log files about
the activities of the server. At level 0, only critical errors and serious
warnings will be logged. Level 1 is a reasonable level for day to day run-
ning - it generates a small amount of information about operations carried
out.
Levels above 1 will generate considerable amounts of log data, and should
only be used when investigating a problem. Levels above 3 are designed for
use only by developers and generate HUGE amounts of log data, most of which
is extremely cryptic.
Note that specifying this parameter here will override the log level file.
-----<cut>------