Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

linux

rpm

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

like image 744
husker Avatar asked Sep 18 '25 11:09

husker


1 Answers

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.

like image 159
iamauser Avatar answered Sep 20 '25 04:09

iamauser