LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Missing file/package "-lart_lgpl_2" (https://www.linuxquestions.org/questions/linux-software-2/missing-file-package-lart_lgpl_2-a-71548/)

cbjhawks 07-10-2003 09:21 AM

Missing file/package "-lart_lgpl_2"
 
I'm trying to install a program called CD BakeOven for my burner...the ./configure option appears to work correctly (it tells me congrats now run make)...when I run make it aborts because it cant find a file/package called lart_lgpl_2 which I believe is part of a package called libart_lpgl (along w/libart-lpgl devel). I have checked my system the best I can and have upgraded several packages...no luck. I cant find it anywhere on the web. The file/package is suppose to be in my /usr/bin/ld (no such dir).

I'm running RH9 (KDE only)...any thoughts on where to find this file/package...thanks in advance.

fancypiper 07-10-2003 09:52 AM

Perhaps apt4rpm or Red Carpet could resolve your depencies for you if you can't do it manually.

libart at freshmeat

I find the command line tools easier to use than the gui front ends to burn CDs myself.

# CD burning info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
# Burn an ISO to disk
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast
# Make multisession data CDs
mkisofs -L -l -J -R -A Disc-ID -P Publisher-ID -p Preparer-ID -V Volume-ID /lets.wav.mp3 | cdrecord -v -pad -data -multi fs=8m speed=32 dev=0,0,0 driveropts=burnproof -
# This would be for the second session, an image of the imported files
cdrecord -v -pad -data -multi speed=32 dev=0,0,0 driveropts=burnproof '/tmp/stupid_place.raw'

# Guides to software and installation and uninstallation
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation

# Find software here
The table of equivalents, replacements, analogs of Windows software in Linux
Freshmeat
Sourceforge
rpmfind

# Redhat links
RedHat Linux Manuals
Get your mp3 support here
Maximum RPM
rpmfind
Easier software management: apt4rpm - Red Carpet
RedHat 8.0 Tips & Tricks

# Redhat 7.3 down configuration commands
setup leads to several configuration tools

# Redhat 7.3 up configuration commands
Configure soundcard:
redhat-config-soundcard
Configure X server:
redhat-config-xfree86
Configure network:
redhat-config-network

# Handling NTFS
New Technology FileSystem (NTFS) HOWTOs
Linux NTFS project

r@g 09-27-2003 08:29 PM

I had a similar problem with another package on RH 9 (installing kdiff3).

You need to check that you have the libart_lgpl package installed, and also install the RH package libart_lgpl_devel - this contains the required libraries.

r@g!


All times are GMT -5. The time now is 10:41 PM.