Several posts here at KFN report a problem with the clock. Usually, it's off by an hour. In most cases, reconfiguring the tzdata package fixes the problem, as described in http://www.kubuntuforums.net/showthr...171#post324366. The bug appears to be upstream, and is reported in https://bugs.kde.org/show_bug.cgi?id=318709, but has so far received no activity.
To fix the problem, Kubuntu developers have requested some information from folks having the problem. This information needs to be gathered before reconfiguring tzdata. If you notice the problem on your machine, please run the following command string in a console window:
Enter it as one single line. The final command, cat `readlink /etc/localtime`, should cause the shell to simply wait. Press Ctrl+C to terminate it. Once you've run the command, copy-paste all of the output into a reply here.
As an example, here's what happens on my laptop, which is not affected by the timezone problem:
To fix the problem, Kubuntu developers have requested some information from folks having the problem. This information needs to be gathered before reconfiguring tzdata. If you notice the problem on your machine, please run the following command string in a console window:
Code:
ls -l /etc/timezone; cat /etc/timezone; echo""; echo ""; ls -l /etc/adjtime; cat /etc/adjtime; echo ""; ls -l /etc/localtime; cat `readlink /etc/localtime`
As an example, here's what happens on my laptop, which is not affected by the timezone problem:
Code:
steve@t520:~$ ls -l /etc/timezone; cat /etc/timezone; echo""; echo ""; ls -l /etc/adjtime; cat /etc/adjtime; echo ""; ls -l /etc/localtime; cat `readlink /etc/localtime` -rw-r--r-- 1 root root 20 Apr 26 15:52 /etc/timezone America/Los_Angeles -rw-r--r-- 1 root root 44 Mar 15 04:44 /etc/adjtime 0.000000 1363347848 0.000000 1363347848 UTC -rw-r--r-- 1 root root 2819 Apr 26 15:52 /etc/localtime ^C steve@t520:~$
Comment