#Arch based systems
pacman -S ntp
#Debian based systems
apt-get install ntp
#Red Hat based systems
dnf install ntp
#Red Hat based systems
yum install ntp
#SUSE based systems
zypper install ntp
dig
or this online app toolbox.googleapps.com/apps/dig:dig 1a.ncomputers.org ANY
;; ANSWER SECTION:
1a.ncomputers.org. 26652 IN AAAA 2a02:c207:2010:9464::1
1a.ncomputers.org. 26652 IN A 173.212.196.208
driftfile /var/lib/ntp/ntp.drift
restrict default kod nomodify nopeer noquery notrap
restrict localhost
server 2a02:c207:2010:9464::1
server 173.212.196.208
server 2a02:c207:2010:6775::1
server 5.189.146.13
server 2a02:c205:2009:8290::1
server 80.241.208.120
#init.d based init system
service ntp restart
#systemd as init system
systemctl restart ntp
#Using mod_alias
<VirtualHost *:80>
ServerName pool.ntp.org
ServerAlias *.pool.ntp.org *.ntppool.org
Redirect permanent / http://www.pool.ntp.org/
</VirtualHost>
#Using mod_rewrite
<VirtualHost *:80>
ServerName pool.ntp.org
ServerAlias *.pool.ntp.org *.ntppool.org
RewriteRule ^ http://www.pool.ntp.org%{REQUEST_URI} [R=301,L]
</VirtualHost>