a) If A-1-1 needs B-1-1 and we want to Upgrade onlyAs long as A-1.1 doesn't require B <= 1.1.
B-1-1 , then would the RPM allow to upgrade B-1-1 ?
b) If we are not aware of what packages need B-1-1 can we still simply go ahead and upgrade only B-1-1 ? using the -Upgrade command
For e.g rpm -Uvh B-2-2.rpm
You can use the following to find out what packages need B-1-1:
rpm -q --whatrequires B-1.1
And you can use
rpm -q --requires A-1.1
to find out the details of the require-relationship between A & B.