Newsgroups: comp.os.linux.setup
>Whenever I reboot the system, my linux server's time will always be >about 6 hrs ahead of the CMOS(actual) time which I have preset.
It sounds like you have a timezone problem.
Have you properly set up the system clock load (somewhere in your startup scripts; on Slackware it would be in /etc/rc.d/rc.S)? The lines would look likeā¦
# Configure the system clock. # This can be changed if your system keeps GMT. if [ -x /sbin/clock ]; then /sbin/clock -s fi
Lew Pitcher