• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

filemon type program for Linux

Red Squirrel

No Lifer
Anyone know of a program that works like filemon and monitors file changes in Linux? I'm trying to figure out what files I need to copy so my samba DC works on another machine. I simply can't get it to work even after copying the .tdb files and other configs. There's something else deep within the system that keeps track of stuff like user accounts and I just don't know what it is.
 
Holy overkill. You can use things like 'lsof' or whatever to see what files a process has open.
But usually reading the manuals and sysadmin guides / tips for something is more effective than trying to reverse engineer / debug the program at a low level and hoping you'll figure it out.

SELINUX is one main area you must understand if you're having weird problems with things just not working with file sharing / networking. The firewall is another. You may just need to set up some correct SELINUX security contexts on your files so that SAMBA can access them. chcon, et. al.

iptables-save

also run the selinux troubleshooter utility and see if it is listing any AVC denials / SELINUX alerts, sealert, /var/log/messages, dmesg, et. al.

You could try turning off selinux to see if that helps the situation but usually the right answer is to employ it but learn to take advantage of its protective policies...unfortunately documentation on how / when to do that is a bit hard to come by still in many cases.

 
Back
Top