Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Visual Studio
- windows 11 호환성
- sm5 임프 전조등 교체 팁
- wsl2 설치
- windows 11 호환성 문제 해결사
- sm5 hid 벌브 교체 팁
- sm5 임프 헤드라이트 교체 팁
- Visual Studio 2015
- sm5 헤드라이트 조수석
- sm5 쓰로틀 바디 청소
- IE8
- vmware 에러
- winsdows 11 snmpb
- sm5 임프 유리모터 교체
- sm5 아이들 학습
- Chrome
- 크롬
- sm5 임프 에어컨 정차 떨림
- windows 11 실행이 안될 때
- sm5 창문 고장
- sm5 정차 시 떨림
- sm5 전조등 교체 팁
- tissot 시계 as
- sm5 임프 전조등 교환 팁
- windows 11 실행 문제
- sm5 정차 시 rpm 낮아짐
- Tissot
- sm5 임프 창문 수리
- sm5 임프 hid 교체 팁
- sm5 임프 유리모터 수리
Archives
- Today
- Total
임베디드아로마
ubuntu 10.04 tftp 설정 (tftpd-hpa) 본문
우선 tftp 설정하는 법은 많이들 나와 있다. 요약하면 이렇고
1. Install tftpd and related packages.
$ sudo apt-get install xinetd tftpd tftp
2. Create /etc/xinetd.d/tftp and put this entry:
service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /tftpboot
disable = no
}
3. Make /tftpboot directory
$ sudo mkdir /tftpboot
$ sudo chmod -R 777 /tftpboot
$ sudo chown -R nobody /tftpboot
4. Restart xinetd
$ sudo /etc/inet.d/xinetd restart
* 여기서 중요한건 10.04 에서만 해당하는 줄은 모르겠지만 보안상
tftp-hpa라는 것을 설치하는 것 같네요$ sudo apt-get install tftpd-hpa tftp-hpa
한후
gedit /etc/default/tftpd-hpa
# /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
#TFTP_DIRECTORY="/var/lib/tftpboot"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="--secure"
설정파일 저장한후 서비스 리스타트 하면 된다.
sudo service tftpd-hpa restart
그럼 조그마한 도움이 되었길 바라며
[출처] ubuntu 10.04에 tftp-hpa설치|작성자 난리법석
'Experience' 카테고리의 다른 글
UltraVnc 에서 파일전송창(File Transfer)이 뜨지않을때 (0) | 2017.04.24 |
---|---|
IE8에서 스마트클라이언트 동작에 관해 (0) | 2017.04.24 |
SQL Injection 방지 / HTML Tag 방지처리 (basepage) (0) | 2017.04.23 |
Windows7의 IIS7 이상에서 ASP 활성화 (0) | 2017.04.23 |
/usr/bin/ld: cannot find -lperl (0) | 2017.04.23 |
Comments