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
'Embeded' 카테고리의 다른 글
visual studio 에서 htonl, htons 등 관련 에러 해결 방법 (0) | 2016.07.01 |
---|---|
ubuntu 10.04 tftp 설정 (tftpd-hpa) (0) | 2013.11.28 |
우선 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라는 것을 설치하는 것 같네요[출처] ubuntu 10.04에 tftp-hpa설치|작성자 난리법석
'Embeded' 카테고리의 다른 글
visual studio 에서 htonl, htons 등 관련 에러 해결 방법 (0) | 2016.07.01 |
---|---|
/usr/bin/ld: cannot find -lperl (0) | 2015.05.26 |
'General' 카테고리의 다른 글
Adobe Reader DC 실행 시 주석 창 안보이게 하는 방법 (2) | 2015.08.17 |
---|---|
자이닉스 cx-220 GPS 배터리 교체 (0) | 2011.04.25 |
소프트웨어기술 경력증 도착 (0) | 2009.11.08 |