TWS under RH-64 Linux

Quote from def:

if you don't have luck send me an e-mail and I'll figure out exactly what's installed on my system to figure out where your problem lies. I'd rate myself pretty knowledgable on Unix but I've got a long way to go on Linux though.
Dave,

See post right above this one...If you want me to run some find commands, I can do that. Otherwise, I will PM you my email.

nitro
 
OK, a couple of other ideas.

1. You can change the default look and feel for java on the command line. Make it something other than gtk and you might be able to get started.

2. Run under strace. Do a man strace for more info. Towards the end of the output you should be able to find the file name of the missing shared lib. Google for that and you should be able to find what you need.
 
Thanks,

I will give that a try.

nitro
Quote from dcraig:

OK, a couple of other ideas.

1. You can change the default look and feel for java on the command line. Make it something other than gtk and you might be able to get started.

2. Run under strace. Do a man strace for more info. Towards the end of the output you should be able to find the file name of the missing shared lib. Google for that and you should be able to find what you need.
 
Hi nitro,

I can't really say anything definite about 64-bit Linux (AMD). TWS runs fine with me on 32-bit Linux.

I know though that there has been considerable difficulty with getting Trolltech's QT 3.3.4 compiled under 64-bit Linux. (This info dates back from early February). Maybe you should try to hold off a bit on 64-bits. I think this is true for M$ as well. Things will fall in place if you give it a couple of more months.
If you ask me, 32bits or 64bits will not make much difference, if any, for TWS.

Be good,
nononsense
 
Hi nononsense,

Interesting tip about QT. I will keep that in mind.

nitro
Quote from nononsense:

Hi nitro,

I can't really say anything definite about 64-bit Linux (AMD). TWS runs fine with me on 32-bit Linux.

I know though that there has been considerable difficulty with getting Trolltech's QT 3.3.4 compiled under 64-bit Linux. (This info dates back from early February). Maybe you should try to hold off a bit on 64-bits. I think this is true for M$ as well. Things will fall in place if you give it a couple of more months.
If you ask me, 32bits or 64bits will not make much difference, if any, for TWS.

Be good,
nononsense
 
Quote from nitro:

Does anyone know if IBs TWS will run under Linux?

I just downloaded the jar files (weird tho, looks like the mac and unix file is the same) and when I tried to run it, I got an exception:

"GtkMain": java.lang.UnsatisfiedLinkError: gktInit

nitro

Nitro,

Did you ever discover the solution to the
"GtkMain": java.lang.UnsatisfiedLinkError: gktInit error?

I am getting the same message when I try to run a java application, and it looks like java and gtk are installed correctly, and an strace didn't give me the name of the missing file.

Thanks,
Trev
 
Quote from Trev:

Nitro,

Did you ever discover the solution to the
"GtkMain": java.lang.UnsatisfiedLinkError: gktInit error?

I am getting the same message when I try to run a java application, and it looks like java and gtk are installed correctly, and an strace didn't give me the name of the missing file.

Thanks,
Trev

Just a guess ...

Are you running the 'right' java ? Try putting the full path of the Sun jdk java binary at the front of the command line eg

/home/myhome/jdk1.5.0_06/bin/java -cp jts.jar:jcommon-1.0.0.jar:jfreechart-1.0.0.jar:jhall.jar:other.jar:rss.jar jclient.LoginFrame .

where /home/myhome/jdk1.5.0_06 is the installation directory for the jdk.

To find out which java you are running by default type

which java
 
Quote from dcraig:

Just a guess ...

Are you running the 'right' java ? Try putting the full path of the Sun jdk java binary at the front of the command line eg

/home/myhome/jdk1.5.0_06/bin/java -cp jts.jar:jcommon-1.0.0.jar:jfreechart-1.0.0.jar:jhall.jar:other.jar:rss.jar jclient.LoginFrame .

where /home/myhome/jdk1.5.0_06 is the installation directory for the jdk.

To find out which java you are running by default type

which java


It looks like I was pointing to the wrong version of java. I had a different version getting picked up in my path first, I corrected the problem, and now it works fine!

Best,
Trev
 
Back
Top