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 - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-02-2009, 09:16 AM   #1
Thix
LQ Newbie
 
Registered: Aug 2009
Location: Caxias do Sul, Brazil
Distribution: Slackware 12.2
Posts: 9

Rep: Reputation: 0
Question libmp3lame.so.0 in SLACKWARE 12.2


I'm a SLACKWARE 12.2 user. I've installed Cinelerra but it needs the libmp3lame.so.0 in order to run. I've already downloaded that library, but I don't how to get it installed. This is the message I get from my terminal:

cinelerra: error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No such file or directory
 
Old 08-02-2009, 09:35 AM   #2
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
http://bogdan.org.ua/2007/06/30/libm...-lame-397.html - you need to install Lame.
 
Old 08-02-2009, 09:45 AM   #3
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
There's a SlackBuild for lame:
http://slackbuilds.org/repository/12.2/libraries/lame/
Read the Howto, or get sbopkg to make SlackBuilding easier & quicker:
http://www.sbopkg.org/
 
Old 08-12-2009, 10:23 AM   #4
Thix
LQ Newbie
 
Registered: Aug 2009
Location: Caxias do Sul, Brazil
Distribution: Slackware 12.2
Posts: 9

Original Poster
Rep: Reputation: 0
Post

Ok, I've installed lame, and some other pkgs I found out that were missing. Yet there's still some pkgs to be installed. Unfortunatelly, I couldn't find half of them anywhere yet. Do you lot have any idea where to get them from?

ldd /usr/bin/cinelerra

libfaad.so.0 => not found
libfaac.so.0 => not found
libx264.so.56 => not found
liba52.so.0 => not found
libIlmImf.so.6 => not found
libImath.so.6 => not found
libHalf.so.6 => not found
libIlmThread.so.6 => not found
libIex.so.6 => not found
libsndfile.so.1 => not found
libFLAC.so.7 => not found
libavc1394.so.0 => not found
librom1394.so.0 => not found
libdv.so.4 => not found
libmjpegutils-1.9.so.0 => not found

And why I couldn't install the following ones?

# cd libiec61883
root@tgklohn:/home/tklohn/Drivers/Undone/libiec61883# ./configure
bash: ./configure: File or directory not found
root@tgklohn:/home/tklohn/Drivers/Undone/libiec61883# make
make: *** No indicated target and no make file found. Stop.

# cd libraw1394
root@tgklohn:/home/tklohn/Drivers/Undone/libraw1394# ./configure
bash: ./configure: File or directory not found
root@tgklohn:/home/tklohn/Drivers/Undone/libraw1394# make
make: *** No indicated target and no make file found. Stop.
root@tgklohn:/home/tklohn/Drivers/Undone/libraw1394#

Last edited by Thix; 08-12-2009 at 11:06 AM.
 
Old 08-12-2009, 10:43 AM   #5
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,645

Rep: Reputation: 146Reputation: 146
For a start, install some packages from http://www.slackbuilds.org. I am not sure about special order, but such should be stated on the site.

libsndfile
faad2
faac
a52dec
x264
ilmbase
mjpegtools
libavc1394 (for libavc and librom)
libdv

As you see in most cases guessing the name of the package you need is not that hard. The search function on www.slackbuilds.org takes also incomplete packages names and you don't need wildcards - "mjpeg" as search term leads you to mjpegtools for example.
 
Old 08-12-2009, 12:19 PM   #6
Thix
LQ Newbie
 
Registered: Aug 2009
Location: Caxias do Sul, Brazil
Distribution: Slackware 12.2
Posts: 9

Original Poster
Rep: Reputation: 0
Thumbs up

Thanks very much,Tito! Nevertheless, I still haven't figured out why my ./configure command doens't work. I read all the readable files within the pkg I want to install but there's nothing on how to install it.

Take a look, for example, at the attempt of installation of this pkg for Cinelerra:

root@tgklohn:/home/tklohn/Desktop# tar -zxvf mjpegtools.tar.gz
mjpegtools/
mjpegtools/mjpegtools.info
mjpegtools/README
mjpegtools/mjpegtools.SlackBuild
mjpegtools/slack-desc
root@tgklohn:/home/tklohn/Desktop# cd mjpegtools
root@tgklohn:/home/tklohn/Desktop/mjpegtools# ./configure
bash: ./configure: File or directory not found
root@tgklohn:/home/tklohn/Desktop/mjpegtools#
 
Old 08-12-2009, 12:40 PM   #7
marrowsuck
Member
 
Registered: Sep 2006
Posts: 202

Rep: Reputation: 89
With slackbuild-scripts you don't run ./configure yourself. You just execute programname.SlackBuild (in your example mjpegtools.SlackBuild) and be sure to download the source of your desired program and not just the SlackBuild-script.
The usage of slackbuild-scripts is explained here:
http://www.slackbuilds.org/howto/

greets
m.
 
Old 08-12-2009, 04:17 PM   #8
akiku
Member
 
Registered: Jun 2009
Distribution: Slackware
Posts: 62

Rep: Reputation: 17
Quote:
Originally Posted by Thix View Post
Thanks very much,Tito! Nevertheless, I still haven't figured out why my ./configure command doens't work. I read all the readable files within the pkg I want to install but there's nothing on how to install it.

Take a look, for example, at the attempt of installation of this pkg for Cinelerra:

root@tgklohn:/home/tklohn/Desktop# tar -zxvf mjpegtools.tar.gz
mjpegtools/
mjpegtools/mjpegtools.info
mjpegtools/README
mjpegtools/mjpegtools.SlackBuild
mjpegtools/slack-desc
root@tgklohn:/home/tklohn/Desktop# cd mjpegtools
root@tgklohn:/home/tklohn/Desktop/mjpegtools# ./configure
bash: ./configure: File or directory not found
root@tgklohn:/home/tklohn/Desktop/mjpegtools#
You also need to download the source tarball (in this case, mjpegtools-1.9.0.tar.gz) into the mjpegtools directory.
Abraço.
 
Old 08-12-2009, 10:18 PM   #9
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
You're well on your way to a disaster with your Frankenstein linux installation that used to be Slackware.
You're trying to mix binary packages (with apparently undocumented dependencies) from one place with locally compiled dependencies and self-compiled binary packages from SlackBuilds.org and probably binary packages from other places, and it's only a matter of time before you really screw the pooch.

If you install package A from somesite.com, then somesite.com had better document all of package A's dependencies AND provide them, or else you should RUN away from somesite.com - if not, they're going to screw your system sooner or later.
 
  


Reply

Tags
cinelerra, slackware



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
libmp3lame how to? glore2002 Slackware 2 06-04-2008 12:00 PM
libmp3lame.so where do I get it please for Audacity graeam Linux - General 1 08-28-2007 02:37 AM
libmp3lame.so.0 is missing sripathi_venky Linux - Software 3 09-04-2006 12:48 PM
libmp3lame.so.0 where?. linux123456 Linux - Software 18 12-02-2004 12:42 AM
Mplayer libmp3lame NewbGhostShells Linux - Software 7 01-16-2004 04:53 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:59 AM.

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