Estou tentando configurar a hora no meu sistema, de acordo com um dos ntp
servidores fornecidos na rede. No entanto, o tempo não muda. Eu estou fazendo isso no Ubuntu 12.04 que é instalado no Oracle VirtualBox
com o Windows 7 como o sistema host.
saasbook@saasbook:~$ su
Password:
root@saasbook:/home/ubuntu# pgrep ntpd
1392
root@saasbook:/home/ubuntu# cd ..
root@saasbook:/home# cd ..
root@saasbook:/# ls
bin dev initrd.img media proc sbin sys var
boot etc lib mnt root selinux tmp vmlinuz
cdrom home lost+found opt run srv usr
root@saasbook:/# vi etc/ntp.conf
Lá, adiciono um servidor como mostrado
driftfile /var/lib/ntp/ntp.drift
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
# The server specified by me
server in.pool.ntp.org
# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information.
server 0.ubuntu.pool.ntp.org
server 1.ubuntu.pool.ntp.org
server 2.ubuntu.pool.ntp.org
server 3.ubuntu.pool.ntp.org
Depois disso, salve as alterações e reinicie o ntp da seguinte forma
root@saasbook:/# /etc/init.d/ntp restart
* Stopping NTP server ntpd [ OK ]
* Starting NTP server ntpd [ OK ]
Mesmo depois de fazer tudo isso, o tempo no meu sistema não muda. Há algo que eu estou me desviando?