I would like to upgrade package A and at the same time erase package B.

There are dependencies between the packages so I would like to do both operations as one transaction.

This can be done with 2 commands:

rpm --erase packageB.rpm rpm -Uvh packageA.rpm

Can it be done as one command?

link|improve this question

25% accept rate
feedback

1 Answer

You can't do it with the rpm command on the command line, but you can do it with yum shell:

# yum shell
Setting up Yum Shell
> install package1
> erase package2
> run
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.