2018-05-08 wget
yum で入れた wget を入れ替える。まずは現在の wget のバージョンとパスをチェック。結構古い…。
wget --vesion GNU Wget 1.12 built on linux-gnu. which wget /usr/bin/wget
本家からダウンロードしてビルドする。/usr/bin/wget
にインストールするので --prefix=/usr
をつける。
cd /usr/local/src/ wget https://ftp.gnu.org/gnu/wget/wget-1.19.5.tar.gz tar xf wget-1.19.5.tar.gz cd wget-1.19.5/ ./configure --prefix=/usr --with-ssl=openssl make
エラーが出ずにビルド完了できたら現在インストールされている wget を削除。
yum remove wget
そしてインストール。
make install
確認。OK。
wget --vesion GNU Wget 1.19.5 built on linux-gnu. which wget /usr/bin/wget