A small question on msgrcv(3) semantics

2003-02-17 Thread Ronald F. Guilmette

The man page for msgrcv(3) indicates that any type of message on the
specified message queue may be received by setting the `mtype' field
of the following value/result structure to zero before issuing the
call to msgrcv(3):

 long mtype;/* message type */
 char mtext[1]; /* body of message */

Unfortunately, the man page leaves unspecified whether or not the
`mtype' field is itself treated as a value/result parameter to the
call.

What I mean is:  After a call to msgrcv(3) in which mtype was set to
zero before the call, will mtype sill be set to zero after the call,
or will it receive the mtype value of the message that was received?

(For my purposes, the latter behavior would be most helpful.)

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



Re: gs not found, scripts failing

2003-02-17 Thread Heinrich Rebehn
Per olof Ljungmark wrote:

Heinrich Rebehn wrote:


Per olof Ljungmark wrote:


I'm having problems with scripts involvivng Ghostscript on FreeBSD 
(4.6-4.7).
Specifically, I am implementing a Hylafax solution and most of it 
works but there a two areas that fail:
1. Running the SambaFax (http://www.purpel3.com/sambafax/) utility 
that extracts a fax number from a postscript file

2. Using the faxrcvd script that comes with Hylafax converting 
incoming faxes to pdf's.

In both cases the scripts seems to fail when tiff2ps, ps2pdf etc. are 
being executed.

Running the scripts manually from the shell works.



seems like /usr/local/bin (this is where gs lives) is not in the PATH 
when your scripts are executed. Try to set the PATH env variable in 
the script, i.e.

PATH=/usr/bin:/usr/local/bin
export PATH

(Syntax is for Bourne shell)


Thanks for the advice.

Since my original post I have concluded that the two problems are 
similar but not identical and concentrated on (2.).

 From what I can see all seach paths are added in the script. Also I 
should have added earlier that a pdf file IS produced but with zero byte 
lenght.

This is when the script is called from Hylafax server. Again, when run 
from the command line, faxrcvd works and the pdf is ok.

This has led me to believe that the problem is the location of the 
temporary files used to produce the pdf.

I have tried adding #!/bin/sh -xv but this only works from the command 
line. How can I pipe the debugging output from a scrpt to a file?



You can use 'sh -xv scriptfile 2debugoutput'.

Also you cat put '#!/bin/sh -xv' at the start of your script, so debugging is 
also enabled, if the script is executed as a command. You can have the debug 
output sent to a file with:
exec 2debugoutput

BTW, the zero length pdf file suggests that gs cannot find or open some files 
(different user / persmission?). As a last resort your script could call gs with:
	strace -f -e trace=file -o traceoutput gs

which will show you all file operations gs has attempted.


Heinrich


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


Re: quotas not staying updates

2003-02-17 Thread Alan Batie
On Mon, Feb 17, 2003 at 05:12:19PM +1100, JacobRhoden wrote:
If the options ``userquota'' and/or ``groupquota'' are specified, the
filesystem is automatically processed by the quotacheck(8) command, and
user and/or group disk quotas are enabled with quotaon(8).  By default,
 
 Your /etc/fstab file probably needs to specify the appropriate quota options.

Yes, that's what's *supposed* to happen...

/dev/ad3s1a /home   ufs rw,nosuid,userquota 2   2

but even if I manually enable with quotaon, it has no effect.

I have the option in the kernel too:

options QUOTA   #enable disk quotas

-- 
Alan Batie   __alan.batie.orgMe
alan at batie.org\/www.qrd.org The Triangle
PGPFP DE 3C 29 17 C0 49 7A\  / www.pgpi.com   The Weird Numbers
27 40 A5 3C 37 4A DA 52 B9 \/  spamassassin.taint.org  NO SPAM!



msg19620/pgp0.pgp
Description: PGP signature


SMC 2602W Wireless PCI Card on stable

2003-02-17 Thread Viny
May anyone using a SMC 2602W (PCI Adapter for the 2632W Wireless
PCMCIA card) send me all the relevant lines in his config files (including
the lines in the kernel config file) ?

I've just tried with the following configuration, but it seems to
do nothing :

kernel config file :
device  card
device  pcic0   at isa? irq 0 port 0x3e0 iomem 0xd
device  pcic1   at isa? irq 0 port 0x3e2 iomem 0xd4000 disable
device  wi

/etc/rc.conf
pccard_enable=YES
pccardd_flags=-z -i 15

The card shares the IRQ 15 with an scsi card. I've seen old mail
(Feb 2002) on freebsd-mobile archive which spoke about irq conflicts, but
it seems that /usr/src/sys/dev/wi/if_wi.c have been modified to handle such
cases. And anyway I've tried with all the cards but the video and the 2602
ones out.

Vincent

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



Fw: Creative Audigy soundblaster support

2003-02-17 Thread Alec
Hi again
I sent my code to FreeBSD developers and I believe they're considering it
and going to include changes in next release.
But it takes some time and I know how it's hard to work in silence... :)
So I can provide my ugly, but workable, drivers for everybody; just ask me
via e-mail (i dont have public web resource).

Best regards
Regards,
 Alexander Kurilovich

- Original Message -
From: Alec [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 7:29 PM
Subject: Creative Audigy soundblaster support


 Hi everybody!

 I rewrite SBLive driver included in FreeBSD 4.7 for supporting Creative
 Audigy soundcard.
 It's still not good, but at least I can listen to mp3s on my BSD4.7 via
 Audigy with digital output.
 I consider it could be  helpfull for other guys who have Audigy and have
to
 buy outside drivers, but I dont know what to do.. :)

 Regards,
  Alexander Kurilovich


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



ATI Radeon 9700 Pro

2003-02-17 Thread Nigel Taylor
Hi all

Just wondering has anyone got there ATI Radeon working with XFree86? if 
you have could you please tell how you did it? and if you use the linux 
drivers how did you get them working?

Thank you




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


Re: SecureRPC/NFS, kerberized NFS

2003-02-17 Thread Daniel Bye
On Sun, Feb 16, 2003 at 09:05:49PM +0100, Hartmann, O. wrote:
 
 Hello.
 
 My question is very simple.
 
 Does FreeBSD, either 4.7/4.8 or 5.0 support SecureRPC, especially SecureNFS?
 I found the keyserv facility, installed the databases and read some note
 in mknetid(8):
 
 -n netid_file
  Specify the location of the netid information file.  The com-
  piled-in default is /etc/netid.  Note that no error is generated
  if the netid database can't be found.  The netid database is not
  likely to be present on most systems until Secure RPC support is
  added to FreeBSD.
 
 For me that sounds like FreeBSD does not have SecureRPC support and therefore
 no SecureNFS support.
 
 My intention is that I wish to setup a secure NFS environment with FreeBSD's
 basics and had neither success with SecureRPC nor KERBEROS V. In that part
 FreeBSD lacks in appropriate documentation, but may netsources told that
 securing via SecureRPC and/or kerberos should be possible.
 
 Can someone give me a hint or confirm the lack of SecureRPC in recent FreeBSD
 versions?
 
 Thanks in advance,
 Oliver

Dunno if it quite covers what you want, but there is a package called
SNFS, details here http://www.math.ualberta.ca/imaging/snfs/.

The page says that it is known to work with FreeBSD.

If your servers and clients are all running the BSD implementation of
NFS, they can run over TCP and therefore can be tunnelled over SSH 
without the aid of any third party extensions or apps.

HTH

Dan

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \

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



Supress ARP messages?

2003-02-17 Thread Lasse Laursen
Hi all,

We have a clustered setup of FreeBSD machines and we get a load of there
messages:

arp: 10.0.0.254 moved from 00:d0:b7:7e:b1:6d to 00:d0:b7:a0:07:2f on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:a0:07:2f to 00:d0:b7:7e:b1:6d on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:7e:b1:6d to 00:d0:b7:a0:07:2f on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:a0:07:2f to 00:d0:b7:7e:b1:6d on fxp0

each time a machine takes over another machines IP addresses. Are there any
way to supress these messages?



Regards

--
Lasse Laursen [EMAIL PROTECTED] - Systems Developer
NetGroup A/S, St. Kongensgade 40H, DK-1264 København K, Denmark
Phone: +45 3370 1526 - Fax: +45 3313 0066 - Web: www.netgroup.dk

- We don't surf the net, we make the waves.



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



Re: Fw: Creative Audigy soundblaster support

2003-02-17 Thread Sam Izzo
Hi,

On Mon, Feb 17, 2003 at 11:58:52AM +0200, Alec wrote:
 I sent my code to FreeBSD developers and I believe they're considering it
 and going to include changes in next release.

Well done!

Do your changes affect the SBLive in any way?  I don't have rear speakers
working on my 4.7-RELEASE machine and as far as I can tell it's not supported
by the current driver.  Also the SBLive has (I think) 48 hardware channels;
it would be nice if they could be utilised!  It's ridiculous to have to use
that vchan software mixing thing!

cheers
sam


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



Re: SAPDB port for FreeBSD

2003-02-17 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-02-15 14:23:02 -0500:
 On Fri, 14 Feb 2003, taxman wrote:
 
  On Friday 14 February 2003 03:30 am, Matthew Emmerton wrote:
I was surprised; there are no SAPDB (www.sapdb.org) in
http://www.freebsd.org/ports/databases.html list!
Has someone tried to install SAPDB on FreeBSD? Is it possible to create
   new port?
  
   I tried about a year or so ago, but gave up.  The SAPDB build tools are
   extremely Linux-centric (they expect a LSB-compliant filesystem layout, and
   it's next to impossible to trick it, as paths are hardcoded everywhere).
   Furthermore, the actual SAPDB product is again, Linux-centric and has all
   the warts that one would expect.
 
 Actually, I just took another look at this and things seems to be a bit
 less hairy than they were when I first looked at it.  (For example, it
 uses autoconf now.)

good news! however, they don't seem to be terribly interested:
http://listserv.sap.com/pipermail/sapdb.general/2003-February/017609.html

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



Re: ipfw2 dynamic rules not dying

2003-02-17 Thread Dan Pelleg
Jason Morgan [EMAIL PROTECTED] writes:

 I have a problem with my dynamic IPFW2 rules - they aren't dying. The
 system has been up now for 14 days, with it acting as firewall to two
 systems inside. One of the systems inside is also running IPFW2, but is
 in an open state. Here is the ruleset I am running, I have made no
 changes to the kernel variables regulating packet time-out - oh, and I'm
 running 4.7.
 
[ruleset]
 
 Currently, I have more than 180 dynamic rules active, most are attached
 to rule 00610. 180 rules seems to be excessive, and they don't seem to
 be timing out. Is my ruleset screwed up?
 
 Thanks
 Jason 
 

IPFW2 will attempt to test if a connection is still open, and if it is will
keep the matching rule intact. Search for keepalive on the ipfw manpage.

-- 

  Dan Pelleg

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



Re: Creative Audigy soundblaster support

2003-02-17 Thread Markie
Hi!
This is my first ever post on a mailing list so forgive me if i've done
something stupidly wrong and make a mess of things :)
I would like to try out the patch if I may? :) Been waiting for (non paid)
Audigy support for a while. I came across another Audigy/Audigy2 patch in
the freebsd-hackers list too, yet to try that one. Is this the same one? :)

Good work! :)
Markie

- Original Message -
From: Alec [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, February 17, 2003 9:58 AM
Subject: Fw: Creative Audigy soundblaster support


 Hi again
 I sent my code to FreeBSD developers and I believe they're considering it
 and going to include changes in next release.
 But it takes some time and I know how it's hard to work in silence... :)
 So I can provide my ugly, but workable, drivers for everybody; just ask me
 via e-mail (i dont have public web resource).

 Best regards
 Regards,
  Alexander Kurilovich

 - Original Message -
 From: Alec [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, January 29, 2003 7:29 PM
 Subject: Creative Audigy soundblaster support


  Hi everybody!
 
  I rewrite SBLive driver included in FreeBSD 4.7 for supporting Creative
  Audigy soundcard.
  It's still not good, but at least I can listen to mp3s on my BSD4.7 via
  Audigy with digital output.
  I consider it could be  helpfull for other guys who have Audigy and have
 to
  buy outside drivers, but I dont know what to do.. :)
 
  Regards,
   Alexander Kurilovich
 

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



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



mfsroot: Fatal trap 12.

2003-02-17 Thread Aleksey I. Yurlov
 Have a nice time.

I need to install fbsd on my laptop RoverBook Navigator KT6 (Intel PII 
333/64mb/4.3gb ata-33), BIOS: SystemSoft PnP BIOS v.1.17.1, 97). On the 
procces of booting /mfsroot got the Fatal trap:

chip1: Intel 82371AB Power managment controller port 0x1400-0x140f at 
device 7.3 on pci0
pci_cfgintr_linked: linked (60) to hard-routed irq 10

Fatal trap 12: page fault while in kernel mode
fault virtual address= 0xeb781
fault code= supervisor read, page not present
.skiped

I tryed to switch off power managmenet from bios, disable all devices 
that were founded on irq 10 (sn0, adv0, ed0) in the CLI mode of 
install process...but already see only this error.

Please, help.
Thank you.

--
Best regards, Aleksey I. Yurlov
[EMAIL PROTECTED]

--
Best regards, Aleksey I. Yurlov
[EMAIL PROTECTED]


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


Re: rw on ntfs volume

2003-02-17 Thread Markie
As far as I am aware ntfs isn't writeable on FreeBSD, or Linux and probably
anything else due to lack of proper documentation?

Markie

- Original Message -
From: admin [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, February 17, 2003 3:51 AM
Subject: rw on ntfs volume


 I thought that at least minimal
 write support was available for ntfs under FreeBSD?
 I'm following -CURRENT... did I miss
 something from the mount_ntfs man page?

 when a simple mkdir foo complains that  .  doesn't exist seems unusual.

 # su -
 # mkdir -p /mnt/w2k_d
 # chown root:wheel /mnt/w2k_d
 # chmod 777 /mnt/w2k_d
 # mount -t ntfs -o rw /dev/ad0s5 /mnt/w2k_d
 # cd /mnt/w2k_d
 # mount | grep w2k
 /dev/ad0s5 on /mnt/w2k_d (ntfs, local)

 # df -k w2k_d
 Filesystem 1K-blocks UsedAvail Capacity  Mounted on
 /dev/ad0s5  69754198 47186058 2256814068%/mnt/w2k_d

 # touch foo  (a file which doesn't exist)
 touch: foo: No such file or directory

 # touch ra (a file which does exist)
 touch: ra: Operation not supported

 # mkdir foo
 mkdir: .: No such file or directory

 suggestions??



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



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



Re: rw on ntfs volume

2003-02-17 Thread Daxbert
  I thought that at least minimal
  write support was available for ntfs under FreeBSD?
  I'm following -CURRENT... did I miss
  something from the mount_ntfs man page?
 
  when a simple mkdir foo complains that  .  doesn't exist seems unusual.
 
  # su -
  # mkdir -p /mnt/w2k_d
  # chown root:wheel /mnt/w2k_d
  # chmod 777 /mnt/w2k_d
  # mount -t ntfs -o rw /dev/ad0s5 /mnt/w2k_d
  # cd /mnt/w2k_d
  # mount | grep w2k
  /dev/ad0s5 on /mnt/w2k_d (ntfs, local)
 
  # df -k w2k_d
  Filesystem 1K-blocks UsedAvail Capacity  Mounted on
  /dev/ad0s5  69754198 47186058 2256814068%/mnt/w2k_d
 
  # touch foo  (a file which doesn't exist)
  touch: foo: No such file or directory
 
  # touch ra (a file which does exist)
  touch: ra: Operation not supported
 
  # mkdir foo
  mkdir: .: No such file or directory
 
  suggestions??
 
 
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message
 
 
 
 As far as I am aware ntfs isn't writeable on FreeBSD, or Linux and probably
 anything else due to lack of proper documentation?
 

The man page for mount_ntfs seems to indicate otherwise

...
WRITING
 There is limited writing ability.  Limitations: file must be nonresident
 and must not contain any sparces (uninitialized areas); compressed files
 are also not supported.
...




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



Re: Creative Audigy soundblaster support

2003-02-17 Thread Pierrick Brossin
Quoting Markie [EMAIL PROTECTED]:

 Hi!
 This is my first ever post on a mailing list so forgive me if i've done
 something stupidly wrong and make a mess of things :)
 I would like to try out the patch if I may? :) Been waiting for (non paid)
 Audigy support for a while. I came across another Audigy/Audigy2 patch in
 the freebsd-hackers list too, yet to try that one. Is this the same one? :)

Hi Markie! (saw you on freebsdforums :D)

Alec is/will work(ing) on a webpage for his driver which I'm gonna put on my
server so people can download it easily...

Cya

-- 
Pierrick Brossin
IT Swiss - QUARK Media House
6a Puits Godet, 2000 Neuchatel, Switzerland
Mail Prof: [EMAIL PROTECTED] Mail Priv: [EMAIL PROTECTED]

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



Re: NIC numbering

2003-02-17 Thread Andrea Franceschini
On Sat, Feb 15, 2003 at 08:28:35AM -0600, Terry Todd wrote:
 When you have more than one of the same type of NIC card in one
 machine is there a way to insure that the NIC numbering remains
 attached to the same card / MAC address if more cards are added or
 they are moved around?
 
 TIA,
 Terry Todd
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

I had the same problem with ATA drives on NetBSD.
Maybe you could define the NICs statically in the kernel file... ( i don't remember if 
it is still possible fro PCI devices.)

Hope it helps.

Bye


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



Re: rw on ntfs volume

2003-02-17 Thread Markie
You're right :) Sorry.

file must be nonresident and must not contain any sparces (uninitialized
areas);

What does this mean? :) big words for a 17 year old :$

Markie

- Original Message -
From: Daxbert [EMAIL PROTECTED]
To: Markie [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Monday, February 17, 2003 12:04 PM
Subject: Re: rw on ntfs volume


   I thought that at least minimal
   write support was available for ntfs under FreeBSD?
   I'm following -CURRENT... did I miss
   something from the mount_ntfs man page?
  
   when a simple mkdir foo complains that  .  doesn't exist seems
unusual.
  
   # su -
   # mkdir -p /mnt/w2k_d
   # chown root:wheel /mnt/w2k_d
   # chmod 777 /mnt/w2k_d
   # mount -t ntfs -o rw /dev/ad0s5 /mnt/w2k_d
   # cd /mnt/w2k_d
   # mount | grep w2k
   /dev/ad0s5 on /mnt/w2k_d (ntfs, local)
  
   # df -k w2k_d
   Filesystem 1K-blocks UsedAvail Capacity  Mounted on
   /dev/ad0s5  69754198 47186058 2256814068%/mnt/w2k_d
  
   # touch foo  (a file which doesn't exist)
   touch: foo: No such file or directory
  
   # touch ra (a file which does exist)
   touch: ra: Operation not supported
  
   # mkdir foo
   mkdir: .: No such file or directory
  
   suggestions??
  
  
  
   To Unsubscribe: send mail to [EMAIL PROTECTED]
   with unsubscribe freebsd-questions in the body of the message
  
 
 
  As far as I am aware ntfs isn't writeable on FreeBSD, or Linux and
probably
  anything else due to lack of proper documentation?
 

 The man page for mount_ntfs seems to indicate otherwise

 ...
 WRITING
  There is limited writing ability.  Limitations: file must be
nonresident
  and must not contain any sparces (uninitialized areas); compressed
files
  are also not supported.
 ...






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



Re: Creative Audigy soundblaster support

2003-02-17 Thread Markie
:D! Finally got round to subscribing to some mailing lists too :) Quite cool
:) Keep me busy over the half term off college I suspect :)
Have you tried this driver out too? Just like to know if there's any cracky
and popping noises with these drivers like I got from the OSS ones whenever
I last used them :)

Thanks :)
Markie

- Original Message -
From: Pierrick Brossin [EMAIL PROTECTED]
To: Markie [EMAIL PROTECTED]
Cc: Alec [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Monday, February 17, 2003 12:07 PM
Subject: Re: Creative Audigy soundblaster support


 Quoting Markie [EMAIL PROTECTED]:

  Hi!
  This is my first ever post on a mailing list so forgive me if i've done
  something stupidly wrong and make a mess of things :)
  I would like to try out the patch if I may? :) Been waiting for (non
paid)
  Audigy support for a while. I came across another Audigy/Audigy2 patch
in
  the freebsd-hackers list too, yet to try that one. Is this the same one?
:)

 Hi Markie! (saw you on freebsdforums :D)

 Alec is/will work(ing) on a webpage for his driver which I'm gonna put on
my
 server so people can download it easily...

 Cya

 --
 Pierrick Brossin
 IT Swiss - QUARK Media House
 6a Puits Godet, 2000 Neuchatel, Switzerland
 Mail Prof: [EMAIL PROTECTED] Mail Priv: [EMAIL PROTECTED]



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



Re: NIC numbering

2003-02-17 Thread Cliff Sarginson
On Mon, Feb 17, 2003 at 01:30:09PM +0100, Andrea Franceschini wrote:
 On Sat, Feb 15, 2003 at 08:28:35AM -0600, Terry Todd wrote:
  When you have more than one of the same type of NIC card in one
  machine is there a way to insure that the NIC numbering remains
  attached to the same card / MAC address if more cards are added or
  they are moved around?
  

arp -s  (or arp -S)
may help.

See man arp.


-- 
Regards
   Cliff Sarginson 
   The Netherlands

[ This mail has been checked as virus-free ]

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



Re: Creative Audigy soundblaster support

2003-02-17 Thread Pierrick Brossin
Quoting Markie [EMAIL PROTECTED]:

 :D! Finally got round to subscribing to some mailing lists too :) Quite
 cool
 :) Keep me busy over the half term off college I suspect :)
 Have you tried this driver out too? Just like to know if there's any cracky
 and popping noises with these drivers like I got from the OSS ones whenever
 I last used them :)

I've not tried them yet 'cos I'm doing many things on my laptop.
Didn't even ask the guy to send 'em over but as soon as they are on my server
(the webpage+driver) I'll try 'em !

Alec if you need any help just tell me I'll be there to try to help :)

-- 
Pierrick Brossin
IT Swiss - QUARK Media House
6a Puits Godet, 2000 Neuchatel, Switzerland
Mail Prof: [EMAIL PROTECTED] Mail Priv: [EMAIL PROTECTED]

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



Re: SMC 2602W Wireless PCI Card on stable

2003-02-17 Thread Peter J. Blok
Viny,

I don't use the pccard stuff for the 2602. I just kldload if_wi or compile 
device wi inside the kernel.

Peter
On Monday 17 February 2003 10:24, Viny wrote:
 May anyone using a SMC 2602W (PCI Adapter for the 2632W Wireless
 PCMCIA card) send me all the relevant lines in his config files (including
 the lines in the kernel config file) ?

   I've just tried with the following configuration, but it seems to
 do nothing :

 kernel config file :
 device  card
 device  pcic0   at isa? irq 0 port 0x3e0 iomem 0xd
 device  pcic1   at isa? irq 0 port 0x3e2 iomem 0xd4000 disable
 device  wi

 /etc/rc.conf
 pccard_enable=YES
 pccardd_flags=-z -i 15

   The card shares the IRQ 15 with an scsi card. I've seen old mail
 (Feb 2002) on freebsd-mobile archive which spoke about irq conflicts, but
 it seems that /usr/src/sys/dev/wi/if_wi.c have been modified to handle such
 cases. And anyway I've tried with all the cards but the video and the 2602
 ones out.

   Vincent

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


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



Re: ATI Radeon 9700 Pro

2003-02-17 Thread Jud
On Mon, 17 Feb 2003 18:03:03 +0800, Nigel Taylor [EMAIL PROTECTED] 
wrote:

Hi all

Just wondering has anyone got there ATI Radeon working with XFree86? if 
you have could you please tell how you did it? and if you use the linux 
drivers how did you get them working?


Yes, the Radeon works nicely.  No, you don't want Linux drivers.  (I have a 
9500 that I upgraded to 9700 Pro with a driver patch.  See RivaTuner and 
Guru3D web sites.  Don't know if there are any of the correct 9500 cards 
left, since once news spread that a card mod-able to 9700 Pro could be had 
for $150US, they started selling pretty quickly.)

FreeBSD's stock XFree86 won't run the 9700.  You will have to drop in a 
newer version, available from XFree86.org in one of two ways, probably both 
quite familiar to you as a FreeBSD user.  One way is to set up a supfile 
and cvsup the latest source from XFree's CVS repository, then compile and 
install it on your machine.  (The XFree86.org web site has instructions on 
how to do this.)  The second way (which I chose because it seemed quicker 
and easier) is to download the most recent FreeBSD snapshot binary files 
from 
ftp://ftp.xfree86.org/pub/XFree86/snapshots/4.2.99.901/binaries/FreeBSD- 
4.x/ and install them with the install script.  (Instructions are in the 
Install file in the same directory as the binaries.)

The snapshot and CVS versions contain support for the latest Radeons (2D at 
least; no 3D as of 10 days ago when I last looked, but it could be there 
now).

One last tip: The GUI XFree86 config never seems to work for me; running 
the text config and selecting the generic Radeon card worked fine.

Jud

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


processes take too much CPU

2003-02-17 Thread Roman Neuhauser
I have a problem with on of my FreeBSD boxes. All of a sudden, it
started acting very badly: any process takes ages to start completely,
eating all CPU in the process:

  PID USERNAME  PRI NICE  SIZERES STATETIME   WCPUCPU COMMAND
  852 root   57   0  1528K   996K RUN  0:19 91.95% 59.81% top

root@ishtar ~ 1017:0 # time ps auxww
...
ps auxww  0.00s user 0.01s system 0% cpu 2.197 total
root@ishtar ~ 1018:0 #

compare a slower box:

root@lilith ~ 1005:0 # time ps auxww
ps auxww  0.00s user 0.02s system 64% cpu 0.036 total
root@lilith ~ 1006:0 #

This strangeness lasted for about 20 minutes, persisted across a reboot
(I pulled out the wrong cable...), and then just disappeared; the box
works as it should.

I know this is hard to asnwer, but what could have caused the effect,
and what should I be looking for if it happens again? There's nothing
especially interesting in /var/log/messages.

BTW, top showed swap wasn't used at all.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



AMD Duron/ Socket A - FreeBSD 4.7

2003-02-17 Thread Andreas Widerøe Andersen
Hi,
I need to purchase a CHEAP server for a client and I was thinking about 
building him one using an AMD processor and a Socket A mainboard with most 
stuff onboard. Normally I'm rather reluctant to use new hardware for 
FreeBSD installations therefore I'm hoping someone could comment on the 
following spec:

2x WD Harddisk 20.0GB IDE 7200RPM UDMA-100 3.5 , WD200BB
APACER Memory 512MB SDRAM PC-133 Original 168Pin CL2, 512MB PC-133
MICROSTAR Mainboard Socket-A VIA KLE133 MicroATX Audio VGA LAN UDMA100, 
MS6378XL
AMD CPU Duron 1.2GHz Socket A 200FSB Tray , AMD DURON 1.2
Chieftec Case 19 1U 200W ATX 1xPCI Riser Card Black, UNC-110S-B 1

Thanks!
Andreas



---
Andreas Widerøe Andersen [EMAIL PROTECTED]
Pragma AS

http://www.pragma.no 


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


AYGROUP.COM

2003-02-17 Thread The Portal
Dear Sir/Madam,  
  
AYGROUP.COM - US$ 680  
  
AYGROUP.COM is now available from us for IMMEDIATE transfer.  
  
The domain name market is extremely solid at the moment and similar domains are 
currently selling on afternic.com, greatdomains.com (domain auction sites), and by 
domain name brokers, in some cases for many thousands of US dollars.  
  
Please note that transfers take just 5-15 minutes and are extremely straightforward. 
Absolutely NO technical knowledge is required.  
  
We use two methods of payment. You may pay via Escrow.com or PayPal. Payment to us is 
instant and transfers can be completed in minutes. We pay all fees connected with the 
transfer process.  
  
If you would like to use WWW.AYGROUP.COM for your online business, please contact us 
at your earliest convenience. Please don't hesitate to contact us should you require 
any further  assistance.  
  
We thank you for your attention and sincerely apologise if this e-mail has not been of 
interest to you.  
  
Yours Sincerely,  
  
Suzanne.  
  
Marketing,  
The Portal  
  
  
If you visit:  
HTTP://WWW.Ebay.com  
HTTP://WWW.1stdomainbrokers.com  
HTTP://WWW.Afternic.com  
  
Or many of the domain NAME auction sites. We hope you will agree that we are not only 
offering what we believe to be a genuine investment, but you will also benefit from 
owning a domain of this quality. 

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



Re: AMD Duron/ Socket A - FreeBSD 4.7

2003-02-17 Thread Laszlo Vagner


I would say that power supply is a little weak at 200W especially for a 
server. I built a nice system recently which cost about 500 bucks.
Asus A7 8X Athlon 2gig, 512 meg ddr400, onboard sound, unsupported
nic (gigabit is supported), firewire, smart card reader, Seagate 120gb
HDD, Nvidia GF4 TI4200, Kingston NIC, Liteon 48X cd-rw and full server
tower case.

the price difference between duron and full athlon dont warrant getting
a duron, to save even more you could find a motherboard with 
onboard video and NIC and slower memory like ddr333 or even 266.




On Monday 17 February 2003 09:36 am, Andreas Widerøe Andersen wrote:
 Hi,
 I need to purchase a CHEAP server for a client and I was thinking about
 building him one using an AMD processor and a Socket A mainboard with most
 stuff onboard. Normally I'm rather reluctant to use new hardware for
 FreeBSD installations therefore I'm hoping someone could comment on the
 following spec:

 2x WD Harddisk 20.0GB IDE 7200RPM UDMA-100 3.5 , WD200BB
 APACER Memory 512MB SDRAM PC-133 Original 168Pin CL2, 512MB PC-133
 MICROSTAR Mainboard Socket-A VIA KLE133 MicroATX Audio VGA LAN UDMA100,
 MS6378XL
 AMD CPU Duron 1.2GHz Socket A 200FSB Tray , AMD DURON 1.2
 Chieftec Case 19 1U 200W ATX 1xPCI Riser Card Black, UNC-110S-B 1

 Thanks!
 Andreas



 ---
 Andreas Widerøe Andersen [EMAIL PROTECTED]
 Pragma AS

 http://www.pragma.no


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


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



Re: Worrying ATA problems.

2003-02-17 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-02-16 18:42:26 +:
 Uhh, crap.  I'm building PostgreSQL in the Linux VMware guest OS,
 and the drive started making a bunch of sounds that can only be
 described as being similar to taking a floppy out of the drive wh-
 ile it's being written to.  Of course, these sounds were coupled
 with a system freeze and a bunch of ata error messages when every-
 thing had passed.
 
 Has anyone ever experienced *anything* like this?

Yes, I have. The disk is toast. Get the data off to it while you
can. Hurry, time is running fast.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



Re: need some sendmail help

2003-02-17 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-02-15 00:41:42 +0200:
 On 2003-02-14 18:08, Roman Neuhauser [EMAIL PROTECTED] wrote:
  # [EMAIL PROTECTED] / 2003-02-14 03:51:22 +0200:
   You have only enabled mail submission through a network
   connection to port 25, but not submission of mail from local
   users.  I suggest that you read at least /etc/mail/README and
   the rc.sendmail(8) manpage.
 
  Hi Giorgos,
 
  it was always my understanding that sendmail_enable=YES will turn
  Sendmail on wholesale: commandline submits, inbound, outbound.
 
 Not really.  sendmail_enable=YES turns on only the non-localhost
 daemon.
 
 Note that I was wrong in my previous post, but for a different reason.
 Since /etc/defaults/rc.conf sets sendmail_xxx_enable=YES, the
 dequeueing of local mail will be automatically enabled.

well, that's what I was trying to say: given the values in
/etc/defaults/rc.conf, having only sendmail_enable=YES in
/etc/rc.conf will enable Sendmail wholesale. on -STABLE, that is.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



Re: Need help formatting HDD

2003-02-17 Thread Giorgos Keramidas
On 2003-02-16 23:21, . Saevio . [EMAIL PROTECTED] wrote:
 Sorry to write a F-BSD list with this, but i figured you would know.
 I have a IBM Deskstar 30gb, with FreeBSD 4.x on it, and i need to
 remove it so i can install the HDD in a friends system. However
 after trying with format.com and fdisk.exe it wont even recognize
 the partition.

 How do i remove it? anything would be appreciated.

Remove non-DOS partition is an option in FDISK.EXE.


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



Re: rw on ntfs volume

2003-02-17 Thread Jan Grant
On Mon, 17 Feb 2003, Markie wrote:

 You're right :) Sorry.

 file must be nonresident and must not contain any sparces (uninitialized
 areas);

 What does this mean? :) big words for a 17 year old :$

Nonresident: Bigger than a kilobyte :-) A resident file is an
optimisation. Roughly by analogy, it'd be like storing the contents of a
(small) file directly in the inode, rather than in data blocks pointed
to by the inode. Most files are likely to be nonresident. If you create
a file it'll be nonresident.

Most resident data appears to crop up using NTFS' forked file ability,
which isn't generally something you hear a lot about.

Not having any spaces: this is what's called a sparse file - eg, you
write some bytes, seek forward a gigabyte, and write some more. NTFS has
the ability to record this file with a hole in the middle, so it
doesn't require a GB of disk storage. Most files are unlikely to be
sparse.



-- 
jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
Axioms speak louder than words.


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



Re: Creative Audigy soundblaster support

2003-02-17 Thread Kent Stewart
On Monday 17 February 2003 04:44 am, Markie wrote:
 :D! Finally got round to subscribing to some mailing lists too :)
 : Quite cool ) Keep me busy over the half term off college I suspect
 : :)

 Have you tried this driver out too? Just like to know if there's any
 cracky and popping noises with these drivers like I got from the OSS
 ones whenever I last used them :)

I thought that I was the only one seeing this. I installed the driver, 
played something, and did a shutdown to get rid of it. The audio buzzed 
more than sound like audio.

Kent


 Thanks :)
 Markie

 - Original Message -
 From: Pierrick Brossin [EMAIL PROTECTED]
 To: Markie [EMAIL PROTECTED]
 Cc: Alec [EMAIL PROTECTED];
 [EMAIL PROTECTED]
 Sent: Monday, February 17, 2003 12:07 PM
 Subject: Re: Creative Audigy soundblaster support

  Quoting Markie [EMAIL PROTECTED]:
   Hi!
   This is my first ever post on a mailing list so forgive me if
   i've done something stupidly wrong and make a mess of things :)
   I would like to try out the patch if I may? :) Been waiting for
   (non

 paid)

   Audigy support for a while. I came across another Audigy/Audigy2
   patch

 in

   the freebsd-hackers list too, yet to try that one. Is this the
   same one?
 :
 :)
 :
  Hi Markie! (saw you on freebsdforums :D)
 
  Alec is/will work(ing) on a webpage for his driver which I'm gonna
  put on

 my

  server so people can download it easily...
 
  Cya
 
  --
  Pierrick Brossin
  IT Swiss - QUARK Media House
  6a Puits Godet, 2000 Neuchatel, Switzerland
  Mail Prof: [EMAIL PROTECTED] Mail Priv: [EMAIL PROTECTED]

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

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


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



REPOST:Make Buildworld fails 4.5-R - 4.7 R

2003-02-17 Thread Blake Swensen
When upgrading to the latest release on the 4 tree get the following:
% cd /usr/src  make cleandir  make cleandir
% cd /usr/src
% make buildworld
[snip]
=== lib/libcom_err/doc
cc -O -pipe  -I/usr/src/lib/libcom_err/../../contrib/com_err  -c
/usr/src/lib/libcom_err/../../contrib/com_err/com_err.c -o com_err.o
{standard input}: Assembler messages:
{standard input}:189: Error: attempt to allocate data in common section
*** Error code 1

Stop in /usr/src/lib/libcom_err.
*** Error code 1

Any help would be appreciated


cvsup supfile
*default tag=RELENG_4
*default host=cvsup8.freebsd.org
*default prefix=/usr
*default base=/usr
*default release=cvs delete use-rel-suffix compress
src-all
/cvsup supfile

system info
uname:FreeBSD 4.5-RELEASE
Memory:real memory  = 335478784 (327616K bytes)
CPU: AMD-K6(tm) 3D processor (501.14-MHz 586-class CPU)
/system info
--
~
The Internet Rescue Company - http://www.pyramus.com
~
Blake R. Swensen Pyramus Online, Inc.
President2080 SE Oak Grove Blvd. Suite 11
  Milwaukie, Oregon 97267
  800-327-5101
  vox:503-353-0455
  fax:503-353-0453
~
We measure success by the success of our clients


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


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



BIZIDEAS.NET

2003-02-17 Thread BIZIDEAS . NET
Dear Sir/Madam,  
  
BIZIDEAS.NET - US$ 660 
  
BIZIDEAS.NET is now available from us for IMMEDIATE transfer.  
  
The domain name market is extremely solid at the moment and similar  
domains are currently selling on afternic.com, greatdomains.com (domain auction 
sites), and by domain name brokers, in some cases for many thousands of US dollars.  
  
Please note that transfers take just 5-15 minutes and are extremely  
straightforward. Absolutely NO technical knowledge is required.  
  
We use two methods of payment. You may pay via Escrow.com or PayPal.  
Payment to us is instant and transfers can be completed in minutes. We pay all fees 
connected with the transfer process.  
  
If you would like to use WWW.BIZIDEAS.NET for your online business,  
please contact us at your earliest convenience. Please don't hesitate to contact us 
should you require any further  assistance.  
  
We thank you for your attention and sincerely apologise if this e-mail has not been of 
interest to you.  
  
Yours Sincerely,  
  
Jenny.  
Marketing,  
The Portal  
  
  
Please visit:  
HTTP://WWW.Ebay.com  
HTTP://WWW.1stdomainbrokers.com  
HTTP://WWW.Afternic.com  
  
Or many of the domain NAME auction sites. We hope you will agree that we are not only 
offering what we believe to be a genuine investment, but you will also benefit from 
owning a domain of this quality.  
 
 

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



Re: rw on ntfs volume

2003-02-17 Thread Markie
I think I get that :) Thanks.
So maybe its not working because you're making things smaller than 1k? like
new files?
have you tried copying something big to the mount instead of making new
files? :)


- Original Message -
From: Jan Grant [EMAIL PROTECTED]
To: Markie [EMAIL PROTECTED]
Cc: Daxbert [EMAIL PROTECTED]; freebsd-questions
[EMAIL PROTECTED]
Sent: Monday, February 17, 2003 4:21 PM
Subject: Re: rw on ntfs volume


 On Mon, 17 Feb 2003, Markie wrote:

  You're right :) Sorry.
 
  file must be nonresident and must not contain any sparces (uninitialized
  areas);
 
  What does this mean? :) big words for a 17 year old :$

 Nonresident: Bigger than a kilobyte :-) A resident file is an
 optimisation. Roughly by analogy, it'd be like storing the contents of a
 (small) file directly in the inode, rather than in data blocks pointed
 to by the inode. Most files are likely to be nonresident. If you create
 a file it'll be nonresident.

 Most resident data appears to crop up using NTFS' forked file ability,
 which isn't generally something you hear a lot about.

 Not having any spaces: this is what's called a sparse file - eg, you
 write some bytes, seek forward a gigabyte, and write some more. NTFS has
 the ability to record this file with a hole in the middle, so it
 doesn't require a GB of disk storage. Most files are unlikely to be
 sparse.



 --
 jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
 Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
 Axioms speak louder than words.




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



Re: processes take too much CPU

2003-02-17 Thread Bill Moran
Roman Neuhauser wrote:

I have a problem with on of my FreeBSD boxes. All of a sudden, it
started acting very badly: any process takes ages to start completely,
eating all CPU in the process:

  PID USERNAME  PRI NICE  SIZERES STATETIME   WCPUCPU COMMAND
  852 root   57   0  1528K   996K RUN  0:19 91.95% 59.81% top

root@ishtar ~ 1017:0 # time ps auxww
...
ps auxww  0.00s user 0.01s system 0% cpu 2.197 total
root@ishtar ~ 1018:0 #


Looks like it's not eating up much of the computer's time to start, just
that something else is preventing it from accessing what it wants
immediately.  Could be starved from RAM, or waiting on a busy ATA controller
or any number of things.


compare a slower box:

root@lilith ~ 1005:0 # time ps auxww
ps auxww  0.00s user 0.02s system 64% cpu 0.036 total
root@lilith ~ 1006:0 #


Sounds like the faster box is bogged down with some task.  Maybe flushing
disk data?  What else is running on this box?


This strangeness lasted for about 20 minutes, persisted across a reboot
(I pulled out the wrong cable...), and then just disappeared; the box
works as it should.


You don't state the hardware either.  Lots of places a bottleneck could
occur that would make the system sluggish.


I know this is hard to asnwer, but what could have caused the effect,
and what should I be looking for if it happens again? There's nothing
especially interesting in /var/log/messages.


I've seen some processes suddenly grab a lot of the machine's ability and
bog it down temporarily.  Usually with a combination of top and systat, I
can identify where the load is coming from.
This is especially noticable in 5.0.  You don't say, but I'm assuming you're
running 4.x though.


BTW, top showed swap wasn't used at all.


Out of ram/swapping isn't the only place a machine can bog down.  What
applications are you running on it?
Does top show any other processes using a lot of CPU time?  A snapshot
of top output while the problem is occurring would be informational to
anyone trying to help.

--
Bill Moran
Potential Technologies
http://www.potentialtech.com


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



Re: ATI Radeon 9700 Pro

2003-02-17 Thread Kenneth Culver
The linux drivers do not work with FreeBSD. In order to get 2d support and
xv support for this card, you must get the cvs version of XFree86, and
compile and install that.

Ken

On Mon, 17 Feb 2003, Nigel Taylor wrote:

 Hi all

 Just wondering has anyone got there ATI Radeon working with XFree86? if
 you have could you please tell how you did it? and if you use the linux
 drivers how did you get them working?

 Thank you




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



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



Re: Music CDROM

2003-02-17 Thread chip . wiegand
[EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:

 No need to mount them to paly music. Just need a cd player app. XMMS or 
gRip
 work nicely in Gnome, workbone is probably best from teh console.
 
 Adam

Workman is another X11 audio cdplayer that works well.
--
Chip

 - Original Message -
 From: Mike [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, February 16, 2003 11:36 PM
 Subject: Music CDROM
 
 
  Using 5.0 FreeBSD
 
  Odd thing maybe someone has seen it. I have 2 cdroms 1 burner on 
plain.
  They are mounted and can read data cd's like the FreeBSD cd but store
  bought music will not play.
 
  All I get is cd 9660: /dev/acd1: Invalid argument
 
  Is there additional file support needed to play music? Or?
 
  Thanks
 
  M;)
 
  Yes I used another message and did a reply to but I posted this 
message
  3 days ago and it did not show up on the list. My BSD Current works 
fine
  but not this one..
 
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 


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



Re: Problem syncing palm m125 w/ jpilot and pilot-xfer

2003-02-17 Thread Jason Hunt
On Sun, Feb 16, 2003 at 02:33:08PM -0800, Lin Jianfong wrote:
 Hi,
 
 I just bought a Palm m125 model recently and tried to sync it via the USB 
 cradle/cable on my fbsd 4.7R box. I got the process going all up to the 
 point when trying to backup and sync using jpilot and pilot-xfer.
 
 The problems :
 - For some reason, jpilot is having trouble reading AddressDB, ToDoDB and 
 MemoDB off my palm. It can read DateBookDB no problem. If I tried syncing, 
 the process will go thru and jpilot will sync only DateBook's but not the 
 other 3 apps' database. Same thing when doing backup. I set both jpilot and 
 palm to communicate at 9600bps.
 
 - For pilot-xfer, pretty much the same problem, when I tried doing  % 
 pilot-xfer -p /dev/pilot -b $HOME/palm_backup, the process will go thru, 
 it reported succeeded in reading the RAM from Palm, and Palm itself 
 reported success in synchronizing but...afterwards, $HOME/palm_backup is 
 still EMPTY. pilot-xfer just didn't bother to report any error.
 

To make a long story short, you're better off getting a serial
cable/cradle for now.  USB does not work with pilot-link in FreeBSD.
My problem sounds similar to yours.  It would only see one DB on the
Palm and then finish the hoysynch.  When I did pilot-xfer -l it would
only list one of my applications DBs and then say it finished
sucessfully.  Using pilot-link with jpilot and a serial cable (or a
cradle) works great, although I can't seem to make it go any 9600bps, or
maybe I'm impatient :)

Hope this helps.

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



Re: shell prompt question

2003-02-17 Thread Thomas Spreng
Hi,
On Mon, Feb 17, 2003 at 10:46:24AM -0500, David Banning wrote:
  The way that the shell prompt is set depends on the particular shell.
  What shell does your `david' user have?  What shell does `root' have?
 
 they both use bash.
 
  
   How do I get the super-user prompt when I just use the su command
   rather than the full su - command?
  
  The default behavior of su is to run an interactive, but not login,
  shell AFAIK.  How to set the prompt for interactive invocations of
  your root user's shell depends on the shell.

/root/.bashrc f.e. is parsed if you start an interactive shell, like 'su'.
Define your PS1 variable in this file if you want to customize it and read
the bash manpage, its written there.

cheers,
tom

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



Re: shell prompt question

2003-02-17 Thread Giorgos Keramidas
On 2003-02-17 10:46, David Banning [EMAIL PROTECTED] wrote:
  The way that the shell prompt is set depends on the particular shell.
  What shell does your `david' user have?  What shell does `root' have?

 they both use bash.

 
   How do I get the super-user prompt when I just use the su command
   rather than the full su - command?
 
  The default behavior of su is to run an interactive, but not login,
  shell AFAIK.  How to set the prompt for interactive invocations of
  your root user's shell depends on the shell.
 I took out my PS1=david$ line in my .profile, and now I have it working
 again. My user shell is simply bash-2.03$ and my su shell is
 su-2.03#.

 Thanks for your help.

You're welcome :)

Don't explicitly set a '$' in your PS1 if you want bash to have
control of your superuser/simple-user changes.  Use this instead:

PS1='david\$'

and see if it looks better.  For more \X escape sequences that you can
use in your PS1, look at the manpage of bash.


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



Re: need some sendmail help

2003-02-17 Thread Giorgos Keramidas
On 2003-02-17 16:41, Roman Neuhauser [EMAIL PROTECTED] wrote:
 # [EMAIL PROTECTED] / 2003-02-15 00:41:42 +0200:
   it was always my understanding that sendmail_enable=YES will turn
   Sendmail on wholesale: commandline submits, inbound, outbound.
 
  Not really.  sendmail_enable=YES turns on only the non-localhost
  daemon. [...]

 well, that's what I was trying to say: given the values in
 /etc/defaults/rc.conf, having only sendmail_enable=YES in
 /etc/rc.conf will enable Sendmail wholesale. on -STABLE, that is.

Aye.  I misunderstood you, then.  Probably because sendmail_enable is
not enough for enabling local mail delivery too.  Sorry about that...


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



Re: shell prompt question

2003-02-17 Thread Anti
On Mon, 17 Feb 2003 18:40:36 +0200
Giorgos Keramidas [EMAIL PROTECTED] wrote:

 On 2003-02-17 10:46, David Banning [EMAIL PROTECTED] wrote:
   The way that the shell prompt is set depends on the particular shell.
   What shell does your `david' user have?  What shell does `root' have?
 
  they both use bash.
 
  
How do I get the super-user prompt when I just use the su command
rather than the full su - command?
  
   The default behavior of su is to run an interactive, but not login,
   shell AFAIK.  How to set the prompt for interactive invocations of
   your root user's shell depends on the shell.
  I took out my PS1=david$ line in my .profile, and now I have it working
  again. My user shell is simply bash-2.03$ and my su shell is
  su-2.03#.
 
  Thanks for your help.
 
 You're welcome :)
 
 Don't explicitly set a '$' in your PS1 if you want bash to have
 control of your superuser/simple-user changes.  Use this instead:
 
   PS1='david\$'
 
 and see if it looks better.  For more \X escape sequences that you can
 use in your PS1, look at the manpage of bash.


or probably better in this case PS1='\u\$ '

i prefer PS1='[\u \W]\$ '



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



Re: rw on ntfs volume

2003-02-17 Thread Jan Grant
On Mon, 17 Feb 2003, Markie wrote:

 I think I get that :) Thanks.
 So maybe its not working because you're making things smaller than 1k? like
 new files?
 have you tried copying something big to the mount instead of making new
 files? :)

mount_ntfs filesystems don't create resident files.

-- 
jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
If it's broken really badly - don't fix it either.


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



Re: rw on ntfs volume

2003-02-17 Thread Markie
You lost me there :)
Please forgive me if i'm being stupid and just don't understand at all :)
It says files have to be non resident? and non resident files are bigger
than 1k you say?
But making a plain new file or folder would be smaller than 1k wouldnt it?
So they'd be.. resident files and wouldnt write? :s
That's the impression i'm getting at the moment anyway :)

Markie

- Original Message -
From: Jan Grant [EMAIL PROTECTED]
To: Markie [EMAIL PROTECTED]
Cc: freebsd-questions [EMAIL PROTECTED]
Sent: Monday, February 17, 2003 7:23 PM
Subject: Re: rw on ntfs volume


 On Mon, 17 Feb 2003, Markie wrote:

  I think I get that :) Thanks.
  So maybe its not working because you're making things smaller than 1k?
like
  new files?
  have you tried copying something big to the mount instead of making new
  files? :)

 mount_ntfs filesystems don't create resident files.

 --
 jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
 Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
 If it's broken really badly - don't fix it either.




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



Re: rw on ntfs volume

2003-02-17 Thread Jan Grant
On Mon, 17 Feb 2003, Markie wrote:

 You lost me there :)
 Please forgive me if i'm being stupid and just don't understand at all :)
 It says files have to be non resident? and non resident files are bigger
 than 1k you say?
 But making a plain new file or folder would be smaller than 1k wouldnt it?
 So they'd be.. resident files and wouldnt write? :s
 That's the impression i'm getting at the moment anyway :)

NTFS filesystems _may_, under certain circumstances, create resident
files of the type described. You won't be able to modify these.

Filesystems mounted with mount_ntfs can't modify resident files. If you
create a small file it will be nonresident, and you should be able to
edit it (providing you don't fall foul of the other NTFS writing
restrictions).


-- 
jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
The Java disclaimer: values of 'anywhere' may vary between regions.


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



Re: REPOST:Make Buildworld fails 4.5-R - 4.7 R

2003-02-17 Thread Lowell Gilbert
Blake Swensen [EMAIL PROTECTED] writes:

 When upgrading to the latest release on the 4 tree get the following:
 % cd /usr/src  make cleandir  make cleandir
 % cd /usr/src

Actually removing /usr/obj/* would be a good idea here.
In fact, it's recommended by the handbook.

You should also try another cvsup to see if you caught the sources at
a bad time.

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



Re: Supress ARP messages?

2003-02-17 Thread Dancho Penev
On Mon, Feb 17, 2003 at 11:34:03AM +0100, Lasse Laursen wrote:

From: Lasse Laursen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Supress ARP messages?
Date: Mon, 17 Feb 2003 11:34:03 +0100

Hi all,

We have a clustered setup of FreeBSD machines and we get a load of there
messages:

arp: 10.0.0.254 moved from 00:d0:b7:7e:b1:6d to 00:d0:b7:a0:07:2f on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:a0:07:2f to 00:d0:b7:7e:b1:6d on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:7e:b1:6d to 00:d0:b7:a0:07:2f on fxp0
arp: 10.0.0.254 moved from 00:d0:b7:a0:07:2f to 00:d0:b7:7e:b1:6d on fxp0

each time a machine takes over another machines IP addresses. Are there any
way to supress these messages?


# sysctl net.link.ether.inet.log_arp_movements=0





Regards

--
Lasse Laursen [EMAIL PROTECTED] - Systems Developer
NetGroup A/S, St. Kongensgade 40H, DK-1264 K?benhavn K, Denmark
Phone: +45 3370 1526 - Fax: +45 3313 0066 - Web: www.netgroup.dk

- We don't surf the net, we make the waves.



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


--
Regards,
Dancho Penev

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



Re: arplookup going mad

2003-02-17 Thread Dancho Penev
On Sun, Feb 16, 2003 at 06:47:47PM +0100, Marc Schneiders wrote:

Date: Sun, 16 Feb 2003 18:47:47 +0100 (CET)
From: Marc Schneiders [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: arplookup going mad

I have posted a question about this earlier, without getting an
answer. Then the problem was occasionally. Now the machine is going
mad over the same thing. It gives this every second in messages:

Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt
Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
not on local network
Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
13.16.2.97rt

How do I put an end to this? The IP mentioned is NOT on the local
network. I do NOT tell it anywhere it is. Nothing has changed in my
config. Why does it do this, and why every second all of a sudden? How
do I stop it?

man llinfo gives 0, apropos llinfo gives 0. man arplookup: nothing,
apropos arplookup: nothing.


man 4 arp (not an answer but may be help you to resolve the problem)



I rebooted, to no avail. It came back within half an hour.

Since the machine is colocated (and not next door) I do not want to
lock myself out by trying funny things with arp -s. And I tried that
on a machine here, and it refused it anyway for a host not on the
local network. As it should, I am sure.

Any really good ideas?

uname -a: FreeBSD [hostname] 4.7-STABLE FreeBSD 4.7-STABLE #13: Sat
Nov 16 16:09:35 CET 2002
marc@[hostname]:/usr/obj/usr/src/sys/FUCHSIA  i386




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


--
Regards,
Dancho Penev

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



FreeBSD 5.0 Release : /stand/sysinstall running as init on vty0

2003-02-17 Thread Gabriel Rossetti
Hello,

I wanted to test FreeBSD 5.0 on my Compaq ProLiant 1500 server. It boots
and right after the SCSI settles, it prints : 

/stand/sysinstall running as init on vty0

and nothing happens. I get no errors. 

The server is a bi-proc. 166MHz with 192MB of RAM
it has a SMART - 2/P ARRAY controller.

FreeBSD 4.7 worked great on it. Does anyone have an idea?

Thank you,

Gabriel Rossetti






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



Re: Music CDROM

2003-02-17 Thread Jud
On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:


[EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:


No need to mount them to paly music. Just need a cd player app. XMMS or

gRip

work nicely in Gnome, workbone is probably best from teh console.

Adam


Workman is another X11 audio cdplayer that works well.
--
Chip


Just to mention 2 others (very compact, will run from the slit in 
Blackbox or the equivalent in Windowmaker and Afterstep): ascd, wmcdplayer.

Jud

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


Re: arplookup going mad

2003-02-17 Thread IAccounts
 Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
 not on local network
 Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
 13.16.2.97rt

I had this back in the summer time, and it was due to having an IP
address aliased on one of my nics in a block that was not on the local
subnet.

Check the block the NIC's bound IP is on, then verify that any blocks that
the aliases are in are reachable from that machine.

Steve


 
 How do I put an end to this? The IP mentioned is NOT on the local
 network. I do NOT tell it anywhere it is. Nothing has changed in my
 config. Why does it do this, and why every second all of a sudden? How
 do I stop it?
 
 man llinfo gives 0, apropos llinfo gives 0. man arplookup: nothing,
 apropos arplookup: nothing.

 man 4 arp (not an answer but may be help you to resolve the problem)

 
 I rebooted, to no avail. It came back within half an hour.
 
 Since the machine is colocated (and not next door) I do not want to
 lock myself out by trying funny things with arp -s. And I tried that
 on a machine here, and it refused it anyway for a host not on the
 local network. As it should, I am sure.
 
 Any really good ideas?
 
 uname -a: FreeBSD [hostname] 4.7-STABLE FreeBSD 4.7-STABLE #13: Sat
 Nov 16 16:09:35 CET 2002
 marc@[hostname]:/usr/obj/usr/src/sys/FUCHSIA  i386
 
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

 --
 Regards,
 Dancho Penev

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



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



Re: Music CDROM - Wont even read Music CD

2003-02-17 Thread massey
Sorry must not have been clear. The Music CD's data does not even show up.
Data CD like FreeBSD 5.0 or Office do show up. I tried 10 or 12 CD's with
music and got the same error.
They mount at startup so I am not mounting the CD drive.

Very odd!




 On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:

 [EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:

 No need to mount them to paly music. Just need a cd player app. XMMS
 or
 gRip
 work nicely in Gnome, workbone is probably best from teh console.

 Adam

 Workman is another X11 audio cdplayer that works well.
 --
 Chip

 Just to mention 2 others (very compact, will run from the slit in
 Blackbox or the equivalent in Windowmaker and Afterstep): ascd,
 wmcdplayer.

 Jud

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




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



Re: Music CDROM - Wont even read Music CD

2003-02-17 Thread Adam Maas
Well, since music CD's are raw data, raher than a file system, you'll never
see the data (Except in BeOS). Just stick them in and try to play them with
a Audio CD player App.

Adam

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Monday, February 17, 2003 4:43 PM
Subject: Re: Music CDROM - Wont even read Music CD


 Sorry must not have been clear. The Music CD's data does not even show up.
 Data CD like FreeBSD 5.0 or Office do show up. I tried 10 or 12 CD's with
 music and got the same error.
 They mount at startup so I am not mounting the CD drive.

 Very odd!




  On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:
 
  [EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:
 
  No need to mount them to paly music. Just need a cd player app. XMMS
  or
  gRip
  work nicely in Gnome, workbone is probably best from teh console.
 
  Adam
 
  Workman is another X11 audio cdplayer that works well.
  --
  Chip
 
  Just to mention 2 others (very compact, will run from the slit in
  Blackbox or the equivalent in Windowmaker and Afterstep): ascd,
  wmcdplayer.
 
  Jud
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message




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



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



Is using mergemaster multiple times ok?

2003-02-17 Thread Tillman
Howdy,

I have a build host that exports /usr/src, /usr/obj and /usr/ports. As
long as I don't 'd'elete the temporary config files when using
mergemaster, is it safe to use mergemaster on multiple machines? My main
concern would be the state of the temporary config files changing
between mergemaster runs.

TIA,

-T

-- 
Anyone can revolt. It is more difficult silently to obey our own inner
promptings, and to spend our lives finding sincere and fitting means of
expression for our temperament and our gifts.
- Georges Rouault

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



Re: Music CDROM - Wont even read Music CD

2003-02-17 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

 Sorry must not have been clear. The Music CD's data does not even show up.
 Data CD like FreeBSD 5.0 or Office do show up. I tried 10 or 12 CD's with
 music and got the same error.
 They mount at startup so I am not mounting the CD drive.
 
 Very odd!

Not at all.  To repeat:  Music CDs do *not* get mounted.

The error you're getting is telling you that there is not ISO 9660
filesystem on the CD, which is true; ISO 9660 is the format for data
CDs, and is *not* used for music CDs.

You just use a CD-playing application, and you do *not* attempt to
mount music CDs.


  On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:
 
  [EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:
 
  No need to mount them to paly music. Just need a cd player app. XMMS
  or
  gRip
  work nicely in Gnome, workbone is probably best from teh console.
 
  Adam
 
  Workman is another X11 audio cdplayer that works well.
  --
  Chip
 
  Just to mention 2 others (very compact, will run from the slit in
  Blackbox or the equivalent in Windowmaker and Afterstep): ascd,
  wmcdplayer.
 
  Jud
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message
 
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

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



RE: Music CDROM - Wont even read Music CD

2003-02-17 Thread Brian Henning
Correct me if i am wrong, I belive this goes for VCD's and DVD's also.

-Original Message-

From: Lowell Gilbert [mailto:[EMAIL PROTECTED]]

Sent: Monday, February 17, 2003 4:10 PM

To: [EMAIL PROTECTED]

Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];

[EMAIL PROTECTED]; [EMAIL PROTECTED];

[EMAIL PROTECTED]

Subject: Re: Music CDROM - Wont even read Music CD



[EMAIL PROTECTED] writes:

 Sorry must not have been clear. The Music CD's data does not even show up.

 Data CD like FreeBSD 5.0 or Office do show up. I tried 10 or 12 CD's with

 music and got the same error.

 They mount at startup so I am not mounting the CD drive.

 

 Very odd!

Not at all. To repeat: Music CDs do *not* get mounted.

The error you're getting is telling you that there is not ISO 9660

filesystem on the CD, which is true; ISO 9660 is the format for data

CDs, and is *not* used for music CDs.

You just use a CD-playing application, and you do *not* attempt to

mount music CDs.



  On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:

 

  [EMAIL PROTECTED] wrote on 02/16/2003 09:18:38 PM:

 

  No need to mount them to paly music. Just need a cd player app. XMMS

  or

  gRip

  work nicely in Gnome, workbone is probably best from teh console.

 

  Adam

 

  Workman is another X11 audio cdplayer that works well.

  --

  Chip

 

  Just to mention 2 others (very compact, will run from the slit in

  Blackbox or the equivalent in Windowmaker and Afterstep): ascd,

  wmcdplayer.

 

  Jud

 

  To Unsubscribe: send mail to [EMAIL PROTECTED]

  with unsubscribe freebsd-questions in the body of the message

 

 

 

 

 To Unsubscribe: send mail to [EMAIL PROTECTED]

 with unsubscribe freebsd-questions in the body of the message

To Unsubscribe: send mail to [EMAIL PROTECTED]

with unsubscribe freebsd-questions in the body of the message

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



RE: Music CDROM - Wont even read Music CD

2003-02-17 Thread Scott A. Moberly

 Correct me if i am wrong, I belive this goes for VCD's and DVD's also.

consider yourself corrected.

 -Original Message-

 From: Lowell Gilbert [mailto:[EMAIL PROTECTED]]

 Sent: Monday, February 17, 2003 4:10 PM

 To: [EMAIL PROTECTED]

 Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];

 [EMAIL PROTECTED]; [EMAIL PROTECTED];

 [EMAIL PROTECTED]

 Subject: Re: Music CDROM - Wont even read Music CD



 [EMAIL PROTECTED] writes:

 Sorry must not have been clear. The Music CD's data does not even show
 up.

 Data CD like FreeBSD 5.0 or Office do show up. I tried 10 or 12 CD's
 with

 music and got the same error.

 They mount at startup so I am not mounting the CD drive.



 Very odd!

 Not at all. To repeat: Music CDs do *not* get mounted.

 The error you're getting is telling you that there is not ISO 9660

 filesystem on the CD, which is true; ISO 9660 is the format for data

 CDs, and is *not* used for music CDs.

 You just use a CD-playing application, and you do *not* attempt to

 mount music CDs.



  On Mon, 17 Feb 2003 10:10:16 -0800, [EMAIL PROTECTED] wrote:

 

  [EMAIL PROTECTED] wrote on 02/16/2003 09:18:38
 PM:

 

  No need to mount them to paly music. Just need a cd player app.
 XMMS

  or

  gRip

  work nicely in Gnome, workbone is probably best from teh console.

 

  Adam

 

  Workman is another X11 audio cdplayer that works well.

  --

  Chip

 

  Just to mention 2 others (very compact, will run from the slit in

  Blackbox or the equivalent in Windowmaker and Afterstep): ascd,

  wmcdplayer.

 

  Jud

 

  To Unsubscribe: send mail to [EMAIL PROTECTED]

  with unsubscribe freebsd-questions in the body of the message









 To Unsubscribe: send mail to [EMAIL PROTECTED]

 with unsubscribe freebsd-questions in the body of the message

 To Unsubscribe: send mail to [EMAIL PROTECTED]

 with unsubscribe freebsd-questions in the body of the message

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

cdcontrol(1), which is part of the base system is usually the easiest I
find, i.e.

cdcontrol -f /dev/acd0c info (or play, or stop or whatever)

-- 
Scott A. Moberly
[EMAIL PROTECTED]

UNIX IS user friendly, it's just very choosy about who it calls a friend!




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



Re: Is using mergemaster multiple times ok?

2003-02-17 Thread Giorgos Keramidas
On 2003-02-17 16:11, Tillman [EMAIL PROTECTED] wrote:
 I have a build host that exports /usr/src, /usr/obj and /usr/ports. As
 long as I don't 'd'elete the temporary config files when using
 mergemaster, is it safe to use mergemaster on multiple machines? My main
 concern would be the state of the temporary config files changing
 between mergemaster runs.

M, you should probably delete the /var/tmp/temproot anyway, just
in case 'make distribute' in /usr/src/etc happens to install different
files depending on the machine cpu/architecture/build/etc.


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



Re: Is using mergemaster multiple times ok?

2003-02-17 Thread Kent Stewart
On Monday 17 February 2003 02:11 pm, Tillman wrote:
 Howdy,

 I have a build host that exports /usr/src, /usr/obj and /usr/ports.
 As long as I don't 'd'elete the temporary config files when using
 mergemaster, is it safe to use mergemaster on multiple machines? My
 main concern would be the state of the temporary config files
 changing between mergemaster runs.

Why would you worry? Nothing happens like your are thinking about until 
you do an installworld.

Kent


 TIA,

 -T

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html


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



Flash Plugin error with Mozillia

2003-02-17 Thread David Dooley
Hi 

I get the following error when I start Mozilla.

LoadPlugin: failed to initialize shared library
/usr/X11R6/lib/mozilla/plugins/libflashplayer_linux.so
[/usr/X11R6/lib/mozilla/plugins/libflashplayer_linux.so: Undefined symbol
overrideShellClassRec]

I have installed the www/flashplugin-mozilla-0.4.10_2 de-installed it and
re-installed and still get the error. I have also installed the
www/linux_flashplugin-5.0r51, but still no joy.

Can anyone tell me what port I need to install to get the flash plugin
working.

Thanks for your time. Any hints gratefully recived.

David.

-- 

David Dooley
[EMAIL PROTECTED]



msg19682/pgp0.pgp
Description: PGP signature


Re: Flash Plugin error with Mozillia

2003-02-17 Thread Antoine Jacoutot
On Tuesday 18 February 2003 00:58, David Dooley wrote:
 Can anyone tell me what port I need to install to get the flash plugin
 working.

linux_flashplugin + flashplugin-wrapper


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



Re: X problems on i810 | AddScreen/ScreenInit failed

2003-02-17 Thread Callum Gibson
On Tue, Feb 11, 2003 at 09:09:56AM -0700, Darren Spruell wrote:
}Andrew Lankford wrote:
}To my knowledge, DRI extensions have never worked with i810 on FreeBSD.
}Whenever I felt tinkering with the config to see I could enable DRI, it
}wouldn't take, but I don't think it ever mucked up my screen.  My video
}monitor did have some trouble with the DDC option (on my stable partition,
}just after I had upgraded the bios), but DDC seems to work ok now.  If
}you do get it working, I would stay with a DefaultDepth of 16 instead
}of 24, as a setting of 24 tends to slow demanding apps down without
}noticeably improving picture quality.  Notice also that the HorizSync
}and VertRefresh values are a tiny bit different on mine as well.
}Aargh. I tried both the changes you suggested, as well as adjusting only
}the relevant parts of your config and trying it.. same result in both
}cases. I even pulled a Red Hat 7.3 XFree86-4 config off of a working X
}station and adjusted paths, etc. Same stupid staticy crap with the white
}square ;)

I hope you haven't given up yet - I just noticed your post. I run
XFree86 4.2.0 on an i810. There is no dri yet (see
http://people.freebsd.org/~anholt/dri/), but enabling it in the config
is harmless. 24bit isn't supported by the driver so I run in 16bit which
is fine. The default configurator option to XFree86 gives a config which
doesn't work, incidently.

-- 
Callum Gibson  [EMAIL PROTECTED]
Global Markets IT, Deutsche Bank, Australia   61 2 9258 1620
### The opinions in this message are mine and not Deutsche's ###

# File generated by xf86config.

#
# Copyright (c) 1999 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the Software),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# 
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file.
# **

# **
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **
#
Section Module

# This loads the DBE extension module.

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection  extmod
  Optionomit xfree86-dga   # don't initialise the DGA extension
EndSubSection

# This loads the Type1 and FreeType font modules
Loadtype1
Loadfreetype

# This loads the GLX module
Load  dbe
Load  glx
Load  dri


EndSection

# **
# Files section.  This allows default font and rgb paths to be set
# **

Section Files

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.

RgbPath /usr/X11R6/lib/X11/rgb

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
# 
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
# 

FontPath   /usr/X11R6/lib/X11/fonts/local/
FontPath   /usr/X11R6/lib/X11/fonts/misc/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled

Re: arplookup going mad

2003-02-17 Thread Marc Schneiders
On Mon, 17 Feb 2003, at 16:43 [=GMT-0500], IAccounts wrote:

  Feb 16 18:35:06 voo /kernel: arplookup 213.196.2.97 failed: host is
  not on local network
  Feb 16 18:35:06 voo /kernel: arpresolve: can't allocate llinfo for
  13.16.2.97rt

 I had this back in the summer time, and it was due to having an IP
 address aliased on one of my nics in a block that was not on the local
 subnet.

Thanks for your eply. Alas, this is not the case. The machine has 3 IP
numbers from one half class C from my ISP. And a separate full class C
(199.a.b/24) is routed to it. This all works fine. The IP number the
arplookup complaints are about is from another server, which I have
collocated elsewhere.

For a while I thought I had caused the problem by giving two of the
three IPs my ISP gave me the same reverse DNS names as two on my other
(old) server, which at the time I was considering to take down after
two months or so, but didn't. I described this a few months back here.
Basically reverse DNS now sees the same name for (names and numbers
invented):

OLD NEW
apple.exter.net 13.16.2.97  apple.exter.net 97.98.99.99
pear.joyrider.nl 13.16.2.98 pear.joyrider.nl 97.98.99.98
u.com2.us 97.98.99.110 (main
IP)

The normal DNS only gives out 13.14.15.16 for apple.exter.net. The old
thing. So if the new machine does a lookup for the IP of its own
apple.exter.net, it gets 13.16.2.97, and not the IP on its own NIC,
97.98.99.99. Then it starts looking for 13.16.2.97 and sending these
arp complaints.

This is what I thought. But I think it isn't relevant. For two
reasons:

1. Why not similar problems for pear.joyrider.nl?
2. Why still problems when I change the DNS for apple.exter.net and
give it two IPs in the zone for exter.net?
3. Since reverse DNS is not only a mess with me (because I have to
deal with sys admins of my ISP to get it changed...), but all over the
net, I would think this problem would occur a lot more, if wrong
reverse DNS caused it.

 Check the block the NIC's bound IP is on, then verify that any blocks that
 the aliases are in are reachable from that machine.

Everything works fine, only at times syslog is very busy. By the way,
it stopped as miraculously as it started in the mean time. Which makes
me believe it is a problem caused by some router. I would like to
understand it though...

-- 
[01] All ideas are vintage not new or perfect.
http://logoff.org/


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



re: Detailed Info

2003-02-17 Thread mail
Hi there,
Here is some more Info!

Jetzt endlich auch in Europa!!!

 A recent survey by Nielsen/Netratings says that The Internet
population is rapidly approaching a 'Half a Billion' People!

SO WHAT DOES ALL THIS MEAN TO YOU?

Let's assume that every person has 'only' one E-mail address. That's 500 million 
potential customers and growing! In addition,

   E-mail is without question the most powerful
method of distributing information on earth

Well, I think you get the picture. The numbers and potential are just staggering, but 
it gets even better ...

START YOUR OWN E-MAIL BUSINESS TODAY  ENJOY
THE FOLLOWING BENEFITS:
*
1. ALL CUSTOMERS PAY YOU IN CASH
2. YOU WILL SELL A PRODUCT WHICH COSTS NOTHING TO PRODUCE
3. YOUR ONLY MAJOR OVERHEAD IS YOUR TIME
4. YOU HAVE 100s OF MILLIONS OF POTENTIAL CUSTOMERS
5. YOU GET DETAILED, EASY TO FOLLOW STARTUP INSTRUCTIONS

  
AND THIS IS JUST THE TIP OF THE ICEBERG ...
As you read on you'll discover how a 'Seen on National TV' program is paying out 
excellent returns, every 4 to 5 months from your home, for a minimal initial startup 
investment of only $25 US Dollars. ALL THANKS TO THE COMPUTER AGE AND THE INTERNET!

This is the letter you have been hearing a lot about recently. Due to the popularity 
of this letter on the Internet, a national weekly news program recently devoted an 
entire show to the investigation of this program described below, to see if it really 
can make people money.

This is what one had to say: '' Thanks to this profitable 
opportunity. I was approached many times before but each time 
I passed on it.  I am so glad I finally joined just to see what 
one could expect in return for the minimal effort and money 
required.  To my astonishment, I received a 6 figure income 
in 21 weeks, with money still coming in''.
Pam Hedland, Fort Lee, New Jersey.

=
Here is another testimonial: ''' this program has been around for 
a long time but I never believed in it.  But one day when I received 
this again in the mail I decided to gamble my $25 on it.  I followed 
the simple instructions and walaa . 3 weeks later the money 
started to come in.  First month I only made a small amount of money,  
but the next 2 months after that I made a total of a good 6 figures.  
So far, in the past 8 months by re-entering the program, I have made 
a lot more and I am playing it again.  The key to success in this 
program is to follow the simple steps and NOT change anything.''  

=
More testimonials later but first:

*PRINT THIS NOW FOR YOUR FUTURE REFERENCE  FOLLOW THESE SIMPLE INSTRUCTIONS TO 
MAKE YOUR FINANCIAL DREAMS TRUE! *

* Druckt Euch dieses Formular aus und behaltet es für weitere Fragen  befolgt die 
einfachen Instruktionen und macht Eure Finanziellen Träume wahr

INSTRUCTIONS:

 Order all 5 reports shown on the list below.
Bestellt alle 5 Reporte

---

 For each report, send $5 U.S. CASH, ( WITHIN THE EU 5 € ) THE NAME  NUMBER
OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS to
the person whose name appears ON THAT LIST next to the report.

Sendet für jeden Report 5 Dollar ( in der EU - 5 Euro )in Bar. Den Namen und die 
Nummer des Reports den ihr bestellen wollt,  eure Emailadresse an den Namen der neben 
dem Report steht.
--
  MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE
  TOP LEFT CORNER in case of any mail problems.

Vergesst nicht die Absenderadresse, falls mal etwas daneben geht!

---

   When you place your order, make sure
   you order each of the 5 reports 

Immer alle 5 Reporte bestellen!!


You will need all 5 reports so that you can save them on your computer and resell them.

Ihr braucht alle 5 Reporte um sie weiter zu verkaufen

---
YOUR UP-FRONT COST is ONLY $5 X 5 = $25.00.

Denkt daran, alles was ihr investiert sind nur 5x5 $ od. € = 25 Dollar od. Euro

-

*Within a few days you will receive, via e-mail, each of the 5 reports from 
these 5 different individuals. Save them on your computer so they will be accessible 
for you to send to the 1,000's of people who may order from you. Also make a floppy of 
these reports and keep it at your desk in case something happens to your computer.

In einigen Tagen werded ihr 5 verschiedene Reporte von 5 verschiedenen Leuten 
erhalten. Speichert sie ab um sie dann wieder zu verkaufen.
Macht eine Sicherungskopie auf Diskette!!

ïðèãëàøàåì âàñ Freebsd-questions, ïðèíÿòü ó÷àñòèå â ïðîãðàììå: #4

2003-02-17 Thread arhipov
Title: Òðåíèíã ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé




Èíñòèòóò êîðïîðàòèâíûõ ïàáëèê ðèëåéøíç (ÈÍÊÎÐÏÈÀÐ) ïðèãëàøàåò ïðèíÿòü ó÷àñòèå â ïðîãðàììå:

Òðåíèíã ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé.

Öåëü òðåíèíãà:
ïîâûñèòü ýôôåêòèâíîñòü äåëîâûõ êîíòàêòîâ

Çàäà÷è òðåíèíãà:




  èçó÷èòü çàêîíîìåðíîñòè äåëîâîãî îáùåíèÿ;
  íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü ñîáåñåäíèêà: ïîíèìàòü òî, ÷òî îí «ãîâîðèò» è «íå ãîâîðèò»;
  îñâîèòü íàâûêè áûñòðîé äèàãíîñòèêè ñèòóàöèè è âûáîðà îïòèìàëüíîé ñòðàòåãèè ïîâåäåíèÿ;
  íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü è ïîäàâàòü èíôîðìàöèþ;
  îâëàäåòü ïðàêòè÷åñêèìè íàâûêàìè óáåæäåíèÿ è ìåòîäàìè âëèÿíèÿ;
  îçíàêîìèòüñÿ ñ ïðèíöèïàìè ìàíèïóëÿòèâíûõ òåõíèê è îñâîèòü íàâûêè ïðîòèâîñòîÿíèÿ èì;
  íàó÷èòüñÿ íå òîëüêî èçáåãàòü, íî è ïðîäóêòèâíî èñïîëüçîâàòü êîíôëèêòû;
  îâëàäåòü íàâûêàìè êîíñòðóêòèâíîãî ïîâåäåíèÿ â ñòðåññîâûõ ñèòóàöèÿõ;
  îñâîèòü ñòðàòåãèè ïîâåäåíèÿ â óñëîâèÿõ äåôèöèòà èíôîðìàöèè.



Ïëàíèðóåìûå ðåçóëüòàòû:



  
êîìïåòåíòíîñòü â çàêîíàõ äåëîâîé êîììóíèêàöèè;
  
äîñòèæåíèå ìàêñèìàëüíîãî ðåçóëüòàòà â ïåðåãîâîðíîì ïðîöåññå;
  
óâåðåííîå ïîâåäåíèå â ðàçëè÷íûõ ñèòóàöèÿõ îáùåíèÿ;
  
ñïîñîáíîñòü áûñòðî íàõîäèòü îïòèìàëüíûå ðåøåíèÿ;
  
óìåíèå àíàëèçèðîâàòü è èñïîëüçîâàòü ïîëó÷åííûé îïûò.



Ïðîãðàììà òðåíèíãà
ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé




  
Îáùåå ïðåäñòàâëåíèå î ñòðóêòóðå ïðîöåññà ýôôåêòèâíîé êîììóíèêàöèè
  
Îïðåäåëåíèå êà÷åñòâ, íåîáõîäèìûõ óñïåøíîìó êîììóíèêàòîðó
  
Öåëåïîëàãàíèå
  
×óâñòâèòåëüíîñòü ê ñîáåñåäíèêó è åãî ïñèõè÷åñêîìó ñîñòîÿíèþ
  
Ãèáêîñòü è ðàçíîîáðàçèå â âûáîðå ñòðàòåãèè îáùåíèÿ ñ íèì
  
Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ ïðàêòè÷åñêîãî èñïîëüçîâàíèÿ ÷óâñòâèòåëüíîñòè è ãèáêîñòè


  


  Îçíàêîìëåíèå ñ ýòàïàìè äåëîâîé êîììóíèêàöèè, îñîáåííîñòÿìè êàæäîãî ýòàïà è ñîîòâåòñòâóþùèìè ýôôåêòèâíûìè ñòðàòåãèÿìè ïîâåäåíèÿ

  Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ óñïåøíîé êîììóíèêàöèè íà íà÷àëüíûõ ýòàïàõ îáùåíèÿ («ïðèñîåäèíåíèå» - óñòàíîâëåíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû, âûÿâëåíèå ïîçèöèé, öåííîñòåé è íàèáîëåå çíà÷èìûõ ïîòðåáíîñòåé ñîáåñåäíèêà)

  Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ «ñîïðîâîæäåíèÿ» ñîáåñåäíèêà â åãî ñòðóêòóðå ïîòðåáíîñòåé è öåííîñòåé. Çàêðåïëåíèå è ïîääåðæàíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû (óäåðæàíèå ðàïïîðòà)

  Îñâîåíèå óìåíèé «âåäåíèÿ» êëèåíòà (êîððåêöèÿ åãî óáåæäåíèé ñ ó÷åòîì Âàøèõ èíòåðåñîâ)

  Ðàáîòà ñ ñîìíåíèÿìè è âîçðàæåíèÿìè

  Ïðèíöèïû âçàèìîäåéñòâèÿ â îñòðûõ êîíôëèêòíûõ ñèòóàöèÿõ

  Çíàêîìñòâî ñ ìàíèïóëÿòèâíûìè òåõíîëîãèÿìè



Òðåíåð – êîíñóëüòàíò: Àëåêñåé Øíååð

Äàòà ïðîâåäåíèÿ òðåíèíãà: 14, 15, 16 ìàðòà 2002 ã. ñ 10 äî 18
Ìåñòî ïðîâåäåíèÿ: Ìîñêâà, Ïóëêîâñêàÿ óë.2, ÊÐÖ «Êåíòàâð», 2 ýòàæ, Õóäîæåñòâåííàÿ ãàëåðåÿ
Ïðåäóñìîòðåíû îáåäû è êîôå-áðåéêè.
Ïî îêîí÷àíèè âûäàåòñÿ ñåðòèôèêàò Èíêîðïèàð, ìåòîäè÷åñêîå ïîñîáèå À. Øíååðà è ìåòîäè÷åñêîå ïîñîáèå «Òåîðèÿ è ïðàêòèêà PR â óñëîâèÿõ ñîâðåìåííîé Ðîññèè» Ñ. Àðõèïîâà è Ê. Êðàéíîâà
Ñòîèìîñòü òðåíèíãà: 280 äîëë. ÑØÀ
Äîïîëíèòåëüíàÿ èíôîðìàöèÿ è ðåãèñòðàöèÿ ïî òåë. Â Ìîñêâå:
095 – 459 – 9023
095 – 459 - 9034





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


Re: Is using mergemaster multiple times ok?

2003-02-17 Thread Tillman
On Tue, Feb 18, 2003 at 01:24:36AM +0200, Giorgos Keramidas wrote:
 On 2003-02-17 16:11, Tillman [EMAIL PROTECTED] wrote:
  I have a build host that exports /usr/src, /usr/obj and /usr/ports. As
  long as I don't 'd'elete the temporary config files when using
  mergemaster, is it safe to use mergemaster on multiple machines? My main
  concern would be the state of the temporary config files changing
  between mergemaster runs.
 
 M, you should probably delete the /var/tmp/temproot anyway, just
 in case 'make distribute' in /usr/src/etc happens to install different
 files depending on the machine cpu/architecture/build/etc.

So 'make DESTDIR=/var/tmp/temproot distrib-dirs distribution' in
/usr/src/etc should regenerate /var/tmp/temproot? Any pointers to where
I can find more information on the temproot aspects of
mergemaster/installworld? Or is Handbook 21.4.10.2 basically it?

TIA,

-T

-- 
Page 491: If you want to master emacs, it helps to believe in
reincarnation, because there is no way you are going to learn it all in
a single lifetime.
- Harley Hahn, _The Unix Companion_

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



Re: Flash Plugin error with Mozillia

2003-02-17 Thread Wayne Lubin

I had the same problem and fixed it by installing 
linux_base-7.1_2

If you have an older version of the linux base this
may be your problem.




--- David Dooley [EMAIL PROTECTED] wrote:
 Hi 
 
 I get the following error when I start Mozilla.
 
 LoadPlugin: failed to initialize shared library

/usr/X11R6/lib/mozilla/plugins/libflashplayer_linux.so

[/usr/X11R6/lib/mozilla/plugins/libflashplayer_linux.so:
 Undefined symbol
 overrideShellClassRec]
 
 I have installed the
 www/flashplugin-mozilla-0.4.10_2 de-installed it and
 re-installed and still get the error. I have also
 installed the
 www/linux_flashplugin-5.0r51, but still no joy.
 
 Can anyone tell me what port I need to install to
 get the flash plugin
 working.
 
 Thanks for your time. Any hints gratefully recived.
 
 David.
 
 -- 
 
 David Dooley
 [EMAIL PROTECTED]
 

 ATTACHMENT part 2 application/pgp-signature 



__
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com

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



options USER_LDT

2003-02-17 Thread David Loszewski
is 'options USER_LDT' no longer a valid option in the FreeBSD kernel? I
have FreeBSD 5.0 Release

Dave



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



Re: options USER_LDT

2003-02-17 Thread David Loszewski
nevermind, just answered my own question:

The USER_LDT kernel option is now activated by default.

Dave

On Mon, 2003-02-17 at 23:44, David Loszewski wrote:
 is 'options USER_LDT' no longer a valid option in the FreeBSD kernel? I
 have FreeBSD 5.0 Release
 
 Dave
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


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



kpackage crashes everytime I set a source for packages.

2003-02-17 Thread Jann Röder
Hi,
I'm running FreeBSD 5-release. My problem is:
If I add a FreeBSD ftp mirror to the list of package sources in kpackage. I can 
properly fetch the list of packages from the FTP server. But after if I close kpackage 
and try to open it again, it crashes at startup. To make it work again, I have to 
delete my kpackagerc file (or remove the FTP I added from the config). Does anyone 
else have this problem ? Should I post it to the bug mailinglist ?
Another question: if I set the path to the ports collection in kpackage, it doesn't 
seem to have any effect.

Cheers
Jann

--
Jann Roeder 
[EMAIL PROTECTED] 
ICQ: #29794099 
PGP key ID: 0x01A8A8E7  


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



re: Detailed Info

2003-02-17 Thread mail
Hi there,
Here is some more Info!

Jetzt endlich auch in Europa!!!

 A recent survey by Nielsen/Netratings says that The Internet
population is rapidly approaching a 'Half a Billion' People!

SO WHAT DOES ALL THIS MEAN TO YOU?

Let's assume that every person has 'only' one E-mail address. That's 500 million 
potential customers and growing! In addition,

   E-mail is without question the most powerful
method of distributing information on earth

Well, I think you get the picture. The numbers and potential are just staggering, but 
it gets even better ...

START YOUR OWN E-MAIL BUSINESS TODAY  ENJOY
THE FOLLOWING BENEFITS:
*
1. ALL CUSTOMERS PAY YOU IN CASH
2. YOU WILL SELL A PRODUCT WHICH COSTS NOTHING TO PRODUCE
3. YOUR ONLY MAJOR OVERHEAD IS YOUR TIME
4. YOU HAVE 100s OF MILLIONS OF POTENTIAL CUSTOMERS
5. YOU GET DETAILED, EASY TO FOLLOW STARTUP INSTRUCTIONS

  
AND THIS IS JUST THE TIP OF THE ICEBERG ...
As you read on you'll discover how a 'Seen on National TV' program is paying out 
excellent returns, every 4 to 5 months from your home, for a minimal initial startup 
investment of only $25 US Dollars. ALL THANKS TO THE COMPUTER AGE AND THE INTERNET!

This is the letter you have been hearing a lot about recently. Due to the popularity 
of this letter on the Internet, a national weekly news program recently devoted an 
entire show to the investigation of this program described below, to see if it really 
can make people money.

This is what one had to say: '' Thanks to this profitable 
opportunity. I was approached many times before but each time 
I passed on it.  I am so glad I finally joined just to see what 
one could expect in return for the minimal effort and money 
required.  To my astonishment, I received a 6 figure income 
in 21 weeks, with money still coming in''.
Pam Hedland, Fort Lee, New Jersey.

=
Here is another testimonial: ''' this program has been around for 
a long time but I never believed in it.  But one day when I received 
this again in the mail I decided to gamble my $25 on it.  I followed 
the simple instructions and walaa . 3 weeks later the money 
started to come in.  First month I only made a small amount of money,  
but the next 2 months after that I made a total of a good 6 figures.  
So far, in the past 8 months by re-entering the program, I have made 
a lot more and I am playing it again.  The key to success in this 
program is to follow the simple steps and NOT change anything.''  

=
More testimonials later but first:

*PRINT THIS NOW FOR YOUR FUTURE REFERENCE  FOLLOW THESE SIMPLE INSTRUCTIONS TO 
MAKE YOUR FINANCIAL DREAMS TRUE! *

* Druckt Euch dieses Formular aus und behaltet es für weitere Fragen  befolgt die 
einfachen Instruktionen und macht Eure Finanziellen Träume wahr

INSTRUCTIONS:

 Order all 5 reports shown on the list below.
Bestellt alle 5 Reporte

---

 For each report, send $5 U.S. CASH, ( WITHIN THE EU 5 € ) THE NAME  NUMBER
OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS to
the person whose name appears ON THAT LIST next to the report.

Sendet für jeden Report 5 Dollar ( in der EU - 5 Euro )in Bar. Den Namen und die 
Nummer des Reports den ihr bestellen wollt,  eure Emailadresse an den Namen der neben 
dem Report steht.
--
  MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE
  TOP LEFT CORNER in case of any mail problems.

Vergesst nicht die Absenderadresse, falls mal etwas daneben geht!

---

   When you place your order, make sure
   you order each of the 5 reports 

Immer alle 5 Reporte bestellen!!


You will need all 5 reports so that you can save them on your computer and resell them.

Ihr braucht alle 5 Reporte um sie weiter zu verkaufen

---
YOUR UP-FRONT COST is ONLY $5 X 5 = $25.00.

Denkt daran, alles was ihr investiert sind nur 5x5 $ od. € = 25 Dollar od. Euro

-

*Within a few days you will receive, via e-mail, each of the 5 reports from 
these 5 different individuals. Save them on your computer so they will be accessible 
for you to send to the 1,000's of people who may order from you. Also make a floppy of 
these reports and keep it at your desk in case something happens to your computer.

In einigen Tagen werded ihr 5 verschiedene Reporte von 5 verschiedenen Leuten 
erhalten. Speichert sie ab um sie dann wieder zu verkaufen.
Macht eine Sicherungskopie auf Diskette!!

an easy mouse question 4U but alusive 2Me

2003-02-17 Thread techie
Dear FreeBSD moderators,

First, awesome O/S people!  I thank all of you wholeheartedly. The question 
is that little mouse program or daemonlet that allows you 
to block,  cut and paste from the command line/console TO  X-window or 
Gnome session windows is causing my generic style, p/s 2 mouse not to work 
properly when I start up X.

I was flying thru your sysinstall program in the wee hours of the morning 
loading FreeBSD up, and I don't even remember the name of this application 
or daemonlet that I said yes to at a dialogue window.   So, who's the 
program and where does he live?  I'd like to turn it off. It is starting up 
in one of your run-levels somewhere.

**whatever it is, it creates a ghostlike mouse cursor to show up even when 
you are working in command line/console mode.  

** more remotely, I noticed your device probe calling my generic PS 2 mouse 
a glidepoint on the second psm0:line?? it reads as follows:


psm0: p/s 2 MOuse irq 12 on atkbdc0 (thats right)
psm0: model Glidepoint mouse, device ID 0 (what in tarnation is that??) 

hey, if you guys hook me up, I will treat you to a few pints of New 
Belgium whenever you are in the Albuquerque area.  I promise.

FreeBSD nube,

Dru


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



Apache-modssl and the OpenSSL port

2003-02-17 Thread Tillman
Howdy,

I'm having trouble with the apache13-modssl port:

[root@coyote apache13-modssl]# make certificate TYPE=custom
This port wants the OpenSSL library from the FreeBSD
base system. You can't build against it, while a newer
Version is installed by a port.
Please deinstall the port or undefine USE_OPENSSL_BASE.
*** Error code 1
Stop.

[root@coyote apache13-modssl]# echo $USE_OPENSSL_BASE
no output

Near as I can tell, it wants me to undefine a shell variable that
doesn't exist :-)

There was an update to the port on Jan 20 that says:

- update SSL support.
defaults to openssl port (now 0.9.6.h)
New options:
use the lastest version (now 0.9.7)
USE_OPENSSL_BETA=yes
use teh base version with
USE_OPENSSL_BASE=yes

That sounds like it's /supposed/ to work with the openssl port.

Something that might be related is that I updated my base system
(4.7-STABLE) today, and noticed the note in /user/src/UPGRADING about
the newer version of OpenSSL. As I'm using the port, I didn't think that
would change much.

-T

-- 
Page 30: Leaving a terminal logged in is like leaving your car unlocked
with the keys in the ignition.
- Harley Hahn, _The Unix Companion_

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



ipf ftp proxy problem?

2003-02-17 Thread Shane Hickey
Howdy all,
I have a freebsd firewall and I want to be able to do make both passive
and active ftp client connections from my inside network to the outside
world.  I'm using ipf and ipnat compiled into the kernel.  I followed
the IPF HOWTOs that I've read and I'm hitting a brick wall.
My outside interface is dc0 and let's say my outside IP is 1.1.1.1. 
I've tried both of the following rules in my /etc/ipnat.rules file with
no success.

map dc0 0/0 - 1.1.1.1/32 proxy port 21 ftp/tcp
map dc0 0/0 - 0/32 proxy port ftp ftp/tcp

When I say no success, I mean that I am able to establish a remote ftp
connection, but when I do a 'ls' I get a

425 Can't build data connection: No route to host

I'm sure I'm doing something foolish, so any advice would be greatly
appreciated.  Oh yeah, I'm running FreeBSD5.0-release and IPF version
3.4.29.

Thanks in advance for any help.

--
Shane Hickey : Network/System Consultant
GPG KeyID: 777CBF3F
Key fingerprint: 254F B2AC 9939 C715 278C DA95 4109 9F69 777C BF3F
Listening to: MC5 - 12 I Can Only Give you Everyth


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



Re: options USER_LDT

2003-02-17 Thread Kenneth Culver
It's built in now, it's no longer an option.

On 17 Feb 2003, David Loszewski wrote:

 is 'options USER_LDT' no longer a valid option in the FreeBSD kernel? I
 have FreeBSD 5.0 Release

 Dave



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



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



ulimit -d's upper limit

2003-02-17 Thread chkno
What defines ulimit -d's upper limit?

When I try to raise it, it doesn't appear to move:

# ulimit -d
524288
# ulimit -d 1000 ; ulimit -d
1000
# ulimit -d  ; ulimit -d
524288
# ulimit -d unlimited ; ulimit -d
524288

My system:
$ uname -a
FreeBSD chkno.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Nov
10 02:31:58 PST 2002 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/CHK i386
$ grep memory /var/run/dmesg.boot
real memory  = 536870912 (524288K bytes)
avail memory = 516456448 (504352K bytes)
$ swapinfo
Device  1K-blocks UsedAvail Capacity  Type
/dev/ad1s1b52400063100   46090012%Interleaved
/dev/ad1s2b52416062872   46128812%Interleaved
Total 1048160   125972   92218812%

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



Re: ulimit -d's upper limit

2003-02-17 Thread Duncan Anker
On Tue, 2003-02-18 at 17:10, chkno wrote:
 What defines ulimit -d's upper limit?

MAXDSIZ. It defaults to 512Mb. It can be raised by setting it in the
kernel configuration, or adding

kern.maxdsiz=524288

In your /boot/loader.conf file. Replace 524288 with whatever limit you
want, but don't go above 2^31-1. FreeBSD uses signed ints for this
value, so the results are interesting ...

Regards,
Duncan Anker

-- 
The information contained in this email is confidential. If you are not
the intended recipient, you may not disclose or use the information in
this email in any way. Dark Blue Sea does not guarantee the integrity of
any emails or attached files. The views or opinions expressed are the
author's own and may not reflect the views or opinions of Dark Blue Sea.
Dark Blue Sea does not warrant that any attachments are free from
viruses or other defects. You assume all liability for any loss, damage
or other consequences which may arise from opening or using the
attachments.


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



ïðèãëàøàåì âàñ Questions, ïðèíÿòü ó÷àñòèå â ïðîãðàììå: #2

2003-02-17 Thread arhipov
Title: Òðåíèíã ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé




Èíñòèòóò êîðïîðàòèâíûõ ïàáëèê ðèëåéøíç (ÈÍÊÎÐÏÈÀÐ) ïðèãëàøàåò ïðèíÿòü ó÷àñòèå â ïðîãðàììå:

Òðåíèíã ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé.

Öåëü òðåíèíãà:
ïîâûñèòü ýôôåêòèâíîñòü äåëîâûõ êîíòàêòîâ

Çàäà÷è òðåíèíãà:




  èçó÷èòü çàêîíîìåðíîñòè äåëîâîãî îáùåíèÿ;
  íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü ñîáåñåäíèêà: ïîíèìàòü òî, ÷òî îí «ãîâîðèò» è «íå ãîâîðèò»;
  îñâîèòü íàâûêè áûñòðîé äèàãíîñòèêè ñèòóàöèè è âûáîðà îïòèìàëüíîé ñòðàòåãèè ïîâåäåíèÿ;
  íàó÷èòüñÿ ïðàâèëüíî âîñïðèíèìàòü è ïîäàâàòü èíôîðìàöèþ;
  îâëàäåòü ïðàêòè÷åñêèìè íàâûêàìè óáåæäåíèÿ è ìåòîäàìè âëèÿíèÿ;
  îçíàêîìèòüñÿ ñ ïðèíöèïàìè ìàíèïóëÿòèâíûõ òåõíèê è îñâîèòü íàâûêè ïðîòèâîñòîÿíèÿ èì;
  íàó÷èòüñÿ íå òîëüêî èçáåãàòü, íî è ïðîäóêòèâíî èñïîëüçîâàòü êîíôëèêòû;
  îâëàäåòü íàâûêàìè êîíñòðóêòèâíîãî ïîâåäåíèÿ â ñòðåññîâûõ ñèòóàöèÿõ;
  îñâîèòü ñòðàòåãèè ïîâåäåíèÿ â óñëîâèÿõ äåôèöèòà èíôîðìàöèè.



Ïëàíèðóåìûå ðåçóëüòàòû:



  
êîìïåòåíòíîñòü â çàêîíàõ äåëîâîé êîììóíèêàöèè;
  
äîñòèæåíèå ìàêñèìàëüíîãî ðåçóëüòàòà â ïåðåãîâîðíîì ïðîöåññå;
  
óâåðåííîå ïîâåäåíèå â ðàçëè÷íûõ ñèòóàöèÿõ îáùåíèÿ;
  
ñïîñîáíîñòü áûñòðî íàõîäèòü îïòèìàëüíûå ðåøåíèÿ;
  
óìåíèå àíàëèçèðîâàòü è èñïîëüçîâàòü ïîëó÷åííûé îïûò.



Ïðîãðàììà òðåíèíãà
ýôôåêòèâíûõ äåëîâûõ ìåæëè÷íîñòíûõ êîììóíèêàöèé




  
Îáùåå ïðåäñòàâëåíèå î ñòðóêòóðå ïðîöåññà ýôôåêòèâíîé êîììóíèêàöèè
  
Îïðåäåëåíèå êà÷åñòâ, íåîáõîäèìûõ óñïåøíîìó êîììóíèêàòîðó
  
Öåëåïîëàãàíèå
  
×óâñòâèòåëüíîñòü ê ñîáåñåäíèêó è åãî ïñèõè÷åñêîìó ñîñòîÿíèþ
  
Ãèáêîñòü è ðàçíîîáðàçèå â âûáîðå ñòðàòåãèè îáùåíèÿ ñ íèì
  
Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ ïðàêòè÷åñêîãî èñïîëüçîâàíèÿ ÷óâñòâèòåëüíîñòè è ãèáêîñòè


  


  Îçíàêîìëåíèå ñ ýòàïàìè äåëîâîé êîììóíèêàöèè, îñîáåííîñòÿìè êàæäîãî ýòàïà è ñîîòâåòñòâóþùèìè ýôôåêòèâíûìè ñòðàòåãèÿìè ïîâåäåíèÿ

  Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ óñïåøíîé êîììóíèêàöèè íà íà÷àëüíûõ ýòàïàõ îáùåíèÿ («ïðèñîåäèíåíèå» - óñòàíîâëåíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû, âûÿâëåíèå ïîçèöèé, öåííîñòåé è íàèáîëåå çíà÷èìûõ ïîòðåáíîñòåé ñîáåñåäíèêà)

  Ôîðìèðîâàíèå è ðàçâèòèå íàâûêîâ «ñîïðîâîæäåíèÿ» ñîáåñåäíèêà â åãî ñòðóêòóðå ïîòðåáíîñòåé è öåííîñòåé. Çàêðåïëåíèå è ïîääåðæàíèå äîâåðèòåëüíîé ýìîöèîíàëüíîé àòìîñôåðû (óäåðæàíèå ðàïïîðòà)

  Îñâîåíèå óìåíèé «âåäåíèÿ» êëèåíòà (êîððåêöèÿ åãî óáåæäåíèé ñ ó÷åòîì Âàøèõ èíòåðåñîâ)

  Ðàáîòà ñ ñîìíåíèÿìè è âîçðàæåíèÿìè

  Ïðèíöèïû âçàèìîäåéñòâèÿ â îñòðûõ êîíôëèêòíûõ ñèòóàöèÿõ

  Çíàêîìñòâî ñ ìàíèïóëÿòèâíûìè òåõíîëîãèÿìè



Òðåíåð – êîíñóëüòàíò: Àëåêñåé Øíååð

Äàòà ïðîâåäåíèÿ òðåíèíãà: 14, 15, 16 ìàðòà 2002 ã. ñ 10 äî 18
Ìåñòî ïðîâåäåíèÿ: Ìîñêâà, Ïóëêîâñêàÿ óë.2, ÊÐÖ «Êåíòàâð», 2 ýòàæ, Õóäîæåñòâåííàÿ ãàëåðåÿ
Ïðåäóñìîòðåíû îáåäû è êîôå-áðåéêè.
Ïî îêîí÷àíèè âûäàåòñÿ ñåðòèôèêàò Èíêîðïèàð, ìåòîäè÷åñêîå ïîñîáèå À. Øíååðà è ìåòîäè÷åñêîå ïîñîáèå «Òåîðèÿ è ïðàêòèêà PR â óñëîâèÿõ ñîâðåìåííîé Ðîññèè» Ñ. Àðõèïîâà è Ê. Êðàéíîâà
Ñòîèìîñòü òðåíèíãà: 280 äîëë. ÑØÀ
Äîïîëíèòåëüíàÿ èíôîðìàöèÿ è ðåãèñòðàöèÿ ïî òåë. Â Ìîñêâå:
095 – 459 – 9023
095 – 459 - 9034





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


Lex error?

2003-02-17 Thread Chris Bowlby

 Hi All,

 I'm attempting to do a make build world on my FreeBSD box, but I keep
getting this error each time:

 cc -O -pipe -g  -Wall -I.
-I/usr/src/usr.bin/colldef/../../lib/libc/locale -DCOLLATE_DEBUG
-D__FBSDID=__RCSID -c scan.c
/usr/src/usr.bin/colldef/scan.l:638: warning: `yyunput' defined but not
used
cc -O -pipe -g  -Wall -I. -I/usr/src/usr.bin/colldef/../../lib/libc/locale
-DCOLLATE_DEBUG-D__FBSDID=__RCSID  -static -o colldef parse.o scan.o
-ll
/usr/libexec/elf/ld: cannot find -ll
*** Error code 1

Stop in /usr/src/usr.bin/colldef.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

and as a result I can not complete the build... I've got yacc and bison
both installed and I think it's a lex related error, but I'm not 100%
certain of that...

 I have 7 other FreeBSD box's that work fine when doing a build world and
a quick comparison of them to this one failed to show anything
different... can someone point out what I might be missing?


 Chris Bowlby,
 -
 Manager of Information and Technology.
 [EMAIL PROTECTED]
 www.hub.org
 1-902-542-3657
 -


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



Re: ulimit -d's upper limit

2003-02-17 Thread chkno
  What defines ulimit -d's upper limit?

 MAXDSIZ. It defaults to 512Mb. It can be raised by setting it in the
 kernel configuration, or adding

 kern.maxdsiz=524288

 In your /boot/loader.conf file. Replace 524288 with whatever limit you
 want, but don't go above 2^31-1. FreeBSD uses signed ints for this
 value, so the results are interesting ...

Does the 2^31-1 restriction apply to Alpha/uSPARC/etc?  Does it
become 2^63-1?

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