I tried to do this command on my Ubuntu machine:
yum install db4-devel
However I get an error message telling me that the URL could not be parsed correctly. I guess I have to get db4-devel somehow first, but how do I do this?
I tried to do this command on my Ubuntu machine:
yum install db4-devel
However I get an error message telling me that the URL could not be parsed correctly. I guess I have to get db4-devel somehow first, but how do I do this?
wget https://public-yum.oracle.com/public-yum-ol6.repo -O /etc/yum.repos.d/public-yum-ol6.repo
yum install --nogpgcheck -y db4-devel
If what you want is to get BerkeleyDB to work on Ubuntu, you can solve this installing libdb-dev and libdb++-dev using apt-get:
apt-get install libdb-dev
apt-get install libdb++-dev