Linux: Difference between revisions
(2 intermediate revisions by the same user not shown) | |||
Line 449: | Line 449: | ||
==Dual Booting== | ==Dual Booting== | ||
===Fix time difference between Windows=== | ===Fix time difference between Windows=== | ||
By default, Windows stores the local time in the hardware clock while Ubuntu stores UTC time. | |||
Set ubuntu to store UTC time: | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
timedatectl set-local-rtc | timedatectl set-local-rtc 0 --adjust-system-clock | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Set Windows to store UTC time: | |||
https://wiki.archlinux.org/title/System_time#UTC_in_Microsoft_Windows | |||
===Recover GRUB after installing Windows=== | ===Recover GRUB after installing Windows=== | ||
Line 792: | Line 797: | ||
==Network Troubleshooting== | ==Network Troubleshooting== | ||
On one of my | On one of my OptiPlex 5060 servers, the network adapter would reset on git ssh clones.<br> | ||
This would appear in <code>/var/log/syslog</code> as: | This would appear in <code>/var/log/syslog</code> as: | ||
<pre> | <pre> | ||
Line 892: | Line 897: | ||
# Disable MOTD | # Disable MOTD | ||
sudo chmod -x /etc/update-motd.d/88-esm-announce | sudo chmod -x /etc/update-motd.d/88-esm-announce | ||
sudo chmod -x /etc/update-motd.d/91-contract-ua-esm-status | |||
# Disable APT check | # Disable APT check |