디바이스 드라이버
글 수 70
2015.06.22 14:16:48 (*.134.169.166)
12905
우분투 14.04에서 tftpd 서버가 가끔 동작하지 않을 경우가 있습니다.
버그가 있다고 하지만 현재 이와 관련된 패치는 되지 않고 있다고 합니다.
따라서 아래와 같이 몇가지 방법으로 해결해야 할 것 같습니다.
방법1>
$ sudo service tftpd-hpa restart
방법2>
$ sudo /usr/sbin/in.tftpd --listen --user tftp --address [::]:69 --secure /tftpboot
방법3>
$ sudo vi /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
sleep 10
service tftpd-hpa restart
exit 0
위의 3가지 방법 중 1가지를 선택해서 사용하시면 될 것 같습니다.