本文发表在 rolia.net 枫下论坛1. You found out that your mail system is using splogger, so the log is done through syslog. Take a look at your /etc/syslog.conf file, there should be an entry beginning with mail.*, and the file on the right hand side of that line is the mail log file. Take a look at that file. If there's no mail.* line, you best bet is the All file.
2. About the log files you mentioned: All could be a catch-all log file, that's why it's very long; Debug could be the file for debug information, not necessary for your mail system (from the entries you post, those are from kernel); xferlog is the log file for ftp, thus irrelevant.
3. To find out if your mail server is running, do a 'netstat -ln' and see if there's anything listening on tcp/25 (smtp) and tcp/110 (pop3). lsof is to find out which process is listening on those ports, which is not available to netstat.
4. To mount the floppy, you'll need to know which fs your floppy disk was formatted to. If it's fat, use 'mount -t msdos /dev/fd0 /mnt'. If it's ext2, use 'mount -t ext2 /dev/fd0 /mnt'. Also if you have mtools installed, you don't need to mount the floppy if the disk is fat, just use mdir, mcopy, etc. as if it's in msdos.更多精彩文章及讨论,请光临枫下论坛 rolia.net
2. About the log files you mentioned: All could be a catch-all log file, that's why it's very long; Debug could be the file for debug information, not necessary for your mail system (from the entries you post, those are from kernel); xferlog is the log file for ftp, thus irrelevant.
3. To find out if your mail server is running, do a 'netstat -ln' and see if there's anything listening on tcp/25 (smtp) and tcp/110 (pop3). lsof is to find out which process is listening on those ports, which is not available to netstat.
4. To mount the floppy, you'll need to know which fs your floppy disk was formatted to. If it's fat, use 'mount -t msdos /dev/fd0 /mnt'. If it's ext2, use 'mount -t ext2 /dev/fd0 /mnt'. Also if you have mtools installed, you don't need to mount the floppy if the disk is fat, just use mdir, mcopy, etc. as if it's in msdos.更多精彩文章及讨论,请光临枫下论坛 rolia.net