LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
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 10-04-2014, 03:22 PM   #1
VarmintAl
LQ Newbie
 
Registered: Oct 2014
Posts: 7

Rep: Reputation: Disabled
Help finding lib files for Linux Mint 17 64bit


I am trying to run FEA (Finite Element Analysia) LS-DYNA and LS-PrePost software. I get an error that there are missing lib files. Can anyone help me locate these lib files:

libtiff.so.4 => not found
libLSIO653.so.0 => not found
libLSAF653.so.0 => not found
libLSVI653.so.0 => not found
libLSMA653.so.0 => not found
libLSMD653.so.0 => not found
libLSFC653.so.0 => not found
libavformat.so.0 => not found
libavcodec.so.0 => not found
libavutil.so.0 => not found
libswscale.so.0 => not found
libGLEW.so.1.9 => not found
libintlc.so.5 => not found

Thanks for any help. Good Hunting... from Varmint Al
 
Old 10-04-2014, 08:14 PM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
did you read the install instructions from where ever you got the software ?

some of those will be in your OS's standard repos like "libtiff" and "GLEW"
 
Old 10-04-2014, 09:37 PM   #3
VarmintAl
LQ Newbie
 
Registered: Oct 2014
Posts: 7

Original Poster
Rep: Reputation: Disabled
Yes. Followed instructions

Yes, I followed the installation instructions:

Instructions to install and run Lsprepost 4.2 on Linux systems
-------------------------------------------------------------

1. Download the lsprepost-4.2-xxxxx.tgz file, xxxxx is the operating
system name

2. Unzip and untar the lsprepost-4.2-xxxxx.tgz file using the following
command:

tar xvfz lsprepost-4.2-xxxxx.tgz
or
gunzip -c lsprepost-4.2-xxxxx.tgz | tar xvf -

3. A directory lsprepost-4.2-xxxxx will be created, there are 3 files
and 2 sub-directories in this distribution directory:

README.txt - This file
lspp42 - a script to run lsprepost 4.2
lsprepost - the executable of lsprepost 4.2
lib - subdirectory contains the dynamic runtime libraries
resource - subdirectory contains the help file and other resource
files

4. Modify the lspp42 script to set the two environment variables:
LSPP_HELPDIR and LD_LIBRARY_PATH with properly path name,
in the script, set variable DN to the directory name where the
lsprepost 4.2 distribution is.
e.g. DN="/home/pho/lsprepost4.2_ubuntu12"

#!/bin/bash
# modify the following line for your directory name
DN="/home/al/lsprepost4.2_ubuntu12"
export LSPP_HELPDIR=$DN/resource/HelpDocument
export LD_LIBRARY_PATH=$DN/lib:$LD_LIBRARY_PATH
$DN/lsprepost $*

5. Put file lspp42 in a directory that is in your default search path.
My system is: /home/al where I edited the line: DN="/home/al/lsprepost4.2_ubuntu12"
Then I placed the script in the /usr/bin directory and went there and issued the chmod 755 lspp42 command to make it executable.
When I tried to run lspp42 I got the error that it could not find "libtiff.so.4 => not found"

When I issued the sudo ldd lsprepost command it showed the missing lib files.

Good Hunting... from Varmint Al http://www.varmintal.com/coyotel.gif
 
Old 10-04-2014, 09:49 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,321
Blog Entries: 28

Rep: Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141Reputation: 6141
As Mint is based on Ubuntu, this may help.

http://askubuntu.com/questions/45701...not-recognized
 
Old 10-04-2014, 11:48 PM   #5
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
man , this is supporting dead and unsupported operating systems
there is a cent 4 version made this year
a suse10 and a opensuse 11
all unsupported OS's
ftp://ftp.lstc.com/outgoing/lsprepost/4.2/linux64/

and also opensuse 13.1
and cent6

now "File:lsprepost-4.2-ubuntu12.tgz"
might have issues on Mint 17

i would install it on the Long term support LTS ubuntu 12.04
mind you it will be out of support in 2 years

or
have fun with incompatible libraries

or
install the "lsprepost-4.2-centos6.tgz" on CentOS 6.5
----------------------------------------


but as to not finding the files in the
"/home/al/lsprepost4.2_ubuntu12/lib"
folder

you did not export that location

did you edit "lspp42" to match your settings

after you run the script "lspp42" and in the SAME TERMINAL SESSION ( do not close the terminal or you will have to rerun "lspp42" )
run
Code:
echo $LD_LIBRARY_PATH
the folder "/home/al/lsprepost4.2_ubuntu12/lib" should be there

Last edited by John VV; 10-05-2014 at 12:03 AM.
 
Old 04-28-2015, 09:06 AM   #6
VarmintAl
LQ Newbie
 
Registered: Oct 2014
Posts: 7

Original Poster
Rep: Reputation: Disabled
Problem solved.

Linux Mint 17.1 Rebecca had libtiff.so.5 and the LS-PrePost (lsprepost4.2_ubuntu12) was looking for libtiff.so.4. So I installed ubuntu 12.04 on a small hard drive and then installed LS-PrePost. ubuntu had the correct library .4. I copied the libtiff.so.4 and placed it in the correct directory: /lib/x86_64-linux-gnu/
Voila! LS-PrePost works fine on Linux Mint.
http://www.varmintal.net/dome1.png
Good Hunting... from Varmint Al http://www.varmintal.com/coyotel.gif
 
  


Reply



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
Ultimate Linux MINT -Cinnamon- 64bit super_tux Linux Mint 1 09-03-2014 04:39 PM
linux mint 64bit package required to compile 32bit nasm code jdubya Linux - Newbie 10 11-07-2013 11:01 AM
[SOLVED] Finding The Primary and Secondary Nameserver(s?) Linux Mint 13 tfnc99 Linux - Networking 3 11-18-2012 05:08 AM
[SOLVED] Linux Mint Debian - Kernel 3.6.6 - 64bit NotAComputerGuy Linux - Newbie 1 11-16-2012 01:11 PM
audacity unable to locate required lib files present in /usr/lib/ adityavpratap Slackware 4 11-30-2006 06:06 AM

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

All times are GMT -5. The time now is 03:26 PM.

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