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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
01-29-2010, 07:53 AM
|
#1
|
|
LQ Newbie
Registered: Jan 2010
Posts: 2
Rep:
|
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!!
|
|
|
|
01-29-2010, 08:37 AM
|
#2
|
|
Guru
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 5,644
|
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).
|
|
|
|
01-29-2010, 10:23 AM
|
#3
|
|
LQ Newbie
Registered: Jan 2010
Posts: 2
Original Poster
Rep:
|
Quote:
Originally Posted by jlightner
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.
|
|
|
|
09-02-2010, 01:09 PM
|
#4
|
|
LQ Newbie
Registered: Sep 2010
Posts: 1
Rep:
|
Quote:
Originally Posted by lfc55
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!
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 11:33 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|