http://embedded.kr/entry/xinetd-설치하기 참고 http://embedded.kr/entry/Tftp-설정 참고
[root@localhost ~]$ mount /dev/cdrom /mnt/cdrom [root@localhost ~]$ rpm -Uvh /mnt/cdrom/tools/tftp-server/tftp-server-0.29.3.i386.rpm [root@localhost ~]$ rpm -qa | grep tftp tftp-server-0.29-3 [root@localhost ~]$ mkdir /tftpboot [root@localhost ~]$ vi /etc/xinetd.d/tftp [root@localhost ~]$ service xinetd restart
# default: off # description: The tftp server serves files using the trivial file transfer \ # protocol. The tftp protocol is often used to boot diskless \ # workstations, download configuration files to network-aware printers, \ # and to start the installation process for some operating systems. service tftp { socket_type = dgram protocol = udp wait = yes user = root server = /usr/sbin/in.tftpd server_args = -s /tftpboot disable = no flags = IPv4 } xinetd 서버가 설치 되어 있고 tftp-server가 없다고 가정 했을 때 설치하는 방법이다. 타겟보드에서 Host PC 의 서버의 파일을 tftp을 이용하여 다운 받을 때 /tftpboot 디렉토리에 파일이 있어야만 한다.
 ( 0)  ( 0)
|