Skip to content

Instantly share code, notes, and snippets.

@donchan922
Last active March 13, 2020 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donchan922/20f79dc58b214fc8941db422263b1388 to your computer and use it in GitHub Desktop.
Save donchan922/20f79dc58b214fc8941db422263b1388 to your computer and use it in GitHub Desktop.
# yum-utilsがインストールされているか確認する
$ yum list installed yum-utils
# yum-utilsをインストールする(既にインストールされている場合は、不要)
$ yum install yum-utils
# パッケージをダウンロードする
$ yumdownloader <package>
# パッケージを依存関係も含めてダウンロードする
$ yumdownloader --resolve <package>
# パッケージを指定のディレクトリにダウンロードする
$ yumdownloader --destdir <directory> <package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment