スポンサーリンク
wget コマンド
ターミナルでWebサイトからダウンロードする際には、wget コマンドを利用すると便利です。
[root@localhost ~]# wget
-bash: wget: コマンドが見つかりません
[root@localhost ~]#
wget インストール有無確認
yum list installed | grep wget でインストールされているか確認します。
インストールされて無い実際のコマンド結果
[root@localhost ~]# yum list installed | grep wget
[root@localhost ~]#
インストールされてる実際のコマンド結果
[root@localhost ~]# yum list installed | grep wget
wget.x86_64 1.14-18.el7_6.1 @base
[root@localhost ~]#
wget インストール
yum install wget でインストールします。
Is this ok と聞かれますので y と入力してEnterを押す。
[root@localhost ~]# yum install wget
読み込んだプラグイン:fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.cat.net
* epel: ftp.iij.ad.jp
* extras: mirrors.cat.net
* remi-safe: ftp.riken.jp
* updates: mirrors.cat.net
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ wget.x86_64 0:1.14-18.el7_6.1 を インストール
--> 依存性解決を終了しました。
依存性を解決しました
==============================================================================================================
Package アーキテクチャー バージョン リポジトリー 容量
==============================================================================================================
インストール中:
wget x86_64 1.14-18.el7_6.1 base 547 k
トランザクションの要約
==============================================================================================================
インストール 1 パッケージ
総ダウンロード容量: 547 k
インストール容量: 2.0 M
Is this ok [y/d/N]: y
Downloading packages:
wget-1.14-18.el7_6.1.x86_64.rpm | 547 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
インストール中 : wget-1.14-18.el7_6.1.x86_64 1/1
検証中 : wget-1.14-18.el7_6.1.x86_64 1/1
インストール:
wget.x86_64 0:1.14-18.el7_6.1
完了しました!
[root@localhost ~]#
wget コマンドを入力してEnterを押すと下記のようにURLがありませんと表示されればOKです。
[root@localhost ~]# wget
wget: URLがありません
使い方: wget [オプション]... [URL]...
詳しいオプションは `wget --help' を実行してください。
[root@localhost ~]#
スポンサーリンク