husker
husker

Reputation: 95

Is there a rpm command to check .rpm package installation log

Is there a rpm command to check .rpm package installation log when install failed to find out what happened

Upvotes: 3

Views: 14662

Answers (1)

iamauser
iamauser

Reputation: 11479

You can get all the command line help by typing, either

 rpm --help

or

 man rpm

You can use the verbosity flag vv (two v for more) during installation to know more:

 rpm -Uvvh foo.rpm --test

--test does a dry run of the installation, but doesn't write to the disk.. You can remove it to go with a real installation.

Upvotes: 8

Related Questions