Reputation: 28086
I have been given a remote Red hat Terminal and asked to install subversion. The only instructions I have is
pull rpm client svn distro and unpack it using rpm2cpio filename.rpm | cpio -idmv
how does on pull rpm distributions ?
Upvotes: 1
Views: 845
Reputation: 3626
Unless you have a really good reason not to, use the package manager by running yum install subversion
Using the package manager makes it much easier to update and maintain the system in the future.
Here's a link to the official RHEL documentation
Upvotes: 2