G Jansen wrote:
> [root@server files]# $ rpm -i ImageMagick-5.4.3.11-1.i386.rpm
> bash: $: command not found
the command to install an rpm should be :
rpm -Uvh therpmfile.rpm
when you are trying to install several rpms at once, like you will be to satisfy dependencies, you should create a folder, move all the rpm files into it, then type :
rpm -Uvh *.rpm
then rpm will take care of installing all the rpm files in the correct order.
> I had attempted to install an even more recent rpm:
> ImageMagick-5.5.7-10.i386.rpm
The version is not as important as the platform it's created for (i.e. it must be an rpm for redhat 7.3)
G
PS. To re-iterate Lloyd Keen, when you have an rpm dependency, just go and find it, and download it. What's the problem with doing that?