tracegraph202 is a very old and obsolete tool and is incompatible to Linux still my University thought that it was a good idea to ask the students to install that. I tried installing that from here, here and here none works in my end. Please help
-
When in doubt, grab an old ISO and build a VM around Ubuntu 8.04. Just be advised that it will be difficult to track down working repositories for some of the older code.– user1091774Commented Dec 16, 2020 at 5:25
-
The solution maybe provided faster if you share the installation package of tracegraph (tracegraph202.linux.tar.gz or whatever).– N0rbertCommented Dec 16, 2020 at 6:06
-
hey I installed the binary from here– DEBAGNIK KARCommented Dec 21, 2020 at 15:54
Add a comment
|
1 Answer
It is still possible by executing the following commands:
sudo apt-get install libc6:i386 libxext6:i386 libxt6:i386
cd ~/Downloads
wget -c http://archive.ubuntu.com/ubuntu/pool/main/g/glibc/multiarch-support_2.27-3ubuntu1.4_amd64.deb
sudo apt-get install -y ./multiarch-support_2.27-3ubuntu1.4_amd64.deb
wget -c http://ftp.debian.org/debian/pool/main/libx/libxp/libxp6_1.0.2-2_i386.deb
sudo apt-get install -y ./libxp6_1.0.2-2_i386.deb
wget -c https://lahore.comsats.edu.pk/research/groups/CNRC/tracegraph202linux.tar.gz
tar -zxvf tracegraph202linux.tar.gz
cd tracegraph202
wget -c https://lahore.comsats.edu.pk/research/groups/CNRC/mglinstaller.gz
gunzip mglinstaller.gz
chmod +x mglinstaller
./mglinstaller
Then add the LD_LIBRARY_PATH
variable to your ~/.bashrc
file by
echo "export LD_LIBRARY_PATH=/home/$USER/Downloads/tracegraph202/bin/glnx86" >> ~/.bashrc
then
source ~/.bashrc
./trgraph
This will give the following output:
$ ./trgraph Copyright (c) 2001-2005 by Jaroslaw Malek All rights reserved. Author contact: [email protected] Using and copying any version of Trace graph program and its documentation is allowed only for non-commercial purposes provided that the above copyright notice and this permission appear in all copies and any materials related to Trace graph. Commercial use requires a permission from Jaroslaw Malek. Trace graph cannot be distributed, sold, copied or modified without Jaroslaw Malek's permission. Trace graph is provided with no warranty. Jaroslaw Malek is not responsible for any events and results caused by using Trace
and graphical window of the application.
Note: binary distribution was found on https://lahore.comsats.edu.pk/research/groups/CNRC/QuickLinks.aspx .
-
Thank you, kind sir, for explaining this. I am getting the same error that you got. What should be the solution to that? Commented Dec 21, 2020 at 15:43
-
1You have to dig deeper on this topic, I have not used this application before.– N0rbertCommented Dec 21, 2020 at 16:47
-
I changed the answer a bit as I got the solution. If you check if that works for you too. So that I know that it woks for all. Commented Dec 22, 2020 at 7:19
-
1Tested the method and adapted it to be better reproducible.– N0rbertCommented Dec 22, 2020 at 8:48