$ /var/log/apt/history.log https://askubuntu.com/questions/14328/where-can-i-look-up-my-update-history
$ /var/log/apt/history.log https://askubuntu.com/questions/14328/where-can-i-look-up-my-update-history
sudo -H gedit /usr/share/plymouth/themes/ default.grub
if background_color 0,0,0 ; then
clear
fi
Then, update grubsudo update-grub
https://askubuntu.com/ questions/47488/how-to-change- the-purple-background-color- in-grub
sudo cp /etc/apt/sources.list /etc/apt/security.sources.list
Edit the latter to contain only security repositories, then:sudo apt-get upgrade -o Dir::Etc::SourceList=/etc/apt/security.sources.list
https://serverfault.com/questions/270260/how-do-you-use-apt-get-to-only-install-critical-security-updates-on-ubuntu
/etc/default/rcS to disable UTC.timedatectl set-local-rtc 1 --adjust-system-clockTo check out if your system uses Local time, just run:
timedatectl
sudo mkdir /git/example.git
cd /git/example.git
sudo git init --bare
cd /home/
sudo git clone/git/example.git# (bcoz the repo has root permission in this example)
To use:
git add ... whatever
git commit -a
sudo git push # (bcoz the repo has root permission in this example)