|
|
|
|
|
by inetknght
2772 days ago
|
|
> They're also ludicrously inflexible in that they don't allow multiple versions of the same application to be installed They actually do allow multiple versions of the same application to be installed. It's just difficult to get it to work. The package itself will install to (for example) /usr/bin. A new version of the package will have the same file names, so they get overwritten. Most well-built packages will allow you to override the installation path though. This is perfect in case you want to install to your home directory (instead of globally) or some versioned directory. For example you can relocate RPM installations given an example.rpm file: rpm -i --relocate=/=/home/myuser example.rpm
|
|