Created
July 11, 2014 02:01
-
-
Save jollyjoester/2483bcfc15bf46318595 to your computer and use it in GitHub Desktop.
yum memo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
memo