From: "Free VSD" <[EMAIL PROTECTED]>
> will it be installed in alphabetic order?
>
> how about if the some RPMs are dependent on others??
>
> anyway to specific the order of the RPM installations??
>
The RPM files will all be given as arguments to a single 'rpm' command. RPM
then usually does a pretty good job of figuring out which order to install
those RPMs in to satisfy all dependencies.
Btw sometimes you might find two RPMs which both depend on each other - it
becomes impossible to install them separately. In such a case you have to
give both files to a single 'rpm' command to get them to install at all.
Example:
rpm -ivh someapp.rpm someapp-lib.rpm
So to answer your question, you don't need to worry about the ordering. Rpm
does the worrying for you.
Cheers
Simon Garner