Difference between revisions of "Tftp-hpa"
From CBLFS
Jump to navigationJump to searchLine 58: | Line 58: | ||
make install | make install | ||
+ | |||
+ | == Configuring == | ||
+ | |||
+ | This section assumes that you have [[Xinetd]] installed and configured to load services in '''/etc/xinetd.d'''. | ||
+ | |||
+ | cat > /etc/xinetd.d/tftp << "EOF" && | ||
+ | # Begin /etc/xinetd.d/tftp | ||
+ | |||
+ | service tftp | ||
+ | { | ||
+ | disable = no | ||
+ | socket_type = dgram | ||
+ | wait = yes | ||
+ | user = root | ||
+ | server = /usr/sbin/in.tftpd | ||
+ | server_args = -s /srv/tftp | ||
+ | } | ||
+ | |||
+ | # End /etc/xinetd.d/tftp | ||
+ | EOF |
Revision as of 07:07, 5 November 2006
Download Source: | http://www.kernel.org/pub/software/network/tftp/tftp-hpa-0.43.tar.bz2 |
---|
Contents
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr && make
Install the package
make install
Configuring
This section assumes that you have Xinetd installed and configured to load services in /etc/xinetd.d.
cat > /etc/xinetd.d/tftp << "EOF" && # Begin /etc/xinetd.d/tftp service tftp { disable = no socket_type = dgram wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /srv/tftp } # End /etc/xinetd.d/tftp EOF