Robert Elz | 1 Aug 2002 07:29
Picon

Re: experimental ftpd on ftp{,2}.fr.netbsd.org

    Date:        Fri, 26 Jul 2002 12:16:45 +0200
    From:        Manuel Bouyer <bouyer <at> antioche.lip6.fr>
    Message-ID:  <20020726121645.A18766 <at> antioche.lip6.fr>

  | (the primary reason is that some client, under some circunstances, issue
  | SIZE comands in ascii mode, which on iso image takes a while to complete.
  | The client time out, reconnects and redo a SIZE. After some hours there
  | are dozens of ftpd reading the same file as fast as they can, to compute
  | the size after NL/CR-NL translation).

The server is allowed to just say "sorry, that file is too big" if it
sees a file that is huge, and computing the SIZE result would take too
long (though having the server reject attempts to do bogus transfers
also sounds like a good idea, provided the test of "bogus" is reliable
enough).

kre

Manuel Bouyer | 1 Aug 2002 17:04
Picon

Re: "generic HBA error" on 1.6_BETA4

On Fri, Jul 26, 2002 at 01:19:22PM -0700, Johnny Lam wrote:
> The errors do indeed come from here.  I've attached a full dmesg from a
> 1.6_BETA4 kernel built from sources from a few days ago.

Sorry for not looking at this sooner. It would be nice if you could print
the value of hscb->status at this point. This would give more infos about
why the request sense failed.

--
Manuel Bouyer, LIP6, Universite Paris VI.           Manuel.Bouyer <at> lip6.fr
--

Wojciech Puchar | 1 Aug 2002 17:12

non /usr/lib libraries

how to link  program that needs .so library from /usr/pkg/lib (readline
that case) so it will know this directory runtime?

when i do

cc -o program program.o -L/usr/pkg/lib -lreadline -lcurses

it then needs to be run with

LD_LIBRARY_PATH=/usr/pkg/lib ./program

Jan Schaumann | 1 Aug 2002 17:14
Picon

DVR / TV cards

Hi all,

Does NetBSD support any TV cards?  In particular, any of the ones
mentioned in this article:
http://www.nytimes.com/2002/08/01/technology/circuits/01BASI.html
(or other with similar functionality) ?

-Jan

--

-- 
"Ford," he said, "you're turning into a penguin. Stop it."

Daniel Mercer | 1 Aug 2002 17:22

Re: non /usr/lib libraries


Hi there,

You need to compile in the runtime path so that the
linker can find the libraries to link to:

In this case:

cc -o program program.o -L/usr/pkg/lib -R/usr/pkg/lib -lreadline -lcurses

Adding paths to shared library directories can be
done by making entries in /etc/ld.so.conf but, I
think that this isn't considered the Right Thing.

Dan M.

On Thursday, August 1, 2002, at 08:12  AM, Wojciech Puchar wrote:

> how to link  program that needs .so library from /usr/pkg/lib (readline
> that case) so it will know this directory runtime?
>
> when i do
>
> cc -o program program.o -L/usr/pkg/lib -lreadline -lcurses
>
> it then needs to be run with
>
> LD_LIBRARY_PATH=/usr/pkg/lib ./program
>
>
(Continue reading)

Nick Hudson | 1 Aug 2002 17:23
Picon

Re: non /usr/lib libraries

On Thursday 01 August 2002 4:12 pm, Wojciech Puchar wrote:
> how to link  program that needs .so library from /usr/pkg/lib (readline
> that case) so it will know this directory runtime?
> 
> when i do
> 
> cc -o program program.o -L/usr/pkg/lib -lreadline -lcurses

Try adding -Wl,-R/usr/pkg/lib

Nick

Herb Peyerl | 1 Aug 2002 17:28

Re: DVR / TV cards

Jan Schaumann <jschauma <at> netbsd.org>  wrote:
 > Does NetBSD support any TV cards?  In particular, any of the ones
 > mentioned in this article:
 > http://www.nytimes.com/2002/08/01/technology/circuits/01BASI.html
 > (or other with similar functionality) ?

I have one of these and use fxtv as the front-end. Works ok.

bktr0 at pci2 dev 11 function 0
bktr0: interrupting at irq 9
bktr0: Hauppauge Model 38101 B210
bktr0: Hauppauge WinCast/TV, Philips NTSC tuner.
Brooktree product 0x0878 (miscellaneous multimedia, revision 0x02) at pci2 dev 11 function
 1 not configured

Jan Schaumann | 1 Aug 2002 17:33
Picon

Re: DVR / TV cards

Herb Peyerl <hpeyerl <at> beer.org> wrote:
> Jan Schaumann <jschauma <at> netbsd.org>  wrote:
>  > Does NetBSD support any TV cards?  In particular, any of the ones
>  > mentioned in this article:
>  > http://www.nytimes.com/2002/08/01/technology/circuits/01BASI.html
>  > (or other with similar functionality) ?
> 
> I have one of these and use fxtv as the front-end. Works ok.
> 
> bktr0: Hauppauge Model 38101 B210
> bktr0: Hauppauge WinCast/TV, Philips NTSC tuner.

Cool - does this one have a video-out?

-Jan

--

-- 
DON'T PANIC!

Marton Fabo | 1 Aug 2002 17:30
Picon

Re: non /usr/lib libraries


>Adding paths to shared library directories can be
>done by making entries in /etc/ld.so.conf but, I
>think that this isn't considered the Right Thing.

Forgive my ignorance, but why isn't having /usr/pkg/lib in the system 
library path the Right Thing?...

thx
mortee

Wojciech Puchar | 1 Aug 2002 17:34

Re: non /usr/lib libraries

>
> >Adding paths to shared library directories can be
> >done by making entries in /etc/ld.so.conf but, I
> >think that this isn't considered the Right Thing.
>
> Forgive my ignorance, but why isn't having /usr/pkg/lib in the system
> library path the Right Thing?...
>
i don't have this in ld.so.conf and all software works fine so they must
be linked some way


Gmane