linux time inaccurate 

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.

  1. 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
  2. Have you properly set up your Timezone settings. You should have an /etc/localtime file (on Slackware, this comes from your timezone setup, and is a file from the files in /usr/lib/zoneinfo)
  3. Have you properly set up your TZ environment variable?

Lew Pitcher