LoginSignup
0
2

More than 5 years have passed since last update.

cURL のインストール(gitでソースから)

Posted at

CentOS内のcURLが古かったので新しいバージョンのものをインストールしたのでメモ

環境

OS・ミドルウェア バージョン
OS CentOS Linux release 7.3.1611 (Core)

手順

  1. 必要なライブラリをインストール

    # yum -y install autoconf automake libtool m4 groff #groffじゃなくてnroffとあったけど、nroffはリポジトリ探してもなかった気がする
    
  2. git でソースをクローンする

    # git clone https://github.com/curl/curl.git
    
  3. 以下のコマンドを実行する

    # ./buildconf
    # ./configure
    # make
    # make install #必要だったような気がする
    

参考資料

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2