yumの出力を削る

yumでパッケージをインストールするときに、手動で2,3パッケージをインストールするときはそのままやればいいのですが、
インストールスクリプトなどで一括してインストールする場合など、画面が高速で流れてエラーが出てるのか出てないのかよくわからなくなります。

以下のオプションで標準出力、エラー出力を調整可能です。

       -d, --debuglevel=[number]
              Sets the debugging level to [number] - turns up or down the amount of things that are printed. Practical range: 0 - 10
              Configuration Option: debuglevel

       -e, --errorlevel=[number]
              Sets the error level to [number] Practical range 0 - 10. 0 means print only critical errors about which you must be told. 1  means  print  all
              errors, even ones that are not overly important. 1+ means print more errors (if any) -e 0 is good for cron jobs.
              Configuration Option: errorlevel

デフォルトは2らしいので、

yum -d 1 install httpd24 

とかで標準出力を結構削ることが可能です。

参考
http://uxmilk.jp/9899