FC6에서는 /etc/xinetd.d/tftp 라는 파일로 존재했다.
하지만 우분투에서는 xinet 대신 inet을 사용하며,
경로역시 /etc/inetd.conf 로 변경되었다.
어쨌거나 저쨌거나, 위의 빨간색 굵게 칠해진 부분이 tftp 경로이다.
음.. 기본값이 다르군!
$ cat tftp # 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 per_source = 11 cps = 100 2 flags = IPv4 } |
하지만 우분투에서는 xinet 대신 inet을 사용하며,
경로역시 /etc/inetd.conf 로 변경되었다.
$ cat /etc/inetd.conf #<off># netbios-ssn stream tcp nowait root /usr/sbin/tcpd /usr/sbin/smbd tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp |
어쨌거나 저쨌거나, 위의 빨간색 굵게 칠해진 부분이 tftp 경로이다.
음.. 기본값이 다르군!
'Linux > Ubuntu' 카테고리의 다른 글
우분투에서 /etc/sysconfig/network 에 대응하는 파일 (0) | 2010.02.16 |
---|---|
우분투 9.10 에서 makefile 내의 ANSI 컬러가 보이지 않아요! (0) | 2010.02.05 |
sudo 사용가능하도록 설정하기 (0) | 2010.02.04 |
우분투 사용자 자동로그인 (0) | 2010.02.04 |
ubuntu 9.10 에서 /dev/fb 만들기 (4) | 2010.02.01 |