Καλησπέρα. Στα windows 10 έχω ενα παράξενο πρόβλημα σε 2 διαφορετικά pc.Το ρολόι σχεδόν κάθε φορά που ανοίγω το pc το βρίσκω 2 η 3 ώρες πισω.Εχω κανει τα πάντα από ρυθμίσεις, έχω επιλέξει αυτόματη και όχι αυτόματη ρύθμιση ώρας, έχω επιλέξει αυτόματα και όχι αυτόματος ορισμός ζώνης ώρας και αυτόματη προσαρμογή θερινής ωρας. Επισεις έχω δοκιμάσει και τους 2 Server για αυτόματο συγχρονισμό μέσω internet. Ότι και να έχω κάνει η ώρα χαλάει, η μπαταρία δεν είναι γιατί είναι αλλαγμένη. Αλλά αν ήταν θα είχα πρόβλημα και στα windows7 γιατί εκεί η ώρα δεν χαλαει. Τι μπορεί να φταίει και μου έχει σπάσει τα νεύρα? Έχει και άλλος αυτό το πρόβλημα η εμφανίζεται μόνο σε μένα?
Τι να πω είναι αρκετά περίεργο αυτό που συμβαίνει και απορώ πως δεν εχει βρεθεί ακόμα η αιτία. Να φταίνε τα 10 να υπάρχει κάποιο bug? Γιατί τόσα χρόνια με τα 7 αν ήταν εκεί η αίτια σιγουρα θα το είχαν διορθώσει.
Τωρα στο πρόβλημα πιστευω οι λογοι μπορει να είναι αρκετοι και πρεπει να πειραματιστείς με διαφορες λυσεις
Εδώ πάντως αναφέρουν ότι το προβλημα οφείλετε στο dual boot.
https://www.tenforums.com/general-support/28770-windows-10-time-keeps-changing.html
Εάν εχεις Ντεσκτοπ μπορει να είναι και το τροφοδοτικο
Η λύση είναι η παρακάτω.
Κάνουμε δεξί κλικ στην επιφάνεια εργασίας και επιλέγουμε (έγγραφο κειμένου). Κάνουμε paste αυτό εδώ.
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] “RealTimeIsUniversal”=-
Και το κάνουμε save σαν WindowsTimeFixUTC.reg Tο τρέχουμε ώστε να καταχωρηθεί στο μητρώο των windows και κάνουμε επανεκκίνηση. Μπαίνουμε και στο δεύτερο λειτουργικό και κάνουμε ακριβώς το ίδιο με το αρχείο. Διορθώνουμε την ώρα και μπαίνουμε ξανά στο άλλο λειτουργικό και κάνουμε και εδώ διόρθωση της ώρας. Και κατά πάσα πιθανότητα μετά από αυτό το πρόβλημα θα λυθεί.
Αν εχουμε linux γράφουμε της εντολές σε παράθυρο τερματικού που υπάρχουν στο αγγλικό κείμενο.
Σε μένα μέχρι στιγμής τουλάχιστον που το δοκίμασα του έκανα 5-6 επανεκκινήσεις στα 7 και στα 10 και επιτέλους η ώρα δεν μου ξαναχάλασε…
Multiple Boot Systems Time Conflicts
Operating systems store and retrieve the time in the hardware clock located on your motherboard so that it can keep track of the time even when the system does not have power. Most operating systems (Linux/Unix/Mac) store the time on the hardware clock as UTC by default, though some systems (notably Microsoft Windows) store the time on the hardware clock as the ‘local’ time. This causes problems in a dual boot system if both systems view the hardware clock differently.
The advantage of having the hardware clock as UTC is that you don’t need to change the hardware clock when moving between timezones or when Daylight Savings Time (DST) begins or ends as UTC does not have DST or timezone offsets.
Changing Linux to use local time is easier and more reliable than changing Windows to use UTC, so dual-boot Linux/Windows systems tend to use local time.
Since Intrepid (8.10), UTC=yes is default.
Make Windows use UTC
Note: This method was not initially supported on Windows Vista and Server 2008, but came back with Vista SP2, Windows 7, Server 2008 R2 and Windows 8/8.1.
To make MS Windows calculate the time from the hardware clock as UTC.
Create a file named WindowsTimeFixUTC.reg with the following contents and then double click on it to merge the contents with the registry:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=dword:00000001
Note: Windows Time service will still write local time to the RTC regardless of the registry setting above on shutdown, so it is handy to disable Windows Time service with this command (if time sync is still required while in Windows use any third-party time sync solution):
sc config w32time start= disabled
Reversing the change
You can create a file with the following contents and then double-click it to merge in the original changes, as above:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation]
"RealTimeIsUniversal"=-
If Windows Time service was disabled, enable it again with the command:
sc config w32time start= demand
Make Linux use ‘Local’ time
To tell your Ubuntu system that the hardware clock is set to ‘local’ time:
Pre-Ubuntu 15.04 systems (e.g. Ubuntu 14.04 LTS):
- edit
/etc/default/rcS
-
add or change the following section
# Set UTC=yes if your hardware clock is set to UTC (GMT) UTC=no
Ubuntu 15.04 systems and above (e.g. Ubuntu 16.04 LTS):
-
open a terminal and execute the following command
timedatectl set-local-rtc 1
Please login or Register to submit your answer