rpmの強制インストールです。
–force オプションを付けます。
rpm -ivh <strong>--force</strong> <em>rpmパッケージファイル名</em>
下記のように、「エラー: 依存性の欠如」と出た場合は、更に –nodeps オプションを付けます。
# rpm -ivh --force postgrey-1.34-1.el6.rf.noarch.rpm 警告: postgrey-1.34-1.el6.rf.noarch.rpm: ヘッダ V3 DSA/SHA1 Signature, key ID 6b8d79e6: NOKEY エラー: 依存性の欠如: perl(Parse::Syslog) は postgrey-1.34-1.el6.rf.noarch に必要とされています
下記のようにします。
rpm -ivh <strong>--force --nodeps</strong> <em>rpmパッケージファイル名</em>
これで rpmパッケージを強制的にインストールできます。
コメント