1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux:ファイル取得(wget)→解凍(tar)

1
Posted at
yum install wget
wget `ファイルのURL(https://)`
tar xf `ファイル名`

yum install コマンド:すでにインストール済みだったらいらない
wget URL:インストールしたいファイルのURL
tar xf:ファイルの解凍コマンド

x : eXtract(展開)
v : verbose(言葉の多い、展開内容を表示)
z : gzip対応
f : file から展開(デフォルトはテープデバイスになってるので。)
引用元:https://qiita.com/ironsand/items/b53301eb07e0f6199126

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?