Difference between revisions of "NTP"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.2p4.tar.gz
+
| http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-{{NTP-Version}}.tar.gz
 
|}
 
|}
  
Line 27: Line 27:
  
 
  make install
 
  make install
  install -v -m755 -d /usr/share/doc/ntp-4.2.2p4 &&
+
  install -v -m755 -d /usr/share/doc/ntp-{{NTP-Version}} &&
  cp -v -R html /usr/share/doc/ntp-4.2.2p4/
+
  cp -v -R html /usr/share/doc/ntp-{{NTP-Version}}/
  
 
== Multilib ==
 
== Multilib ==
Line 44: Line 44:
  
 
  make install &&
 
  make install &&
  install -v -m755 -d /usr/share/doc/ntp-4.2.2p4 &&
+
  install -v -m755 -d /usr/share/doc/ntp-{{NTP-Version}} &&
  cp -v -R html /usr/share/doc/ntp-4.2.2p4/
+
  cp -v -R html /usr/share/doc/ntp-{{NTP-Version}}/
  
 
=== N32 ===
 
=== N32 ===
Line 62: Line 62:
  
 
  make install &&
 
  make install &&
  install -v -m755 -d /usr/share/doc/ntp-4.2.2p4 &&
+
  install -v -m755 -d /usr/share/doc/ntp-{{NTP-Version}} &&
  cp -v -R html /usr/share/doc/ntp-4.2.2p4/
+
  cp -v -R html /usr/share/doc/ntp-{{NTP-Version}}/
  
 
== Configuring ==
 
== Configuring ==

Revision as of 14:29, 17 December 2006

Download Source: http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2.8p10.tar.gz

Introdction to NTP

The NTP package contains a client and server to keep the time synchronized between various computers over a network. This package is the official reference implementation of the NTP protocol.

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --bindir=/usr/sbin \
    --sysconfdir=/etc &&
make

Install the package

make install
install -v -m755 -d /usr/share/doc/ntp-4.2.8p10 &&
cp -v -R html /usr/share/doc/ntp-4.2.8p10/

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 ./configure  --prefix=/usr \
--bindir=/usr/sbin --sysconfdir=/etc &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/ntp-4.2.8p10 &&
cp -v -R html /usr/share/doc/ntp-4.2.8p10/

N32

Please Contribute this section.

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 ./configure  --prefix=/usr \
    --bindir=/usr/sbin --sysconfdir=/etc &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/ntp-4.2.8p10 &&
cp -v -R html /usr/share/doc/ntp-4.2.8p10/

Configuring

Bootscript

Install the init script provided by the blfs-bootscripts package:

make install-ntp
ln -v -sf ../init.d/setclock /etc/rc.d/rc0.d/K46setclock &&
ln -v -sf ../init.d/setclock /etc/rc.d/rc6.d/K46setclock