Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello i am trying to install graphictrace202 on my Ubuntu but i faced some problems.
i have Ubuntu 16.04 and 64 bits. when i try ./trgraph
the error : ./trgraph: error while loading shared libraries: libXt.so.6: cannot open shared object file: No such file or directory

any help?

What I have tried:

i tried everything in Google like (ldconfig -p|grep libXt.so.6)
Posted
Updated 4-Oct-16 7:35am
Comments
Richard MacCutchan 4-Oct-16 12:59pm    
Where is this library located on your system?
Member 11436383 4-Oct-16 13:32pm    
how i can know?
i think the problems because the traceghraphic202 is a 32 bits but still i can run it on 64 bits !
Richard MacCutchan 4-Oct-16 13:39pm    
how i can know?
Well it is your system, so you must know where your files are stored.
Member 11436383 4-Oct-16 13:50pm    
i tried sudo apt install libxt6:i38
but i am facing a new errors :Segmentation fault (core dumped) !!

1 solution

It seems that the library is not installed on your system. For the package description see Ubuntu – Details of package libxt6 in xenial[^].

To check if the library is installed execute
dpkg -l | grep "libxt"

To install it execute
sudo apt install libxt6
 
Share this answer
 
Comments
Member 11436383 4-Oct-16 13:46pm    
i tried sudo apt install libxt6:i38
but i am facing a new errors :Segmentation fault (core dumped) !!
Jochen Arndt 4-Oct-16 14:24pm    
So the application is a 32-bit application?
Then you must setup your Ubuntu to run 32-bit applications.

But it is always better to build the application for the used architecture.

What application is graphictrace202? A Google search did not found anything.
Mybe you can contact the author or check if there is some kind of support forum.

Are you building it on your system or are you using a binary?
Member 11436383 4-Oct-16 14:32pm    
i have a project in network simulator (ns2) so i create a file .tr .for analyzing the result i want to use tracegraph202 to load this file and generate a graph. this app is 32-bits.
Jochen Arndt 4-Oct-16 14:44pm    
So you are using a pre-build 32-bit binary that uses dynamically linked libraries.
That can always make problems.

The best solution is to build the application on your system. If that is not possible you should contact the author to get a binary build for your Ubuntu version (or known to run on it).

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900