I am trying to install R on a CentOS 5.8 64 bit machine. I am trying to get the rpm, but I get an error message of "unknown or unexpected error". Here is what I'm using sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
Here is where I found the answer to my issue. http://www.geekdevs.com/2011/09/solved-fedora-release-conflicts-with-epel-release-5-4-noarch-on-fedora-15/
Related
I install ocrmypdf on Centos 7.6 that use the way "snapd install ocrmypdf". I have successfully installed completely. However, I execute the command "ocrmypdf input.pdf output.pdf" and always say "InputFileError, input.pdf cannot be found". How can I solve it?
Thanks!
I tried installing MongoDB Compass but got Segmentation fault core dump.
Installed an earlier version which got me up and running.
(1) wget https://downloads.mongodb.com/compass/mongodb-compass-1.14.1.x86_64.rpm
(2) sudo dnf install mongodb-compass-1.14.1.x86_64.rpm
(2.5) yes to all
(3) mongodb-compass
So this is not a question as much it is a tip for you guys.
I'd be happy if anyone could explain to me why I got seg fault that be great.
Actually It's because of an error from mongo compass installation, for fedora 29 & 30 works the version 14.5.1
You can install it with the next steps:
su
cd /tmp
wget https://downloads.mongodb.com/compass/mongodb-compass-1.14.5.x86_64.rpm
dnf install ./mongodb-compass-1.14.5.x86_64.rpm
mongodb-compass
I have installed php with "--with-iconv" but I dont seem to see Iconv being enabled in the phpinfo()?
How can this be resolved?
Centos 6.8
EasyApache4
PHP7.0
I have solved the problem by installing required modules using command line
yum install ea-php70-php-fileinfo
When I try to install Marklogic 8.0 (MarkLogic-8.0-2.x86_64.rpm) on CentOS6.6 it fails with following error:
error: Failed dependencies:
libc.so.6(GLIBC_2.11) is needed by MarkLogic-8.0-2.x86_64
I checked installed package of glibc and found that GLIB_2.12 is installed.
I tried erasing GLIBC_2.12, but Cent OS doesn't allow because it has dependencies.
I would appreciate if somebody help me how to install Marklogic 8.0 on CentOS6.6 keeping glibc 2.12 or how to downgrade glib version on CentOs
I haven't tested myself with CentOS 6.6, but am running CentOS 6.5 a lot. Did you try running this before the RPM?
yum -y install glibc.i686 gdb.x86_64 redhat-lsb.x86_64
See also Install Marklogic centos virtualbox vm
HTH!
To add to this: you're seeing this message when you attempt to install because a dependent library is unavailable; in the case of this particular message, if you run this beforehand:
yum install glibc.i686
You should get past that particular issue.
I am using Red Hat Linux installed on VMWare ESXi.
I am using putty to access the machine.
I want to install xyz.noarch.rpm package on RHEL system.
When I try the command
rpm -ivh xyz.noarch.rpm
I get an error package already installed.
When I verify the same by using the rpm -q xyz.noarch.rpm.
I get response as package xyz.noarch.rpm is not installed.
I also tried with the uninstalling the same by using the command as rpm -ev xyz.noarch.rpm the also I get the same response as package xyz.noarch.rpm is not installed.
Can anybody help me to sort out the issue?
The file is named xyz.noarch.rpm, but in the database it's just xyz. So try rpm -qi xyz.
i faced a similar issue and found that both installation and removal (erase) was not working for a rpm package that i installed. i tried using
rpm -e --allmatches <package-name>
more info at : http://www.redhat.com/archives/rpm-list/2002-March/msg00138.html