[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] Exported filesystem permissions... Urgent Help Please!
>
> No, there's nothing useful in dmesg, and, it has to be said, nothing
> particularly illuminating in /var/log/messages - msec (Mandrake
> Security) does a lot of work changing permissions, but nothing
> unhelpful.
>
Might just be that there isn't enough verbosity... (or could be that there
really is no log). Just as an experiment, plonk the line:
*.debug /var/log/allmessages
into /etc/syslog.conf, then find the PID of syslogd and do a kill -HUP <pid>
This will probably end up being very verbose, depending on what the machine
is doing at the same time, but if nfsd is trying to log something, this will
catch it.
I suspect the default is that syslog is set to only log informational
messages and higher...unless someone that knows Mandrake knows otherwise.
Chris...
--
\ Chris Johnson \
\ cej [at] nightwolf.org.uk ~-----,
\ http://cej.nightwolf.org.uk/ ~-----------------------------------,
\ Redclaw chat - http://redclaw.org.uk - telnet redclaw.org.uk 2000 \____
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}