LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-29-2010, 07:53 AM   #1
lfc55
LQ Newbie
 
Registered: Jan 2010
Posts: 2

Rep: Reputation: 0
Question YUM install of tora-2.1.0-1.fc12.remi.i586.rpm not working.


Help I'm try to install: tora-2.1.0-1.fc12.remi.i586.rpm with yum but I keep getting depsolving problems.

I'm running Fedora 12. Here are some of the steps I've taken as per website:"http://posix.in-egypt.net/node/73"

yum -y install qt-devel qscintilla-devel qscintilla (OK, it worked)

then install the oracle instant client

yum -y localinstall oracle-instantclient11.2-basic-11.2.0.1.0-1.i386.rpm --nogpgcheck (OK, it worked)

next, add the LD_LIBRARY_PATH to your $USER profile

echo "export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client/lib" >> ~/.bash_profile

and finally install tora itsel

yum -y localinstall --nogpgcheck tora-2.1.0-1.fc12.remi.i586.rpm (NO GO???)


yum localinstall tora-2.1.0-1.fc12.remi.i586.rpm
(here's the output)
Loaded plugins: presto, refresh-packagekit
Setting up Local Package Process
Cannot open file: resolvedep. Skipping.
Examining tora-2.1.0-1.fc12.remi.i586.rpm: tora-2.1.0-1.fc12.remi.i586
Marking tora-2.1.0-1.fc12.remi.i586.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package tora.i586 0:2.1.0-1.fc12.remi set to be updated
--> Processing Dependency: libclntsh.so.11.1 for package: tora-2.1.0-1.fc12.remi.i586
--> Processing Dependency: libocci.so.11.1 for package: tora-2.1.0-1.fc12.remi.i586
--> Processing Dependency: libpq.so.5 for package: tora-2.1.0-1.fc12.remi.i586
--> Processing Dependency: qt-mysql for package: tora-2.1.0-1.fc12.remi.i586
--> Processing Dependency: qt-postgresql for package: tora-2.1.0-1.fc12.remi.i586
--> Running transaction check
---> Package postgresql-libs.i686 0:8.4.2-1.fc12 set to be updated
---> Package qt-mysql.i686 1:4.5.3-9.fc12 set to be updated
---> Package qt-postgresql.i686 1:4.5.3-9.fc12 set to be updated
---> Package tora.i586 0:2.1.0-1.fc12.remi set to be updated
--> Processing Dependency: libclntsh.so.11.1 for package: tora-2.1.0-1.fc12.remi.i586
--> Processing Dependency: libocci.so.11.1 for package: tora-2.1.0-1.fc12.remi.i586
--> Finished Dependency Resolution
tora-2.1.0-1.fc12.remi.i586 from /tora-2.1.0-1.fc12.remi.i586 has depsolving problems
--> Missing Dependency: libclntsh.so.11.1 is needed by package tora-2.1.0-1.fc12.remi.i586 (/tora-2.1.0-1.fc12.remi.i586)
tora-2.1.0-1.fc12.remi.i586 from /tora-2.1.0-1.fc12.remi.i586 has depsolving problems
--> Missing Dependency: libocci.so.11.1 is needed by package tora-2.1.0-1.fc12.remi.i586 (/tora-2.1.0-1.fc12.remi.i586)
Error: Missing Dependency: libocci.so.11.1 is needed by package tora-2.1.0-1.fc12.remi.i586 (/tora-2.1.0-1.fc12.remi.i586)
Error: Missing Dependency: libclntsh.so.11.1 is needed by package tora-2.1.0-1.fc12.remi.i586 (/tora-2.1.0-1.fc12.remi.i586)
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest

I do have "libclntsh.so.11.1" installed:
find / -name libclntsh.so.11.1* -type f
/usr/lib/oracle/11.2/client/lib/libocci.so.11.1

I have also tried another RPM:
yum localinstall resolvedep tora-2.1.0-1.fc11.i386.rpm
but the output shows "libssl.so.8" is missing.

I also tried clear everything:
yum clean all
rpm --rebuilddb
yum update


What am I missing???? Thanks for any help in advance!!
 
Old 01-29-2010, 08:37 AM   #2
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
After you updated the bash_profile did you logout and log back in to make it take effect? This file is only loaded into your environment at login or switch users (su - <user>) or if you source it after the fact.
To source it just run ". ./.bash_profile". Notice the space between the first two dots. Also note that the ./ means "this directory" so you have to be sitting in the directory where you updated .bash_profile (which should have been the user's home directory).
 
Old 01-29-2010, 10:23 AM   #3
lfc55
LQ Newbie
 
Registered: Jan 2010
Posts: 2

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by jlightner View Post
After you updated the bash_profile did you logout and log back in to make it take effect? This file is only loaded into your environment at login or switch users (su - <user>) or if you source it after the fact.
To source it just run ". ./.bash_profile". Notice the space between the first two dots. Also note that the ./ means "this directory" so you have to be sitting in the directory where you updated .bash_profile (which should have been the user's home directory).

jlightner,

Yes I reloaded my shell with #source .bash_profile
and did #env to make sure it was updated.

thanks for the reply.
 
Old 09-02-2010, 01:09 PM   #4
cestes
LQ Newbie
 
Registered: Sep 2010
Posts: 1

Rep: Reputation: 0
Quote:
Originally Posted by lfc55 View Post
jlightner,

Yes I reloaded my shell with #source .bash_profile
and did #env to make sure it was updated.

thanks for the reply.
Did you ever get tora installed properly?

I finally just did a:

# rpm -Uvh tora... --nodeps

and it installed, but I know that's bad practice!
 
  


Reply

Tags
yum


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
yum update error+fc12 srinivasmiriyalu Linux - Newbie 5 01-16-2010 10:09 AM
how to install jre-6u11-linux-i586-rpm.bin sparulcse Linux - Software 1 12-27-2008 02:47 AM
cannot repair jre-6u2-linux-i586-rpm install tjcarol Linux - Software 1 09-03-2007 06:50 PM
Unable to install java on Fedora Core 6, jre-6-linux-i586-rpm.bin dragoncorp.org Linux - Software 1 04-09-2007 10:33 PM
How to install kernel-source-2.4.22-10mdk.i586.rpm jazzeduppenguin Mandriva 2 03-10-2004 05:52 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:54 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration