CentOS 6でwgetコマンドをパッケージインストールする方法
CentOS 6(Linux)で、wgetコマンドをインストールしていないのにwgetコマンドを実行しようとすると、当然のことだが、以下のように「command not found」というエラーになってしまう。
# wget
-bash: wget: command not found
「yum search」でwgetを探すと、簡単にwgetのパッケージが見つかる。
# yum search wget
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.iij.ad.jp
* extras: ftp.iij.ad.jp
* updates: ftp.iij.ad.jp
===================================================================== N/S Matched: wget =====================================================================
wget.x86_64 : A utility for retrieving files using the HTTP or FTP protocols
Name and summary matches only, use "search all" for everything.
wgetコマンドをCentOS 6のパッケージとしてインストールするには、「yum install」でwgetをインストールすればよい。
# yum install wget
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.iij.ad.jp
* extras: ftp.iij.ad.jp
* updates: ftp.iij.ad.jp
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package wget.x86_64 0:1.12-1.8.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
=============================================================================================================================================================
Package Arch Version Repository Size
=============================================================================================================================================================
Installing:
wget x86_64 1.12-1.8.el6 base 482 k
Transaction Summary
=============================================================================================================================================================
Install 1 Package(s)
Total download size: 482 k
Installed size: 1.8 M
Is this ok [y/N]: y
Downloading Packages:
wget-1.12-1.8.el6.x86_64.rpm | 482 kB 00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : wget-1.12-1.8.el6.x86_64 1/1
Installed:
wget.x86_64 0:1.12-1.8.el6
Complete!
これで、wgetコマンドのインストールは完了だ。
CentOS 6でwgetコマンドをパッケージインストールするには、以下のコマンドを実行すればよい、ということを覚えておこうと思う。
yum install wget