Re: xcdroast problem

2006-02-27 Thread andy


On Mon, 27 Feb 2006, Kevin Oberman wrote:

> > Date: Mon, 27 Feb 2006 16:02:33 -0500 (EST)
> > From: [EMAIL PROTECTED]
> > Sender: [EMAIL PROTECTED]
> >
> >
> >
> > On Mon, 27 Feb 2006, Scott T. Hildreth wrote:
> >
> > > You must have upgraded your system to 6.X, so you need to recompile
> > > xcdroast  against the new libraries.
> > >
> > >   'portupgrade -f xcdroast'
> > >
> > > ..will work for you.
> > >
> > >
> > >
> > > On Mon, 2006-02-27 at 11:12 -0500, [EMAIL PROTECTED] wrote:
> > > > I have been using xcdroast to burn DVDs without a problem.  recently,
> > > > however, I have been unable to burn DVDs.  I think I found the problem:
> > > >
> > > > # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> > > > /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> > > > "cdrecord.prodvd"
> > > >
> > > > So, it seems that libcam.so.2 is missing.  How can I install it?
> > > >
> > > > TIA
> > > > ___
> > > > [EMAIL PROTECTED] mailing list
> > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> > > > To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> > >
> > Thanks for your reply, I tried the command as suggested.  However, still
> > no dvd capabilities:
> >
> > # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> > /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> > "cdrecord.prodvd"
> >
> > Do you know what program installs libcam.so.2, maybe I need to portupgrade
> > that as well?  How do you determine which program uses libcam.so.2?
>
> libcam.so is a part of the base OS.
>
> libcam.so.2 was the version present in FreeBSD V4. V6 has
> libcam.so.3. Its sources are in /usr/src/lib/libcam and the library
> should be in /usr/lib/libcam.so. In V4, it's really there. In V6, it's
> in /lib with a symlink from /usr/lib.
>
> If you built xcdroast after the upgrade, it should be linked against
> libcam.so.3, not .2. If you install compat5x and compat4x ports, you
> should get a copy of the .2 version in /usr/local/lib/compat.
>


Ken:

Thanks alot, that was the magic I needed.  So, for anyone else who may be
having this or similar problems, you need to install compat 4x and 5x.
I'm not sure if you need both, but I installed both and it works.

BTW: Ken how did you know this, is it something i should have known from
the documentation?

Andy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: xcdroast problem

2006-02-27 Thread Kevin Oberman
> Date: Mon, 27 Feb 2006 16:02:33 -0500 (EST)
> From: [EMAIL PROTECTED]
> Sender: [EMAIL PROTECTED]
> 
> 
> 
> On Mon, 27 Feb 2006, Scott T. Hildreth wrote:
> 
> > You must have upgraded your system to 6.X, so you need to recompile
> > xcdroast  against the new libraries.
> >
> >   'portupgrade -f xcdroast'
> >
> > ..will work for you.
> >
> >
> >
> > On Mon, 2006-02-27 at 11:12 -0500, [EMAIL PROTECTED] wrote:
> > > I have been using xcdroast to burn DVDs without a problem.  recently,
> > > however, I have been unable to burn DVDs.  I think I found the problem:
> > >
> > > # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> > > /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> > > "cdrecord.prodvd"
> > >
> > > So, it seems that libcam.so.2 is missing.  How can I install it?
> > >
> > > TIA
> > > ___
> > > [EMAIL PROTECTED] mailing list
> > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> > > To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> >
> Thanks for your reply, I tried the command as suggested.  However, still
> no dvd capabilities:
> 
> # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> "cdrecord.prodvd"
> 
> Do you know what program installs libcam.so.2, maybe I need to portupgrade
> that as well?  How do you determine which program uses libcam.so.2?

libcam.so is a part of the base OS. 

libcam.so.2 was the version present in FreeBSD V4. V6 has
libcam.so.3. Its sources are in /usr/src/lib/libcam and the library
should be in /usr/lib/libcam.so. In V4, it's really there. In V6, it's
in /lib with a symlink from /usr/lib.

If you built xcdroast after the upgrade, it should be linked against
libcam.so.3, not .2. If you install compat5x and compat4x ports, you
should get a copy of the .2 version in /usr/local/lib/compat.
-- 
R. Kevin Oberman, Network Engineer
Energy Sciences Network (ESnet)
Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
E-mail: [EMAIL PROTECTED]   Phone: +1 510 486-8634
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: xcdroast problem

2006-02-27 Thread andy


On Mon, 27 Feb 2006, Scott T. Hildreth wrote:

> You must have upgraded your system to 6.X, so you need to recompile
> xcdroast  against the new libraries.
>
>   'portupgrade -f xcdroast'
>
> ..will work for you.
>
>
>
> On Mon, 2006-02-27 at 11:12 -0500, [EMAIL PROTECTED] wrote:
> > I have been using xcdroast to burn DVDs without a problem.  recently,
> > however, I have been unable to burn DVDs.  I think I found the problem:
> >
> > # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> > /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> > "cdrecord.prodvd"
> >
> > So, it seems that libcam.so.2 is missing.  How can I install it?
> >
> > TIA
> > ___
> > [EMAIL PROTECTED] mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> > To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>
Thanks for your reply, I tried the command as suggested.  However, still
no dvd capabilities:

# /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
/libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
"cdrecord.prodvd"

Do you know what program installs libcam.so.2, maybe I need to portupgrade
that as well?  How do you determine which program uses libcam.so.2?

Thanks


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: xcdroast problem

2006-02-27 Thread Tofik Suleymanov

[EMAIL PROTECTED] wrote:

I have been using xcdroast to burn DVDs without a problem.  recently,
however, I have been unable to burn DVDs.  I think I found the problem:

# /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
/libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
"cdrecord.prodvd"

So, it seems that libcam.so.2 is missing.  How can I install it?

TIA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


What changes were made to your system recently ? If you describe them it 
will be much more helpfull.



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: xcdroast problem

2006-02-27 Thread Scott T. Hildreth
You must have upgraded your system to 6.X, so you need to recompile
xcdroast  against the new libraries. 

  'portupgrade -f xcdroast'

..will work for you.



On Mon, 2006-02-27 at 11:12 -0500, [EMAIL PROTECTED] wrote:
> I have been using xcdroast to burn DVDs without a problem.  recently,
> however, I have been unable to burn DVDs.  I think I found the problem:
> 
> # /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
> /libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
> "cdrecord.prodvd"
> 
> So, it seems that libcam.so.2 is missing.  How can I install it?
> 
> TIA
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
-- 
Scott T. Hildreth <[EMAIL PROTECTED]>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


xcdroast problem

2006-02-27 Thread andy
I have been using xcdroast to burn DVDs without a problem.  recently,
however, I have been unable to burn DVDs.  I think I found the problem:

# /usr/X11R6/lib/xcdroast-0.98/bin/cdrecord.prodvd -version
/libexec/ld-elf.so.1: Shared object "libcam.so.2" not found, required by
"cdrecord.prodvd"

So, it seems that libcam.so.2 is missing.  How can I install it?

TIA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


cdda2wav and xcdroast problem

2002-10-05 Thread James McNaughton

The problem shows when using xcdroast or cdda2wav as a normal
user. The process quits with an error regarding permissions:

/  /  /  0%Fatal error:  did not drop root privilege.
1/ 2/ 1/  0   0%child reader sem request failed

W Child exited with 1

Versions:

cdrtools-1.11.a28 
xcdroast-0.98.a.10 

This happens in xcdroast or using cdda2wav from the CLI.

Anyone know what's going on?

TIA



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message