Install new Fonts on Ubuntu Server
apt install fontconfig
cp -R ~/arial /usr/share/fonts/truetype/
sudo fc-cache -f -v
References
http://chapter31.com/2012/09/24/installing-new-fonts-on-ubuntu-server/
apt install fontconfig
cp -R ~/arial /usr/share/fonts/truetype/
sudo fc-cache -f -v
References
http://chapter31.com/2012/09/24/installing-new-fonts-on-ubuntu-server/
Though timesyncd is fine for most purposes, some applications that are very sensitive to even the slightest perturbations in time may be better served by ntpd, as it uses more sophisticated techniques to constantly and gradually keep the system time on track.
sudo timedatectl set-ntp no
timedatectl
sudo apt-get install ntp
sudo ntpq -p
References
https://www.digitalocean.com/community/tutorials/how-to-set-up-time-synchronization-on-ubuntu-16-04
nohup my_command > my.log 2>&1 & echo $! > save_pid.txt
kill -9 `cat save_pid.txt` rm save_pid.txt
References
https://stackoverflow.com/questions/17385794/how-to-get-the-process-id-to-kill-a-nohup-process
/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu bionic universe multiverse deb-src http://archive.ubuntu.com/ubuntu bionic universe multiverse deb http://us.archive.ubuntu.com/ubuntu/ bionic universe deb-src http://us.archive.ubuntu.com/ubuntu/ bionic universe deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe deb http://us.archive.ubuntu.com/ubuntu/ bionic multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ bionic multiverse deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse deb http://security.ubuntu.com/ubuntu bionic-security universe deb-src http://security.ubuntu.com/ubuntu bionic-security universe deb http://security.ubuntu.com/ubuntu bionic-security multiverse deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse
References
https://help.ubuntu.com/lts/serverguide/configuration.html.en
sudo vim /etc/netplan/01-netcfg.yaml
network: ethernets: eno1: addresses: - 172.20.63.234/24 - 192.168.10.20/24 - 192.168.1.240/24 dhcp4: false gateway4: 172.20.63.254 nameservers: addresses: - 8.8.8.8 - 8.8.4.4 search: [] enp3s0: addresses: [] dhcp4: true optional: true version: 2
Testing the Configuration
sudo netplan try
Applying the New Configuration
sudo netplan apply
References
https://blog.programster.org/set-static-ip-with-netplan
https://www.linux.com/learn/intro-to-linux/2018/9/how-use-netplan-network-configuration-tool-linux
htop df bmon