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
- Tissot
- sm5 임프 헤드라이트 교체 팁
- wsl2 설치
- IE8
- bmw x5 엔진오일 비용
- Visual Studio 2015
- tissot 시계 as
- x5 f15 엔진오일 비용
- bmw 도어 웰컴라이트 교환
- Chrome
- sm5 전조등 교체 팁
- 크롬
- bmw x5 도어 웰컴라이트 교환
- bmw 도어 웰컴등 교환
- bmw x5 엔진오일 교환 비용
- bmw x5 연료필터 교환 비용
- sm5 hid 벌브 교체 팁
- Visual Studio
- bmw 엔진오일 비용
- bmw x5 도어 웰컴등 교환
- sm5 임프 hid 교체 팁
- sm5 쓰로틀 바디 청소
- bmw x5 f15 도어 웰컴등 교환
- vmware 에러
- x5 f15 엔진오일 연료필터 비용
- bmw x5 정식서비스센터 엔진오일 교환 비용
- sm5 임프 전조등 교환 팁
- sm5 임프 전조등 교체 팁
- x5 f15 연료필터 비용
- bmw x5 f15 도어 웰컴라이트 교환
Archives
- Today
- Total
임베디드아로마
/usr/bin/ld: cannot find -lperl
SNMP 구현을 위해서 소스를 다운받아서 make 하는데 계속 빌드 에러로 진행이 안되었다. /usr/bin/ld: cannot find -lperl collect2: error: ld returned 1 exit status apt-get 으로 해당 라이브러리를 다운받아 설치하면 된다. 참고사이트 http://stackoverflow.com/questions/17576911/cannot-find-lperl-doing-a-makefile-on-c
Experience
2017. 4. 23. 22:42
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 ..
Experience
2017. 4. 23. 22:42