Skip to content

Instantly share code, notes, and snippets.

@jollyjoester
Created July 11, 2014 02:01
Show Gist options
  • Save jollyjoester/2483bcfc15bf46318595 to your computer and use it in GitHub Desktop.
Save jollyjoester/2483bcfc15bf46318595 to your computer and use it in GitHub Desktop.
yum memo
#hogeをインストール
yum install [hoge]
#reposのクリーン
yum clean packages
#hogeをアップデート
yum update [hoge]
#hogeを削除
yum remove [hoge]
#インストール済みソフト一覧
yum list installed
yum list installed | grep [hoge]
#インストール可能なソフト一覧
yum list
yum list | grep [hoge]
#アップデート可能なソフト一覧
yum list updates
#hogeの情報
yum info [hoge]
@jollyjoester
Copy link
Author

memo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment