Difference between pages "Package:Ntp" and "Translations:Funtoo:Metro/134/en"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
(Importing a new version from external source)
 
Line 1: Line 1:
{{Ebuild
[[Category:HOWTO]]
|Summary=Network Time Protocol suite/programs
[[Category:Metro]]
|CatPkg=net-misc/ntp
__TOC__
|Homepage=http://www.ntp.org/
}}
 
=== Installation ===
{{console|body=
###i## emerge net-misc/ntp
}}
 
=== Configuration ===
==== Client ====
The ntp-client command immediately synchronizes your clock, and has separate ntp sync settings from the daemon:
 
{{file|name=/etc/conf.d/ntp-client|lang=|desc=setting ntp-client upstream servers|body=
NTPCLIENT_OPTS="-s -b -u \
0.pool.ntp.org 1.pool.ntp.org \
2.pool.ntp.org 3.pool.ntp.org"
}}
 
==== Server ====
The ntpd server is also an ntp-client of upstream servers.  Ntpd continuously, and gradually synchronizes the local clock.
 
{{file|name=/etc/ntp.conf|lang=|desc=setting ntpd upstream servers|body=
# Pools for Gentoo users
server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org
server 3.pool.ntp.org
}}
 
=== Runtime ===
{{console|body=
###i## rc-update add ntpd
###i## rc-update add ntp-client
###i## rc
}}
 
==== Hardware Clock ====
To write your NTP sync time to the hardware at shutdown, and read hw clock at start.
 
{{console|body=
###i## echo 'clock_hctosys="YES"' >> /etc/conf.d/hwclock
###i## echo 'clock_hctosys="YES"' >> /etc/conf.d/hwclock
###i## rc-service hwclock restart
###i## rc-update add hwclock boot
}}
 
=== External Resources ===
http://keetweej.vanheusden.com/query_ntp.php
 
{{EbuildFooter}}

Revision as of 17:33, July 12, 2015