Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 31

Thread: Resetting clock local time.

  1. #21
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    With Debian I use the crontab:
    Code:
     40      10,15,20        * * *   /usr/sbin/ntpdate -v de.pool.ntp.org; /sbin/hwclock -u --systohc
    I've read Sysadmin time again and now found this hint:
    At least from Debian version 2.2 onwards, the system automatically saves the system time to hardware clock on shutdown, and sets the system clock from hardware clock when Debian boots up. This is done in the script /etc/init.d/hwclock.sh.
    Therefore I changed my crontab-entry within Debian to
    Code:
     40      10,15,20        * * *   /usr/sbin/ntpdate -v de.pool.ntp.org

  2. #22
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    Quote Originally Posted by Werner P. Schulz View Post
    Please tell us the output from
    Code:
    cat /proc/driver/rtc; date
    This one is from the Knoppix system: cat /proc/driver/rtc; date rtc_time : 08:14:09
    rtc_date : 2013-01-29
    alrm_time : 00:00:00
    alrm_date : 2013-01-30
    alarm_IRQ : no
    alrm_pending : no
    update IRQ enabled : no
    periodic IRQ enabled : no
    periodic IRQ frequency : 1024
    max user IRQ frequency : 64
    24hr : yes
    periodic_IRQ : no
    update_IRQ : no
    HPET_emulated : yes
    BCD : yes
    DST_enable : no
    periodic_freq : 1024
    batt_status : okay
    Mon Jan 28 21:44:09 EST 2013

  3. #23
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    For my Debian system:
    rtc_time : 08:43:18
    rtc_date : 2013-01-29
    alrm_time : 00:00:00
    alrm_date : ****-**-**
    alarm_IRQ : no
    alrm_pending : no
    24hr : yes
    periodic_IRQ : no
    update_IRQ : no
    HPET_emulated : yes
    DST_enable : no
    periodic_freq : 1024
    batt_status : okay
    Tue Jan 29 08:43:18 IST 2013

  4. #24
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    This one is from the Knoppix system: cat /proc/driver/rtc; date rtc_time : 08:14:09
    This value is wrong; did you write it manually? Now, what's the output from
    Code:
    cat /etc/timezone
    within your Debian and Knoppix?

  5. #25
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    Quote Originally Posted by Werner P. Schulz View Post
    This value is wrong; did you write it manually?
    No, I pasted without putting a line break between the code and output (i.e., Enter Key)

    Quote Originally Posted by Werner P. Schulz View Post
    This value is wrong; did you write it manually? Now, what's the output from
    Code:
    cat /etc/timezone
    within your Debian and Knoppix?
    This part is already settled (please remember to visit my earlier posts). My debian setting is Asia/Kolkata.
    My knoppix setting resets itself to the settings for usa after every boot:
    Quote Originally Posted by rajibando View Post
    What I did was ... every time I boot the time is reset to that of the USA, ...
    and
    Quote Originally Posted by rajibando View Post
    ... I installed ntp, ntpdate, etc., and then used this application to set date time. But whatever I set is undone the next time I boot...the localisation I set remains as of India between powerdown and powerup.

  6. #26
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    To be precise, the Knoppix time is:
    knoppix@Microknoppix:~$ cat /etc/timezone
    Output:
    America/New_York
    Last edited by rajibando; 01-29-2013 at 10:48 AM. Reason: finishing

  7. #27
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    The problem lies with the package: time-admin It can't store date-time settings, at least in my copy of Knoppix.

  8. #28
    Moderator Moderator
    Join Date
    Nov 2010
    Location
    Germany/ Dietzenbach
    Posts
    1,124
    Oh, no! "time-admin" can store your settings and you can see it immediatly with "cat /etc/timezone". But Knoppix is a Live System and therefore it uses another way => '/etc/init.d/knoppix-autoconfig' => '# Set timezone'

    Knoppix uses only the value of "tz=..." of the Kernel line and other settings within "/etc/timezone" will be overwritten.
    Last edited by Werner P. Schulz; 01-29-2013 at 01:07 PM.

  9. #29
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    Quote Originally Posted by rajibando View Post
    The problem lies with the package: time-admin It can't store date-time settings, at least in my copy of Knoppix.
    What I meant was in between shutdown and booting.
    You say,
    Quote Originally Posted by Werner P. Schulz View Post
    Knoppix uses only the value of "tz=..." of the Kernel line and other settings within "/etc/timezone" will be overwritten.
    I have tested with tz in the kernel line, but knoppix does not use that in the subsequent boots. Remember my posting,
    Quote Originally Posted by rajibando View Post
    ... I have tried TZ cheatcode but that does not work either. I had also run tzselect (=asia/kolkata) here in knoppix, but that too does not work.
    What it does is it treats my BIOS time as UTC and then calculates New York time. You say,
    Quote Originally Posted by Werner P. Schulz View Post
    Oh, no! "time-admin" can store your settings and you can see it immediatly with "cat /etc/timezone" But Knoppix is a Live System and therefore it uses another way => '/etc/init.d/knoppix-autoconfig' => '# Set timezone'
    Where is this line? My kernel line is:
    linux (hd1,1)/boot/isolinux/linux root=/dev/ram rw ramdisk_size=100000 lang=us apm=power-off nomce tz=/Asia/Kolkata
    Last edited by rajibando; 01-29-2013 at 02:31 PM. Reason: some addition

  10. #30
    Senior Member registered user
    Join Date
    Dec 2008
    Location
    Mysore, India
    Posts
    272

    Resetting clock local time

    Yes, done! The error was in using the capital TZ, following earlier post. whereas it would be tz in kernel line, and then using the ntp daemon to fix the time and date. Thanks for staying on the issue with me.

Page 3 of 4 FirstFirst 1234 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


AMD EPYC 7282 CPU Processor 16 Cores 32 Threads 2.8GHZ up to 3.2GHZ 120W no lock picture

AMD EPYC 7282 CPU Processor 16 Cores 32 Threads 2.8GHZ up to 3.2GHZ 120W no lock

$76.00



AMD Ryzen 9 5950X 16-core 32-thread Desktop Processor picture

AMD Ryzen 9 5950X 16-core 32-thread Desktop Processor

$319.99



Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc... picture

Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc...

$419.99



Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc... picture

Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc...

$619.99



Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1 picture

Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1

$39.99



Intel Core i7-14700K Unlocked Desktop Processor picture

Intel Core i7-14700K Unlocked Desktop Processor

$409.99



Intel Quad Core i3-12100 3.3GHz 12MB LGA1700 12th Gen. CPU Processor SRL62 picture

Intel Quad Core i3-12100 3.3GHz 12MB LGA1700 12th Gen. CPU Processor SRL62

$46.08



AMD Ryzen 5 4500 6-Core 3.6GHz Socket AM4 65W CPU Desktop Processor picture

AMD Ryzen 5 4500 6-Core 3.6GHz Socket AM4 65W CPU Desktop Processor

$79.00



Intel 16 Core i7-13700T DESKTOP processor TURBO Boost 4.90Ghz CM8071504820903 picture

Intel 16 Core i7-13700T DESKTOP processor TURBO Boost 4.90Ghz CM8071504820903

$269.00



Intel Core i7-13700K 3.40GHz 16-Core CPU LGA1700 BX8071513700K picture

Intel Core i7-13700K 3.40GHz 16-Core CPU LGA1700 BX8071513700K

$339.99