Manjaro OS shows wrong time

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I am using Manjaro OS (Arch Linux based distro) on my HP Notebook 15 with Pentium IV processor.
I have tried changing timezones using "Orange Globaltime" built into the distro but despite being connected to the internet, the time is not updated.
Furthermore, I have used $sudo date +%T -s "14:26:00"
to set the time of my laptop. But after I login in again, the time is back to being wrong again.
How can I fix my laptop's time?
linux time manjaro
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
I am using Manjaro OS (Arch Linux based distro) on my HP Notebook 15 with Pentium IV processor.
I have tried changing timezones using "Orange Globaltime" built into the distro but despite being connected to the internet, the time is not updated.
Furthermore, I have used $sudo date +%T -s "14:26:00"
to set the time of my laptop. But after I login in again, the time is back to being wrong again.
How can I fix my laptop's time?
linux time manjaro
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
What does thedatecommand show exactly, how much is it wrong, and in what time zone are you located?
– Kusalananda
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
What does thedatecommand show exactly? Its output usually includes a timezone.
– Kusalananda
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using Manjaro OS (Arch Linux based distro) on my HP Notebook 15 with Pentium IV processor.
I have tried changing timezones using "Orange Globaltime" built into the distro but despite being connected to the internet, the time is not updated.
Furthermore, I have used $sudo date +%T -s "14:26:00"
to set the time of my laptop. But after I login in again, the time is back to being wrong again.
How can I fix my laptop's time?
linux time manjaro
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am using Manjaro OS (Arch Linux based distro) on my HP Notebook 15 with Pentium IV processor.
I have tried changing timezones using "Orange Globaltime" built into the distro but despite being connected to the internet, the time is not updated.
Furthermore, I have used $sudo date +%T -s "14:26:00"
to set the time of my laptop. But after I login in again, the time is back to being wrong again.
How can I fix my laptop's time?
linux time manjaro
linux time manjaro
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 9 hours ago
Rui F Ribeiro
38.2k1475123
38.2k1475123
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 days ago
Anode Cathode
32
32
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Anode Cathode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
What does thedatecommand show exactly, how much is it wrong, and in what time zone are you located?
– Kusalananda
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
What does thedatecommand show exactly? Its output usually includes a timezone.
– Kusalananda
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago
add a comment |
1
What does thedatecommand show exactly, how much is it wrong, and in what time zone are you located?
– Kusalananda
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
What does thedatecommand show exactly? Its output usually includes a timezone.
– Kusalananda
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago
1
1
What does the
date command show exactly, how much is it wrong, and in what time zone are you located?– Kusalananda
2 days ago
What does the
date command show exactly, how much is it wrong, and in what time zone are you located?– Kusalananda
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
What does the
date command show exactly? Its output usually includes a timezone.– Kusalananda
2 days ago
What does the
date command show exactly? Its output usually includes a timezone.– Kusalananda
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
It seems as though Network time Protocol is either not installed or not working on your laptop. I suggest using the following commands to install it:
Step 1: Install NTP
sudo pacman -S ntp
Step 2: Turn on NTP
sudo timedatectl set-ntp true
Source: https://wiki.manjaro.org/index.php?title=System_Time_Setting
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
It seems as though Network time Protocol is either not installed or not working on your laptop. I suggest using the following commands to install it:
Step 1: Install NTP
sudo pacman -S ntp
Step 2: Turn on NTP
sudo timedatectl set-ntp true
Source: https://wiki.manjaro.org/index.php?title=System_Time_Setting
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
add a comment |
up vote
0
down vote
accepted
It seems as though Network time Protocol is either not installed or not working on your laptop. I suggest using the following commands to install it:
Step 1: Install NTP
sudo pacman -S ntp
Step 2: Turn on NTP
sudo timedatectl set-ntp true
Source: https://wiki.manjaro.org/index.php?title=System_Time_Setting
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
It seems as though Network time Protocol is either not installed or not working on your laptop. I suggest using the following commands to install it:
Step 1: Install NTP
sudo pacman -S ntp
Step 2: Turn on NTP
sudo timedatectl set-ntp true
Source: https://wiki.manjaro.org/index.php?title=System_Time_Setting
It seems as though Network time Protocol is either not installed or not working on your laptop. I suggest using the following commands to install it:
Step 1: Install NTP
sudo pacman -S ntp
Step 2: Turn on NTP
sudo timedatectl set-ntp true
Source: https://wiki.manjaro.org/index.php?title=System_Time_Setting
edited 2 days ago
Kusalananda
115k15218351
115k15218351
answered 2 days ago
Prajwal Dhatwalia
1161
1161
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
add a comment |
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
This works. Just restarted my laptop without internet. The time is correct :)
– Anode Cathode
2 days ago
add a comment |
Anode Cathode is a new contributor. Be nice, and check out our Code of Conduct.
Anode Cathode is a new contributor. Be nice, and check out our Code of Conduct.
Anode Cathode is a new contributor. Be nice, and check out our Code of Conduct.
Anode Cathode is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f481973%2fmanjaro-os-shows-wrong-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What does the
datecommand show exactly, how much is it wrong, and in what time zone are you located?– Kusalananda
2 days ago
It showed 2:30 AM when the correct time was 9:00 PM. I am in Asia/Calcutta time-zone. Changing timezone to UTC did not correct my laptop's time. I am connected to the internet.
– Anode Cathode
2 days ago
What does the
datecommand show exactly? Its output usually includes a timezone.– Kusalananda
2 days ago
It's fixed. NTP wasn't installed.
– Anode Cathode
2 days ago