Linux에 curl과 libcurl 소스 다운로드 하여 컴파일 설치 하기
1. Curl Source 다운로드
https://curl.haxx.se/download.html
curl-7.68.0.tar.bz2 다운로드
tar -xvjf curl-7.68.0.tar.bz2
cd curl-7.68.0
2. Build 및 Install
https://curl.haxx.se/docs/install.html
./configure
make
make install
확인
/usr/local/include
/usr/local/lib
/usr/local/bin
curl --version
3. Curl 명령어 사용 법
https://www.lesstif.com/pages/viewpage.action?pageId=14745703
4. Curl 및 libcurl 사용법 가이드
https://ec.haxx.se/libcurl/libcurl-easyhandle
: Curl 및 libcurl 라이브러 사용법에 대해 보기 좋게 기초 부터 잘 정리 되어 있음.
“파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음"
5. libcurl API 사용 예제 코드
https://curl.haxx.se/libcurl/c/example.html
Simple HTTPS Get :https://curl.haxx.se/libcurl/c/https.html
Very Simple Get : https://curl.haxx.se/libcurl/c/simple.html
Very Simple Post : https://curl.haxx.se/libcurl/c/simplepost.html
libcurl API 간단 설명 블로그 참고 : https://tribal1012.tistory.com/289
libcurl + json POST 예제 블로그 참고 : https://kindtis.tistory.com/597
libcurl Get FTP Post 좀 더 자세한 설명 블로그 참고 : https://www.joinc.co.kr/w/Site/Web/documents/UsedCurl
'Linux' 카테고리의 다른 글
Raspbian Pi 4에 Raspbian 설치 후에 한글 깨짐 문제 해결 | Putty 한글 (0) | 2020.04.28 |
---|---|
https 드라이버 에러 해결 | The method driver /usr/lib/apt/methods/https could not be found. (0) | 2020.04.28 |
Linux 64bit system에서 32bit apps 실행 시 설치 패키지 (0) | 2020.03.09 |
터치스크린을 위한 커널 마우스 스크린 해상도 설정 (0) | 2020.02.07 |
Json 파싱 라이브러리로 RapidJson 사용 해보자. (0) | 2020.02.05 |