Re: how to kill a while loop...

2003-01-29 Thread Dan Nelson
In the last episode (Jan 28), Josh Brooks said:
 
 Hi,
 
 I ran a command like:
 
 while `some command` ; do something ; done 
 
 and I missed the PID output when I backgrounded it.
 
 Now I want to kill this while process, but I cannot find it anymore.
 
 I tried to ps auxw | grep while, and grep do and so on, but I cannot find
 the process to kill it.

Two ways: 

1 - Type in jobs -l, which will list all the backgrounded jobs your
shell knows about and their pids.  Then run kill nn, where nn is
the process id, which is the second number.  The first is the job
number, which will usually be 1.
 
2 - If you exited your shell or disowned the job, it won't show up in
'jobs'.  Run ps axl | egrep 'mycommand|PID', and kill the
command's parent process (PPID column).

-- 
Dan Nelson
[EMAIL PROTECTED]

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



CHAP-Password LDAP Auth?

2003-01-29 Thread Hilmi Hilmiev
I have installed RADIUS server with LDAP authentication and mySQL 
accounting. But I have problems with user's who use CHAP password In 
radius.log, I get message:
rlm_ldap: Attribute User-Password is required for authentication. 
Cannot use CHAP-Password
What is wrong? Have a way for solving this problem? I know that the 
problem is cuz LDAP use encrypted password in ldb, but have a way for 
config radius ldap module to work with both of the type password. Any idea?

10x in advanced!




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


tx underrun error when ftp'ing large file

2003-01-29 Thread Redmond Militante
hi
 
i get the following error
 
l0: transmissions error: 90
xl0: tx underrun, increasing tx start threshold to 120 bytes
 
when trying to ftp a large tar.gz file to a dell poweredge network storage appli
ance.
 
the commands i'm using to upload this large tar.gz file are:
 
ftp -n -v storageappliance.organization.com
user myaccount
mypassword
bin
prompt
mput largefile.tar.gz
 
-i've used this method to ftp smaller tar.gz files, but when i try to upload thi
s large file (several gig in size) i get the tx underrun error, and the transfer

 freezes.

i've done some research on this error

i've found the following off the mailing list archives:

According to:
http://www.freebsd.org/cgi/getmsg.cgi?fetch=1651362+1653480+/usr/local/www/db/te
xt/1999/freebsd-questions/19990926.freebsd-questions

Tx under runs occur when the tx state machine cannot get packet
data from memory fast enough to keep up with wire transmit
rate. Setting the start threshold higher increases the number
of bytes which are buffered in the tx fifo which increases the
allowable bus latency.

And according to the linux driver for the 3com cards:
Tx underrun (not enough PCI bus bandwidth).

It's not a problem as far as I know, if the message stops (depending on how
mutch traffic there is on your network, at my FreeBSD box it sometimes rizes to
300 bytes) the systems works fine. 

so - i'm wondering if anyone has deal w this type of issue before, and if so, how to 
configure my nic card to perform this type of ftp transfer.

any advice would be appreciated
thanks again
redmond



msg17093/pgp0.pgp
Description: PGP signature


xmms etc (under freebsd 5)

2003-01-29 Thread al
gentlemen:

tried to install xmms and all the suff related on my
pc (for kde)...

failed during installation: even after (-f)orcing
pkg_add - perl (previous release in tbz) and
Xfree***.

maybe it's of some help.

alex

=
things take time...

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: modules info?

2003-01-29 Thread Toni Schmidbauer
On Tue, Jan 28, 2003 at 02:12:00AM -0500, Roman wrote:
 Does anybody know where could i find some description of kernel modules?

http://www.r4k.net/mod/fbsdfun.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/driverbasics-kld.html

toni
-- 
Terror ist der Krieg der Armen,   | [EMAIL PROTECTED]
Krieg ist der Terror der Reichen. | Toni Schmidbauer
- Sir Peter Ustinov   |



msg17095/pgp0.pgp
Description: PGP signature


Re: Portupgrade and skipping ports?

2003-01-29 Thread Daniel Bye
On Tue, Jan 28, 2003 at 09:06:33PM -0600, Mike Dean wrote:
 I would like to know if there is a way to have portupgrade update all
 ports, except a select few that I want to remain frozen
 (OpenOffice.org, simply because I no longer have the free space to
 rebuild it).  It looks like I may be able to do something with the -B
 switch, but the documentation seems to be a bit lacking as to exactly
 how to use this switch.  Does anyone have any examples of how to
 accomplish what I want?

If this is to be a permanent freeze, you could put it in to the 
/usr/local/etc/pkgtools.conf.  Look for HOLD_PKGS.  It defines an
array of name globs that expand to the name of the held ports.  For
example, I use Exim 3 and don't want to have it upgraded to 4, so my
HOLD_PKGS looks like this:

 HOLD_PKGS = [
'bsdpan-*',
'exim*',
  ]

The bsdpan one seems to be there by default.

Dan

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

-- 
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



Re: Installing customized mod_php4 port

2003-01-29 Thread Andreas Pauley
On Tue, 28 Jan 2003, Stijn Hoop wrote:

 On Tue, Jan 28, 2003 at 03:00:41AM -0800, Adam Weinberger wrote:
  Just run 'make' from the mod_php4 directory. You set all those options
  interactively.
 
 Or for the noninteractive version:
 
 # make PHP4_OPTIONS='\option1\ \option2\ ...' BATCH=yes install
 
 The quotes  backslashes are necessary AFAIK. For a list of option names
 consult scripts/configure.php.
 
 HTH,
 
 --Stijn

Thanks people, I have a working version of PHP now.

I did run into some problems with the SSL options, however.
# apachectl startssl failed with an error message something like 
undefined reference to ssl_onlyonceinit.
This is only a vague memory of the error message, not a word for word 
transcription, unfortunately.

I solved the problem by deinstalling the port and recompiling it without 
any of the ssl options selected.

Regards,
Andreas.

-- 
Only two things are infinite:
the universe and human stupidity,
and I'm not so sure about the former.
-- Albert Einstein



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



Re: errors in 'make buildworld'

2003-01-29 Thread Erik Sabowski
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-building.html

that will tell you whether you should you the the new or traditional 
method for compiling the kernel

erik

On Wednesday 29 January 2003 01:31 am, Bsd Neophyte wrote:
 i see you are recommending i use the traditional way.  do you think
 it will aleviate my problems?


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



Changing the Maximum Segment Size (MSS) of Kame MIP6 Free BSD4.4

2003-01-29 Thread Audsin
Respected Sir/ Madam

I am Dev, doing my research in Centre for Telecommunications Research, 
King's college London. My research project involves evaluating the 
performance of MIP6 TCP in the presence of fragmentation and without 
fragmentation. I am  using Kame MIP6 for Free BSD 4.4 and have configured 
gif0 interface for ipv6ip tunnel. I wish to change the Maximum segment size 
of the TCP. Can you please help me , where i should change the MSS of the 
TCP. Can you tell me where the default size of the MSS mentioned?

Eagerly waiting for the reply

Best Regards
Dev




A. Dev Pramil
Research Student
Center for Telecommunications Research
University of London, Kings College
Strand WC2R 2LS



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


Re: Changing the Maximum Segment Size (MSS) of Kame MIP6 Free BSD4.4

2003-01-29 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-01-29 10:36:57 +:
 I wish to change the Maximum segment size of the TCP. Can you please
 help me , where i should change the MSS of the TCP. Can you tell me
 where the default size of the MSS mentioned?

tcp(4), sysctl -a | grep mss

-- 
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: Which files and directories to backup?

2003-01-29 Thread Brett Harris

On Tue, 28 Jan 2003 11:25:57 -0500 (EST)
Francisco Reyes [EMAIL PROTECTED] wrote:

 On Tue, 28 Jan 2003, Brett Harris wrote:
  The best way that I've found to back my machine's configs up, is to
 create a directory such as /etc/config , *move* all my important
 configuration files to it (firewall, syslogd, rc.conf etc -
 basically anything i'd want to keep for a new machine),
 and then symlink them to their proper locations.
 
 But don't you want to also have an external copy outside the machine?
 What if the whole HD dies?
 

You didn't include it in your reply, but in that email I also wrote:

That way, if it comes time for a backup, all you do is tar and zip that one 
/etc/config directory, and move it somewhere safe. 

Somewhere safe being a CDROM/Backup Tape/remote server/remote location.

Do you think you'd really keep a backup on the same machine? Wouldn't that defeat the 
entire point of backing something up?

-Brett Harris

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



British mirror site

2003-01-29 Thread Laudeman, Victoria
Hello,

I am writing from the University of Lancaster in England on behalf of the UK
Mirror Service.  We currently operate a mirror of your site in conjunction with
our partner institution, the University of Kent at Canterbury.  Please visit
(http://www.mirror.ac.uk/mirrors/) to find your site's listing.

Two weeks ago we sent out a request for each site to update its contact
information with us.  Many sites have replied, but we are still awaiting many
responses. Wth over two hundred mirrors at our site, we really need your help
in collecting this data.  

We will seldom have need to contact you, but in the event of a problem we do
need reliable contact details at the ready.  This is especially true as many
sites are now hiding their contact information in order to avoid spammers and
other undesired e-mails.  Better communications means a better mirror which
means a better use of your site or project.

A web form for entering this information is available at:
http://www.lancs.mirror.ac.uk/nams/cgi-php/form.php

Alternatively an e-mail containing the following brief information would be
completely acceptable:

Site Name:
Site Owner or Organisation:
General Site URL:
General E-Mail:
Authorised Representative Name:
Authorised Representative E-mail:

All data collected will be processed, stored and used in compliance with the
United Kingdom's Data Protection Act 1998.  All use of the information you
provide will be non-commercial and within our objective of serving the British
academic community.  Any personal contact information will be held solely by us
and will not be released to any third party without your approval.  If you have
any concerns or questions about how this data will be used please feel free
contact us.

If possible please have an authorised representative of your organisation/site
submit the form above by 7 February.  Also if you maintain a list of mirrors at
your web site, we would appreciate you including a link to our site.

Thank you,
Victoria Laudeman
Database and Collections Officer
UK Mirror Service
University of Lancaster



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



Re: FreeBSD IPSEC tunnel stoped working.

2003-01-29 Thread Peter Haight
 Looks like the 'spi' are out of sync on the 2 machines. This is after a 
 quick glance, but I know on my IPSec setup, (with manual keys), the 
 spi's have to be such:
 
 Stable in spi == Release out spi
 Release in spi == Stable out spi
 
 Are you using racoon? If not, post your ipsec script.

Here you go:

local_ip=XX.XX.XX.XX
local_net_ip=10.10.1.1
local_net_prefixlen=24
remote_ip=YY.YY.YY.YY
remote_net_ip=192.168.1.1
remote_net_prefixlen=12
remote_net_netmask=255.255.0.0

ifconfig gif0 create
ifconfig gif0 tunnel ${local_ip} ${remote_ip}
ifconfig gif0 inet ${local_net_ip} ${remote_net_ip} netmask ${remote_net_netmask}
setkey -c  EOF
flush;
spdflush;
add XX.XX.XX.XX YY.YY.YY.YY esp 9991 -E blowfish-cbc foobar;
add YY.YY.YY.YY XX.XX.XX.XX esp 9992 -E blowfish-cbc foobar;
spdadd ${local_net_ip}/${local_net_prefixlen} ${remote_net_ip}/${remote_net_prefixlen} 
any -P out ipsec
esp/tunnel/${local_ip}-${remote_ip}/require; spdadd 
${remote_net_ip}/${remote_net_prefixlen}
${local_net_ip}/${local_net_prefixlen} any -P in ipsec 
esp/tunnel/${remote_ip}-${local_ip}/require;
EOF


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



kde meta port, how to make a package

2003-01-29 Thread Wiroth Didier
Hey,

I've have installed kde 3.1 on my networked PC! Is it
possible to make a package of kde3.1 from /usr/ports/kde
to install kde3.1 with pkg_add.

My goal is to burn a cd with already compiled kde3.1
packages and install them on a non-networked pc without
the need to recompile the kde3.1 sources!

Is that possible? Is there something like: make package
in the /usr/ports/kde meta-port, I could execute on my
networked PC?

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



Re: kde meta port, how to make a package

2003-01-29 Thread Lauri Watts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 29 January 2003 14:17, Wiroth Didier wrote:
 Hey,

 Is that possible? Is there something like: make package
 in the /usr/ports/kde meta-port, I could execute on my
 networked PC?

There is precisely make package 

Also, portupgrade's -p switch, which is very nice, and i use it in very 
similar circumstances to you (in my case, a single nfs server on the network 
has the ports installed, and packages are kept up to date on it there)

The packages are kept in /usr/ports/packages/All/, do check that making a 
package in the kde metaport does in fact package up each and all the 
dependencies as well, I know portupgrade does.

Regards,
- -- 
Lauri Watts
KDE Documentation: http://i18n.kde.org/doc/
KDE on FreeBSD: http://freebsd.kde.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (FreeBSD)

iD8DBQE+N9od/gUyA7PWnacRArKXAKCD7tbbNxg2sfbUJWMDZDRmCInNwACgho64
tzEZaxKSzZO92UR3UJAPvm4=
=O1Zc
-END PGP SIGNATURE-


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



make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Wiroth Didier
Hey,

I've noticed that there are a lot of options with make for
example in the /usr/ports/ collections, is there a man,
howto or tutorial somewhere about this options? How do you
find out about this options, the are not mentionned in the
man make pages. So where can I find all the available
options?

There are also special make options for sendmail
configuration files in /etc/mail?!

I found options like: make fetch or make recursive-fetch
(and I assume there are many others) from the mailing
lists, are the written down somewhere? 

Thanks a lot
Didier


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



Re: make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Alex Huth
Am Mittwoch, 29. Januar 2003 15:04 schrieb Wiroth Didier:
 Hey,

 I've noticed that there are a lot of options with make for
 example in the /usr/ports/ collections, is there a man,
 howto or tutorial somewhere about this options? How do you
 find out about this options, the are not mentionned in the
 man make pages. So where can I find all the available
 options?

 There are also special make options for sendmail
 configuration files in /etc/mail?!

 I found options like: make fetch or make recursive-fetch
 (and I assume there are many others) from the mailing
 lists, are the written down somewhere?
Have a look at the handbook, there are some examples and links.


So long ...


Alex Huth

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



RE: How to set-up two 'defaultrouter' IPs?

2003-01-29 Thread Phillip Smith (mailing list)

See reply below...

  To create a somewhat redundant network connection, my friend has 
  connected to business level ADSL connections at his home (32 IPs 
  each). So, he has two routers, on two different networks 
 (ATT/UUNET) 
  and what he's doing is multi-homing his NIC cards and via some 
  interesting DNS set-up, theoretically, there is some network 
  redundancy or failover or something.
  
  Anyway, here's the question... how would I set-up two 
 'defaultrouter' 
  IPs in my rc.conf? Is that were I would do such a thing? 
 I'd like to 
  have the same scenario that he's building with a 
 multi-homed NIC and 
  two IPs per VirtualHost directive. I guess there are actually many 
  steps to accomplish this (as I now start to think about it) but I'm 
  wondering how to set-up the networking piece first.
  
  Many thanks in advance,
 
 Two truly default routes is not really sensical.  You 
 generally play games based on source address, TCP port, or 
 something like that, and 
 make sure that they NAT separately.  [It has to involve NAT, 
 because for networks that small, you can't get routes 
 distributed widely enough to do true multihoming.]
 
 So the answer depends on exactly what hack you want to do.

What I'd like to do is this... right now my NIC answers 212.12.12.212
(for instance) externally and that's the address I use for Apache's
NameVirtualHost directives. I would also like my NIC to answer on
252.12.12.212 (second network connection) and serve the same VirtualHost
directives...

So, what happens is, in NS1.NAMESERVER.NET (which is on the 212 network)
the A record for my box is 212.12.12.212 and, if that network should
fail, the requests will be answered by NS2.NAMESERVER.NET (which is on
the 252 network) and it has an A record for my box of 252.12.12.212. So,
in effect, the name server's availability actually directs the traffic
to the available network connection.

Does that make sense?

p.


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



Re: make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-01-29 15:04:25 +0100:
 I've noticed that there are a lot of options with make for
 example in the /usr/ports/ collections, is there a man,
 howto or tutorial somewhere about this options? How do you
 find out about this options, the are not mentionned in the
 man make pages. So where can I find all the available
 options?

/usr/ports/Mk/*.mk
 
 There are also special make options for sendmail
 configuration files in /etc/mail?!

/etc/mail/Makefile
 
-- 
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



XFree86 package not available on FTP sites?

2003-01-29 Thread Senders, B.A.G.
Hello all,

I wanted to install the XFree86 package on my dusty new FreeBSD 5.0 box, yet
couldn't because the package is unavailable on both ftp.freebsd.org and the
NL
mirror (haven't checked others).

A listing from the right directory (determined by running pkg_add -r
XFree86)
shows the following (from ftp.freebsd.org):

---8---
ftp pwd
257 /pub/FreeBSD/ports/i386/packages-5.0-release/Latest is cwd.
ftp ls XFree86.*
227 Entering Passive Mode (62,243,72,50,221,153)
150 Data connection accepted from 213.46.105.205:1025; transfer starting.
lrwxr-xr-x   1 ftpuser  ftpusers28 Jan 16 19:11 XFree86.tbz -
../All/XFree86-4.2.0_1,1.tbz
226 Listing completed.
---8--- 

That symlink should point to something in this directory:

---8---
ftp cd ../All
250 /pub/FreeBSD/ports/i386/packages-5.0-release/All is new cwd.
ftp ls X*
227 Entering Passive Mode (62,243,72,50,222,2)
150 Data connection accepted from 213.46.105.205:1025; transfer starting.
226 Listing completed.
---8---

There aren't any XFree86 packages to be found at all!  Is the symlink
pointing
to the incorrect place, or are there actually packages missing?  Any
information is appreciated.

Bram Senders

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



acorp winmodem on conexant chip

2003-01-29 Thread Pavel
Hello!
Please help me! I have an internal Acorp winmodem on a conexant
chipset. I installed ltmdm.tgz package but kppp in KDE does not detct
my modem on COM3(coaa2) port. What shall i do to use my modem?
Many thanks. Pavel.


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



Upgrading from 4.7p2 to 4.7p3

2003-01-29 Thread Gerard Samuel
My buildworld is failing.  I've tried getting fresh pulls from 2 
different cvsup mirrors, and I've
tried deleting all content under /usr/src and /usr/obj and starting from 
scratch.
Here is the error -

cc -O -pipe  
-DINFODIR=\/usr/share/info:/usr/local/info:/usr/X11R6/info:.\ 
-DHAVE_CONFIG_H -DLOCALEDIR=\/usr/share/locale\  
-I/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo 
-I/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/lib
-D__FBSDID=__RCSID  -static -o info dir.o display.o doc.o dribble.o 
echo-area.o filesys.o footnotes.o gc.o indices.o info-utils.o info.o 
infodoc.o infomap.o m-x.o man.o nodemenu.o nodes.o search.o session.o 
signals.o terminal.o tilde.o variables.o window.o -ltermcap 
/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/info/../libtxi/libtxi.a
/usr/libexec/elf/ld: cannot find -ltermcap
*** Error code 1

Stop in /usr/src/gnu/usr.bin/texinfo/info.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/texinfo.
*** Error code 1

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

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

Stop in /usr/src.
gatekeeper#

Any help would be appreciated.
Thanks

--
Gerard Samuel
http://www.trini0.org:81/
http://dev.trini0.org:81/



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


KDE 3.1 port?

2003-01-29 Thread Tyler Parrott
Hello all,

 I read this morning on freebsd.kde.org that the 3.1 port had been
released.  I cvsupped my ports tree and I still only seem to have up to
3.0.5.  I'm using 5.0-RELEASE if that makes any difference.  Anyone know
where/how I might get the port or the .tgz?

Thanks
Tyler


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



Re: KDE 3.1 port?

2003-01-29 Thread Miguel Mendez
On 29 Jan 2003 09:46:41 -0500
Tyler Parrott [EMAIL PROTECTED] wrote:

Hi,

  I read this morning on freebsd.kde.org that the 3.1 port had been
 released.  I cvsupped my ports tree and I still only seem to have up
 to 3.0.5.  I'm using 5.0-RELEASE if that makes any difference.  Anyone
 know where/how I might get the port or the .tgz?

It's in the ports tree already, cvsup again :) I know my computer is
still compiling the beast :) If you prefer prebuilt packages, you can
get them from the fruitsalad project: http://rabarber.fruitsalad.org/

Cheers,
-- 
Miguel Mendez - [EMAIL PROTECTED]
GPG Public Key :: http://energyhq.homeip.net/files/pubkey.txt
EnergyHQ :: http://www.energyhq.tk
Of course it runs NetBSD!



msg17115/pgp0.pgp
Description: PGP signature


Analog build fails

2003-01-29 Thread Andreas Widerøe Andersen
I can't get Analog (actually /usr/ports/graphics/gd) to build from ports:

bash-2.05b# make install clean
===  Extracting for analog-5.24,1
 Checksum OK for analog-5.24.tar.gz.
===   analog-5.24,1 depends on shared library: gd.2 - not found
===Verifying install for gd.2 in /usr/ports/graphics/gd
===  Building for gd-1.8.4_6
cc -O -pipe  -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -I. 
`/usr/local/bin/freetype-config --cflags` -I/usr/local/include -c gdttf.c
gdttf.c:14: unterminated `#else' conditional
*** Error code 1

Stop in /usr/ports/graphics/gd/work/gd-1.8.4.
*** Error code 1

Stop in /usr/ports/graphics/gd.
*** Error code 1

Stop in /usr/ports/www/analog.



I got gd-2.0.1_3 installed.

Any help is appreciated. 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


Re: odd lack of fonts in Mozilla 1.2.1

2003-01-29 Thread Robin Damm
John Bleichert [EMAIL PROTECTED] writes:

 Hello All
 
 I've just installed a minimal 4.7 box with X, mwm and Mozilla 1.2.1 (which 
 is just plain mozilla in the ports, cvsup'd tongight). For some reason 
 there are very few fonts available in the preferences in Mozilla, and the 
 ones that are there look *awful*. I installed Netscape 4.8 and Opera and 
 the fonts are fine with them.
 
 Is something busted with native mozilla 1.2.1? Or am I missing something? 
 It takes a long time to build Mozilla on this box...
 

I'm just speculating, but the awful font appearance could be related
to Xft. I build mozilla with the following option:

# make WITHOUT_XFT=yes

This greatly improves font appearance in mozilla (IMHO). There may be
a way to fix this by tuning X, but then you have two problems :)

Do post if you find a workaround other than recompiling with the
above option.

-- 
Robin Damm [EMAIL PROTECTED]

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



cvsup error

2003-01-29 Thread Tyler Parrott
Hello all,

I'm getting the following error when trying to cvsup my ports.any
ideas?

jeenyus# cvsup ports-supfile
Cannot get IP address of my own host -- is its hostname correct?

Thanks
Tyler


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



disconnecting nic

2003-01-29 Thread Wayne Swart
Good day all you smart ppl

I seem to have an unsolvable (unsovable only in my small world) problem.


i have posted this problem to you guys before but no one was able to help
me with it :(

i have two network cards in my box (freebsd 4.7), both are accton 1207f
(dc type) running at 100baseTX full-duplex. as soon as i send high volumes
of data through dc0 to another box on the lan, like for instance over an
ftp connection, dc0 looses its connectivity

by doing an ifconfig dc0 down, and then up again, it brings the connection
back up only to see it fail after a minute or so.

if i remove dc1 completely from the box it works fine
could this be because of irq conflicts even though dc0 and dc1 are not
using the same irq's?

please help me


kind regards
wayne



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



RE: disconnecting nic

2003-01-29 Thread JoeB
The problem you describe is becoming common in the 4.x versions of
FBSD.
I have seen these solutions voiced previously in this list.

1. Check the PC's bios, look for a toggle to disable plug-n-play
function.

2. Check that your PCI Nic card is not in the first or last PCI
expansion
slot on the motherboard.

3. There is a problem with autonegotiation of the media settings
between
your NIC and your switch. The default setting of auto means the Nic
card
should sense the Lan for the switch or hub and set it's media type
to match.
There have been reports of the Nic Card media type changing on the
fly
between
10/100 and halfduplex and fullduplex causing the network to freeze
up.
To stop this use the ifconfig command in the rc.conf file to force
the
media type.  Like this
ifconfig_xl0=inet 10.0.10.2 media 100baseTX mediaopt full-duplex

4 add   option   PCI_ENABLE_IO_MODES
to your kernel source and recompile. See LINT

5. add   device  puc
 option  PUC_FASTINTR
to your kernel source and recompile. See LINT

6. Follow bug fix using this url
http://www.freebsd.org/cgi/query-pr.cgi?pr=40636


Try one of the above one at a time until your problem goes away.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Wayne Swart
Sent: Wednesday, January 29, 2003 10:12 AM
To: FreeBSD Mailing list
Subject: disconnecting nic

Good day all you smart ppl

I seem to have an unsolvable (unsovable only in my small world)
problem.


i have posted this problem to you guys before but no one was able to
help
me with it :(

i have two network cards in my box (freebsd 4.7), both are accton
1207f
(dc type) running at 100baseTX full-duplex. as soon as i send high
volumes
of data through dc0 to another box on the lan, like for instance
over an
ftp connection, dc0 looses its connectivity

by doing an ifconfig dc0 down, and then up again, it brings the
connection
back up only to see it fail after a minute or so.

if i remove dc1 completely from the box it works fine
could this be because of irq conflicts even though dc0 and dc1 are
not
using the same irq's?

please help me


kind regards
wayne



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



WILKO.NET

2003-01-29 Thread The Portal
Dear Sir/madam,  
   
WILKO.NET   -US $ 490 
  
Please note that after years, the registration on the domain name WILKO.NET was not 
renewed and this domain became available to register.  
   
Consequently, we have been approached to market this domain name that has been tracked 
and registered by a client. As a result, WILKO.NET is now available from us for 
IMMEDIATE transfer.   
 
With so many companies that would benefit from using this domain, along with what many 
would consider to be a genuine investment, we expect to find an interested party for 
this excellent .net. 
  
This is a VALUABLE and HIGH PROFILE domain and we believe that this development could 
be of genuine interest and benefit to your operation. Please note that 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 15 minutes and are extremely straightforward - 
absolutely NO technical knowledge required!   
   
For our client's peace of mind, we use an escrow service for all transactions and 
domains are ALWAYS secured by the buyer prior to us receiving any fund. We pay all 
fees connected with the escrow process.   
  
If you would like to use WWW.WILKO.NET for your online business, please contact us at 
your earliest convenience - we will be on hand should you require any further 
assistance or information.   
   
We thank you for your attention and sincerely apologise if this e-mail has not been of 
interest to you.   
   
Sincerely Yours,   
   
Suzanne 
Marketing 
ThePortal.net 

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



Re: cvsup error

2003-01-29 Thread Steve Bertrand
Try adding the following line to the /etc/hosts file:

192.168.1.10myhostname.domain.com

where 192.168.1.10 is your hosts IP. Then take a look in /etc/rc.conf 
for the hostname= directive and verify that it is the same as the entry 
in /etc/hosts.

Steve

Tyler Parrott wrote:

Hello all,

I'm getting the following error when trying to cvsup my ports.any
ideas?

jeenyus# cvsup ports-supfile
Cannot get IP address of my own host -- is its hostname correct?

Thanks
Tyler


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: WILKO.NET

2003-01-29 Thread Paul Everlund

Please wrap your lines at a reasonable length, about 70 characters.

On Wed, 29 Jan 2003, =?ISO-8859-1?Q?The Portal?= wrote:

 Dear Sir/madam,

 WILKO.NET   -US $ 490

 Please note that after years, the registration on the domain name
 WILKO.NET was not renewed and this domain became available to
 register.
[snip]
 With so many companies that would benefit from using this domain,
 along with what many would consider to be a genuine investment, we
 expect to find an interested party for this excellent .net.

Why would anyone want wilko.net as domain name? What is so special
with that??? Is wilko.net more special than dilko.net or bilko.net
or even zilko.net and milko.net?

[big snip]

 We thank you for your attention and sincerely apologise if this
 e-mail has not been of interest to you.

Apologise accepted, but please do not send such mails to this list
again. :-)

 Sincerely Yours,

 Suzanne
 Marketing
 ThePortal.net

Best regards,
Paul


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



mini ITX via and C3 processor

2003-01-29 Thread Aaron
Has anyone tried one of the via Mini-ITX Form Factor boards with freebsd???

http://www.idot.com/TheStore/Desktop/718Spec.asp?Product.id=718Cate.id=5Pr
oduct.status=green

Aaron


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



help understanding hostname cofig

2003-01-29 Thread Aaron
Hello,

I need a little help understanding how I should configure the hostname in
our application. I am trying to install snort from a how-to on the snort
website. It uses mysql,acid,apache and snort with the OS being freebsd 4.6.

It looks very straight forward to follow, but another tech and I cannot seem
to understand what we are doing wrong. We don't have a DNS server on
site.The plan is to put the snort box between the internet firewall and the
LAN. The firewall is also the dhcp server. So exactly what do we want to put
for a qualified domain name??  The plan is to put the snort box between the
internet firewall and the LAN. The firewall is also the dhcp server.
Problem is that the OS says it cannot resolve the hostname. Similar problems
come later with mysql.

I have looked at several lists and books on the subject but not turning up a
lot of information related to my problem.
I know this can't be that hard. We would appreciate any guidance.

Thank you,
Aaron


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



Re: KDE 3.1 port?

2003-01-29 Thread Andrew Y Ng
I got KDE 3.1 installed and it's absolutely worth the wait! simply amazing! I
got the packages from fruitsalad and recompiled kdenetwork and kdegraphics to
get mozilla plugins and kamera/gphoto2 support. now I'm compiling kdepim3.

i looked into getting s/mime working with gpg in KMail, looks like it's some
work just to get the plugin to do s/mime, so i didn't feel like wasting too
much time as I use Mutt for my mails most of the time... let me know if there
is an easier way to get openpgp s/mime mails without doing all that stuff on
the kmail website... :) i dont think kmail came standard with x.509 support
either, but both of these are listed as the new features of KDE 3.1. hmm...

/ayn

On  0, Miguel Mendez [EMAIL PROTECTED] wrote:
 On 29 Jan 2003 09:46:41 -0500
 Tyler Parrott [EMAIL PROTECTED] wrote:
 
 Hi,
 
   I read this morning on freebsd.kde.org that the 3.1 port had been
  released.  I cvsupped my ports tree and I still only seem to have up
  to 3.0.5.  I'm using 5.0-RELEASE if that makes any difference.  Anyone
  know where/how I might get the port or the .tgz?
 
 It's in the ports tree already, cvsup again :) I know my computer is
 still compiling the beast :) If you prefer prebuilt packages, you can
 get them from the fruitsalad project: http://rabarber.fruitsalad.org/
 
 Cheers,
 -- 
 Miguel Mendez - [EMAIL PROTECTED]
 GPG Public Key :: http://energyhq.homeip.net/files/pubkey.txt
 EnergyHQ :: http://www.energyhq.tk
 Of course it runs NetBSD!



-- 
andrew y ng  [EMAIL PROTECTED]  http://andrewng.com
independent computer consultants http://aynassociates.com




msg17127/pgp0.pgp
Description: PGP signature


Re: FreeBSD IPSEC tunnel stoped working.

2003-01-29 Thread Steve Bertrand
Peter Haight wrote:


Looks like the 'spi' are out of sync on the 2 machines. This is after a 
quick glance, but I know on my IPSec setup, (with manual keys), the 
spi's have to be such:

Stable in spi == Release out spi
Release in spi == Stable out spi

Are you using racoon? If not, post your ipsec script.
   


Here you go:





local_ip=XX.XX.XX.XX
local_net_ip=10.10.1.1
local_net_prefixlen=24
remote_ip=YY.YY.YY.YY
remote_net_ip=192.168.1.1
remote_net_prefixlen=12
remote_net_netmask=255.255.0.0

ifconfig gif0 create
ifconfig gif0 tunnel ${local_ip} ${remote_ip}
ifconfig gif0 inet ${local_net_ip} ${remote_net_ip} netmask ${remote_net_netmask}
setkey -c  EOF
flush;
spdflush;
add XX.XX.XX.XX YY.YY.YY.YY esp 9991 -E blowfish-cbc foobar;
add YY.YY.YY.YY XX.XX.XX.XX esp 9992 -E blowfish-cbc foobar;
spdadd ${local_net_ip}/${local_net_prefixlen} ${remote_net_ip}/${remote_net_prefixlen} any -P out ipsec
esp/tunnel/${local_ip}-${remote_ip}/require; spdadd ${remote_net_ip}/${remote_net_prefixlen}
${local_net_ip}/${local_net_prefixlen} any -P in ipsec esp/tunnel/${remote_ip}-${local_ip}/require;
EOF


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


 

This is ok on one machine. Copy the script to the other machine, and 
swap out all of the 'local' variables with the values of the 'remote' 
variables and vise versa. This will allow the keys to be configured 
correctly. If this still does not work, let me know. I wrote a perl 
program that will automatically configure a vpn tunnel for you, and it 
produces 2 scripts. One for localhost and the other for remote host. It 
works for me every time.

Steve


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


cvsup problem with premature EOF from server

2003-01-29 Thread yew chin
Greetings everybody
I m currently using freebsd release 4.7
and I want to upgrade it to 4.7 stable.
When i try to cvsup for the source,
I receive an error message premature EOF from server
and i couldn't cvsup

here is how the message looks like:

Connecting to cvsup14.freebsd.org
Connected to cvsup14.freebsd.org
Server software version: SNAP_16_1e
Negotiating file attribute support
Exchanging collection information
Establishing multiplexed-mode data connection
Running
Updating collection src-all/cvs
Detailer failed: Premature EOF from server
Will retry at 08:51:16

I try to search the web for this problem and see
similiar problems happen to someone.
Unfortunately, i can't find any solution to it.
Thanx for lookings at this problems.
Please e-mail me if any of you know how to solve this
problems.
Thanx
 From: Yew Chin


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: KDE 3.1 port?

2003-01-29 Thread Lauri Watts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 29 January 2003 17:40, Andrew Y Ng wrote:
 I got KDE 3.1 installed and it's absolutely worth the wait! simply amazing!
 I got the packages from fruitsalad and recompiled kdenetwork and
 kdegraphics to get mozilla plugins and kamera/gphoto2 support. now I'm
 compiling kdepim3.

 i looked into getting s/mime working with gpg in KMail, looks like it's
 some work just to get the plugin to do s/mime, so i didn't feel like
 wasting too much time as I use Mutt for my mails most of the time... let me
 know if there is an easier way to get openpgp s/mime mails without doing
 all that stuff on the kmail website... :) i dont think kmail came standard
 with x.509 support either, but both of these are listed as the new features
 of KDE 3.1. hmm...

Some of the team are working on the libs that are needed for s/mime Ägypten 
support right now, so if you'd like to be our test bunny with it, drop by 
irc.freenode.net #kde-freebsd later this evening, or if you want, I can mail 
you later when they are ready to test.

Once the support libraries are in ports, it will be a very simple operation to 
set up.

Regards,
- -- 
Lauri Watts
KDE Documentation: http://i18n.kde.org/doc/
KDE on FreeBSD: http://freebsd.kde.org/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (FreeBSD)

iD8DBQE+OAk2/gUyA7PWnacRAmi1AJ9jwWaMqVPAJQVqzLkYYLn5l4lZZACfRLQV
qxDrkP4xrgQNuSR+IWYx9NI=
=s7Jm
-END PGP SIGNATURE-


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



Free Immigration Guide To USA

2003-01-29 Thread jon
 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 charset=ISO-8859-1;
charset=ISO-8859-1;
charset=ISO-8859-1;

 

Re: (VIRUS REMOVED) Window.document.referrer

2003-01-29 Thread Google Programming-contest Autoresponder

[ This is an automatic reply to your email to
  [EMAIL PROTECTED]  A Google staffer will follow
  up with you directly if you require additional information. ]

Thanks for your interest in the Google Programming Contest. If you are
writing to request the full data CDs, please be advised that they will
not available until late February. You can download small and medium
sized sample data files at:

http://www.google.com/programming-contest/

We recommend that you begin with these smaller files before scaling
your code to the full data set.

Thanks for writing to Google and good luck with the contest.

Sincerely,

The Google Team

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



Creative Audigy soundblaster support

2003-01-29 Thread Alec
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



Re: xmms etc (under freebsd 5)

2003-01-29 Thread Siegbert Baude

Hi Alex,


tried to install xmms and all the suff related on my
pc (for kde)...

failed during installation: even after (-f)orcing
pkg_add - perl (previous release in tbz) and
Xfree***.

maybe it's of some help.


I can just say, that I did the very same this night and just now I am 
using KDE 3.1 and xmms. So please report more specific errors to track 
down your problem.

Ciao
Siegbert


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


Re: Creative Audigy soundblaster support

2003-01-29 Thread Pierrick Brossin
Hi !

 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.

Oh I can't believe it...

You're THE man dude !!! I've been waiting for it a long time ;P

I'm not skilled enough to modify the drivers. I have C and C++ knowledges
but
never did anything with drivers before so I dunno how it works :)

 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.. :)

If you need any help just ask me I'll be there to help!

Cya



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



kern polling and kern.polling.user_frac

2003-01-29 Thread Mike
Greetings
 I am running 5.0 and wish to enable kern.polling.enable
as per the NOTES file in /usr/sys/src/i386/conf/NOTES
When I try to do a sysctl kern.polling.enable
I get no such oid.
Doing a sysctl -a | grep polling returns nothing.
Also if I try to do a sysctl kern.polling.user_frac I as well get no such OID.
Is this value outdated in 5.0?
I did a sysctl -a and looked through all the settings and did not find much
closely associated.
I wish to compile it right into the kernel yet I thought doing a sysctl 
first and seeing
how the machine responds first would be wiser.
Any comments suggestions would be appreciated thanks
Mike


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


Re: How to set-up two 'defaultrouter' IPs?

2003-01-29 Thread Lowell Gilbert
Phillip Smith (mailing list) [EMAIL PROTECTED] writes:

 What I'd like to do is this... right now my NIC answers 212.12.12.212
 (for instance) externally and that's the address I use for Apache's
 NameVirtualHost directives. I would also like my NIC to answer on
 252.12.12.212 (second network connection) and serve the same VirtualHost
 directives...
 
 So, what happens is, in NS1.NAMESERVER.NET (which is on the 212 network)
 the A record for my box is 212.12.12.212 and, if that network should
 fail, the requests will be answered by NS2.NAMESERVER.NET (which is on
 the 252 network) and it has an A record for my box of 252.12.12.212. So,
 in effect, the name server's availability actually directs the traffic
 to the available network connection.
 
 Does that make sense?

Sure.  What you want isn't two default routers, because at any given
time there's only one way you want to route this traffic.  What you
really want is to change default router when the outside world sees
one as down.  A little tricky, because the system itself might not see
main network as problematic, even though the rest of the Internet does.

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



Re: errors in 'make buildworld'

2003-01-29 Thread Lowell Gilbert
Bsd Neophyte [EMAIL PROTECTED] writes:

 I'm getting the following error in the make buildworld portion of
 rebuilding my kernel:
 
 
 mkdep -f .depend -a  /usr/src/usr.bin/jot/jot.c
 echo jot: /usr/obj/usr/src/i386/usr/lib/libc.a   .depend
 === usr.bin/kdump
 sh /usr/src/usr.bin/kdump/mkioctls /usr/obj/usr/src/i386/usr/include 
 ioctl.c
 
 
 Logged out by the system.
 *** Signal 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.

Can you retry it with newer sources?

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



Re: make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Mike Meyer
In [EMAIL PROTECTED], Wiroth Didier [EMAIL PROTECTED] typed:
 I've noticed that there are a lot of options with make for
 example in the /usr/ports/ collections, is there a man,
 howto or tutorial somewhere about this options? How do you
 find out about this options, the are not mentionned in the
 man make pages. So where can I find all the available
 options?

All of them? /usr/ports/Mk/bsd.ports.mk. However, a readable list of
the most useful ones, with descriptions, can be found by man ports.

mike
-- 
Mike Meyer [EMAIL PROTECTED]  http://www.mired.org/consulting.html
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

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



Moving sendmail mail files

2003-01-29 Thread Steve Warwick
Hi All, 

I am trying to move Sendmail mail files from /var/mail to each users home
directory (this will help with back up and disk space). However, I have not
managed to get sendmail to recognize the new mail file location.

Any suggestions?


TIA

Steve


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



Re: Moving sendmail mail files

2003-01-29 Thread Christopher Meiklejohn
What local delivery agent are you using?

Here are procmail instructions that I used at one point:

http://freebsd.peon.net/tutorials/9/

-Chris

- Original Message -
From: Steve Warwick [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 1:43 PM
Subject: Moving sendmail mail files


 Hi All,

 I am trying to move Sendmail mail files from /var/mail to each users home
 directory (this will help with back up and disk space). However, I have
not
 managed to get sendmail to recognize the new mail file location.

 Any suggestions?


 TIA

 Steve


 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



portsentry

2003-01-29 Thread Phillip Smith

Quick question...

What's the best way to start portsentry on reboot?

Many thanks,

phillip.



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



Re: odd lack of fonts in Mozilla 1.2.1

2003-01-29 Thread John Bleichert
On Wed, 29 Jan 2003, Robin Damm wrote:
 Subject: Re: odd lack of fonts in Mozilla 1.2.1
 
 John Bleichert [EMAIL PROTECTED] writes:
 
  Hello All
  
  I've just installed a minimal 4.7 box with X, mwm and Mozilla 1.2.1 (which 
  is just plain mozilla in the ports, cvsup'd tongight). For some reason 
  there are very few fonts available in the preferences in Mozilla, and the 
  ones that are there look *awful*. I installed Netscape 4.8 and Opera and 
  the fonts are fine with them.
  
  Is something busted with native mozilla 1.2.1? Or am I missing something? 
  It takes a long time to build Mozilla on this box...
  
 
 I'm just speculating, but the awful font appearance could be related
 to Xft. I build mozilla with the following option:
 
 # make WITHOUT_XFT=yes
 
 This greatly improves font appearance in mozilla (IMHO). There may be
 a way to fix this by tuning X, but then you have two problems :)
 
 Do post if you find a workaround other than recompiling with the
 above option.
 
 -- 
 Robin Damm [EMAIL PROTECTED]
 

ok - thanks for the suggestion. I'm building world on that box right now. 
It's an old one, it will be done this afternoon. Then I'll try and rebuild 
Mozilla and try your suggestion.

JB

#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg


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



Re: portsentry

2003-01-29 Thread Stacey Roberts
Hi,

On Wed, 2003-01-29 at 19:03, Phillip Smith wrote:
 Quick question...
 
 What's the best way to start portsentry on reboot?
 
 Many thanks,
 

You can write a simple start-up script that does that for you. Here's
what I have in /usr/local/etc/rc.d:

#!/bin/sh

PORTSENTRY=/usr/local/bin/portsentry

case $1 in
start)
${PORTSENTRY} -tcp  echo  PortSentry starting in TCP
mode...
${PORTSENTRY} -udp  echo  PortSentry starting in UDP
mode...
;;

stop)
killall `basename ${PORTSENTRY}`
;;
*)
echo 
echo Usage: `basename $0` { start | stop }
echo 
;;
esac

As far as I know, portsentry doesn't come with one, so you can just
write a nice short script like the one above, if you like. Make sure
though, to make it executable before rebooting.

Hope this helps.

Regards,

Stacey

 phillip.
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
Stacey Roberts
B.Sc (HONS) Computer Science

Web: www.vickiandstacey.com



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



Re: Moving sendmail mail files

2003-01-29 Thread Chuck Swiger
On Wednesday, January 29, 2003, at 01:43  PM, Steve Warwick wrote:

I am trying to move Sendmail mail files from /var/mail to each users home
directory (this will help with back up and disk space). However, I have 
not
managed to get sendmail to recognize the new mail file location.

sendmail doesn't handle local mail delivery; /usr/libexec/mail.local or 
another LDA like procmail does.  For instance, see man mail.local:

   -h filename
 Store incoming mail in filename  in  the  user's
 home  directory  instead  of a system mail spool
 directory.


and /usr/src/contrib/sendmail/mail.local/mail.local.c:

char*HomeMailFile = NULL;   /* store mail in homedir */

-Chuck

   Chuck Swiger | [EMAIL PROTECTED] | All your packets are belong to 
us.
   
-+---+---
   The human race's favorite method for being in control of the facts
is to ignore them.  -Celia Green


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


Re: portsentry

2003-01-29 Thread Paul Chvostek

Hi Phillip.

On Wed, Jan 29, 2003 at 02:03:03PM -0500, Phillip Smith wrote:

 What's the best way to start portsentry on reboot?

There doesn't seem to be one build by the port, so I wrote a
/usr/local/etc/rc.d/portsentry.sh that looks someting like this:

#!/bin/sh
case $1 in
start)
[ -x /usr/local/bin/portsentry ]  /usr/local/bin/portsentry -tcp
echo -n  portsentry
;;
stop)
killall portsentry
;;
esac


I've seen others punt and simply add /usr/local/bin/portsentry -tcp to
their /etc/rc.local.  It's not as SysV-compliant, but it works.

-- 
  Paul Chvostek [EMAIL PROTECTED]
  Operations / Abuse / Whatever
  it.canada, hosting and development   http://www.it.ca/


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



Re: portsentry

2003-01-29 Thread Ben Williams
Wednesday, January 29, 2003, 2:03:03 PM, you wrote:


PS Quick question...

PS What's the best way to start portsentry on reboot?

PS Many thanks,

PS phillip.


I use a script in /usr/local/etc/rc.d

-- 
Benmailto:[EMAIL PROTECTED]


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



sysinstall suddenly quitting

2003-01-29 Thread Randy Schultz
Hey all,

I've got a 4.6 system that I'm trying to get to 4.7.  I've dropped on the
sysinstall from 4.7(per the docs).  I run it as 
/stand/sysinstall installUpgrade.  When I get to the Choose Installation
Media screen I go into Options to change the Release Name.  Regardless of
what I do on this screen, in fact even if I do nothing at all, when I press
'Q' to quit sysinstall exits, dropping right to the commandline.  On the 
screen it says chflags'ing old binaries - please wait.  There doesn't 
seem to be anything about this in docs or list/newsgroup archives and I've
tried a number of different things - making sure I'm root, perms on chflags,
getting chflags from the 4.7 dist, even different term types and keyboards
(hey - maybe there was some weird key bounce going on ;).  I'm guessing
PEBCAK but am not sure where to look.

-- 
 Randy([EMAIL PROTECTED])  715-726-2832  *

 The BeaSD Cometh


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



Need helping lengthening timeouts for sendmail...

2003-01-29 Thread Philip Hallstrom
Hi all -
Two weeks ago nwlink.com upgraded it's mail servers.  Ever since
that time I can not email anyone whose email is handled by those servers.
What's even more frustrating is that my home server, same setup, same DSL
(through nwlink.com even), but on a different subnet cause it's in a
different city, has no problems whatsoever.

The messages I get back from processing the queue manually with a lot of
debugging are:

Running /var/spool/mqueue/h0THo5Sc018988 (sequence 2 of 11)
dowork(/var/spool/mqueue/h0THo5Sc018988)
[EMAIL PROTECTED]... Connecting to mx1.pacifier.net. via esmtp...
[EMAIL PROTECTED]... Connecting to mx3.pacifier.net. via esmtp...
[EMAIL PROTECTED]... Connecting to mx2.pacifier.net. via esmtp...
[EMAIL PROTECTED]... Connecting to mx4.pacifier.net. via esmtp...

If I telnet to those IP's above on port 25, it does take about 60-90
seconds to connect, but it does connect.  I've fiddled with the various
Timeout paramaters in my sendmail.cf and submit.cf, but without any luck.

I'm running sendmail 8.12.3 on FreeBSD 4.5-stable.

I've gone round and round with them (for two weeks now) and they agree
there's something wrong, and are now looking into their network issues,
but in the meantime, I need help getting mail to send?

So... is there anyway to get sendmail to just wait and wait and wait for
that connection to appear?  Or is there an easy way to tell it that intead
of trying mx#.pacifier.net to use smtp.nwlink.com instead?

Thanks folks...

this is driving me nuts.

-philip


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



Re: odd lack of fonts in Mozilla 1.2.1

2003-01-29 Thread Joe Marcus Clarke
On Wed, 2003-01-29 at 00:38, John Bleichert wrote:
 Hello All
 
 I've just installed a minimal 4.7 box with X, mwm and Mozilla 1.2.1 (which 
 is just plain mozilla in the ports, cvsup'd tongight). For some reason 
 there are very few fonts available in the preferences in Mozilla, and the 
 ones that are there look *awful*. I installed Netscape 4.8 and Opera and 
 the fonts are fine with them.
 
 Is something busted with native mozilla 1.2.1? Or am I missing something? 
 It takes a long time to build Mozilla on this box...
 
 I have these fonts installed:
 
 XFree86-font100dpi-4.2.0  
 XFree86-font75dpi-4.2.0   
 XFree86-fontCyrillic-4.2.0_4  
 XFree86-fontDefaultBitmaps-4.2.0
 XFree86-fontEncodings-4.2.0   
 XFree86-fontScalable-4.2.0
 Xft-2.1   
 bitmap-fonts-1.0  
 fontconfig-2.1_2  
 freetype2-2.1.2   
 mozilla-fonts-1.0_1   
  ^^

This absolutely breaks Mozilla with Xft support.  It's mentioned in the
Makefile.  I recommend installing x11-fonts/webfonts to give you nice
set of TrueType fonts for Mozilla.  And, of course, you need to remove
this package.

Joe


   
 
 Pointers appreciated - never had this happen before - thanks!
 
 JB
 
 #  John Bleichert 
 #  http://vonbek.dhs.org/latest.jpg
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
PGP Key : http://www.marcuscom.com/pgp.asc



signature.asc
Description: This is a digitally signed message part


VirusProtection and IMAP

2003-01-29 Thread Gannater Jnos
Virus:
What kind of anti virus software should I use to protect my
BSD system which is free and really kill's viruses?

IMAP:
Where can I tell freeBSD which IMAP software should he use?
Like I installed cyrus and imapd-uw. So which one the system
is using and how can I switch between them?



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



ucspi-unix compile problems

2003-01-29 Thread M. Brownsworth
I'm having a problem compiling ucspi-unix-0.36 on the new mail host 
I'm configuring to run qmail.  Although its sister program, 
ucspi-tcp-0.88, compiled just fine, ucspi-unix's compile bombs due to 
a missing library:

su-2.05b# make
( echo '#!/bin/sh'; echo 'main=$1; shift'; echo exec `head -1 
conf-ld` '-o $main $main.o ${1+$@}' -lsysdeps; ) load
chmod 755 load
( echo '#!/bin/sh';  echo 'source=$1; shift';  echo 'base=`echo 
$source | sed -e s:.c$::`';  echo exec `head -1 conf-cc` '-I. 
-o ${base}.o -c $source ${1+$@}';  ) compile
chmod 755 compile
./compile unixclient.c
./compile env.c
env.c:4: sysdeps.h: No such file or directory
*** Error code 1

Stop in /usr/local/src/ucspi-unix-0.36.

So it can't find sysdeps.h.  A locate can't seem to come up with one, 
either.  A Google search using ucspi-unix, sysdeps, and freebsd 
turns up empty.  What the heck is the sysdeps library and why don't I 
have it?  (Or why does ucspi-unix need it?)

According to my understanding, vmailmgr, the password authentication 
module I plan to use with qmail and courier-imap, needs ucspi-unix. 
Specifically, it needs a program named unixserver (compiled with 
ucspi-unix), which is used to start vmailmgrd:

/usr/bin/unixserver /tmp/.vmailmgrd /usr/local/sbin/vmailmgrd \
21 | /var/qmail/bin/splogger 

I'm not sure if something else, perhaps ucspi-tcp, can substitute. 
In fact, given the huge thrash involved in installing qmail and its 
myriad of support programs, I'm not sure of much anything at this 
point.

If you have an answer to this problem, please cc me when you post, as 
I'm not a member of the list.

Here are my system specs:

su-2.05b# uname -a
FreeBSD apache.willamette.net 4.7-RELEASE FreeBSD 4.7-RELEASE #1: Thu 
Jan  9 10:02:57 PST 2003 
[EMAIL PROTECTED]:/usr/src/sys/compile/APACHE  i386

.\\ichelle

Michelle Brownsworth
System Administrator
Willamette.Net
http://www.willamette.net
Phone (541) 465-3282
Fax   (541) 465-1194

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


ibm-db2

2003-01-29 Thread Brian Henning
Hello-
does there exist a freebsd verson of db2 for freebsd?
where could i find it?

Thanks,
brian

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



Re: Need helping lengthening timeouts for sendmail...

2003-01-29 Thread Philip Hallstrom
I found a temporary hack that solves my most immediate problem of sending
mail to @nwlink.com addresses by adding the following to
/etc/mail/mailertable

nwlink.com  smtp:[smtp.nwlink.com]

Of course any other domains hosted at nwlink.com still fail, but this will
get me by till they fix it.

What would be really cool is if I could add:

mx:mx1.pacifier.net smtp:[smtp.nwlink.com]

and have it redirect all mail that would have gone to mx1.pacifier.net to
smtp.nwlink.com :-)

-philip

On Wed, 29 Jan 2003, Philip Hallstrom wrote:

 Hi all -
   Two weeks ago nwlink.com upgraded it's mail servers.  Ever since
 that time I can not email anyone whose email is handled by those servers.
 What's even more frustrating is that my home server, same setup, same DSL
 (through nwlink.com even), but on a different subnet cause it's in a
 different city, has no problems whatsoever.

 The messages I get back from processing the queue manually with a lot of
 debugging are:

 Running /var/spool/mqueue/h0THo5Sc018988 (sequence 2 of 11)
 dowork(/var/spool/mqueue/h0THo5Sc018988)
 [EMAIL PROTECTED]... Connecting to mx1.pacifier.net. via esmtp...
 [EMAIL PROTECTED]... Connecting to mx3.pacifier.net. via esmtp...
 [EMAIL PROTECTED]... Connecting to mx2.pacifier.net. via esmtp...
 [EMAIL PROTECTED]... Connecting to mx4.pacifier.net. via esmtp...

 If I telnet to those IP's above on port 25, it does take about 60-90
 seconds to connect, but it does connect.  I've fiddled with the various
 Timeout paramaters in my sendmail.cf and submit.cf, but without any luck.

 I'm running sendmail 8.12.3 on FreeBSD 4.5-stable.

 I've gone round and round with them (for two weeks now) and they agree
 there's something wrong, and are now looking into their network issues,
 but in the meantime, I need help getting mail to send?

 So... is there anyway to get sendmail to just wait and wait and wait for
 that connection to appear?  Or is there an easy way to tell it that intead
 of trying mx#.pacifier.net to use smtp.nwlink.com instead?

 Thanks folks...

 this is driving me nuts.

 -philip


 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: VirusProtection and IMAP

2003-01-29 Thread Chuck Swiger
On Wednesday, January 29, 2003, at 02:47  PM, Gannater János wrote:

Virus:
What kind of anti virus software should I use to protect my
BSD system which is free and really kill's viruses?


Most Unix users don't need anti-virus software; someone gave a reference 
to chkrootkit under the ports which will look for rootkits.

IMAP:
Where can I tell freeBSD which IMAP software should he use?
Like I installed cyrus and imapd-uw. So which one the system
is using and how can I switch between them?


Take a look at /etc/inetd.conf, although it's also possible to configure 
the mail daemons to work as standalone programs.

-Chuck

   Chuck Swiger | [EMAIL PROTECTED] | All your packets are belong to 
us.
   
-+---+---
   The human race's favorite method for being in control of the facts
is to ignore them.  -Celia Green


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


Re: help understanding hostname cofig

2003-01-29 Thread Toomas Aas
Hi!

 We don't have a DNS server on site.The plan is to put the snort box
 between the internet firewall and the LAN. The firewall is also the
 dhcp server. So exactly what do we want to put for a qualified domain
 name??  The plan is to put the snort box between the internet
 firewall and the LAN. The firewall is also the dhcp server.

I assume you are using RFC1918 (private) IP addresses on your LAN 
behind the firewall. In that case the hostname is purely up to you to 
invent. From the root shell, enter the following command:

hostname snortbox.our.net

Add a line like this to /etc/hosts:

10.0.0.1snortbox.our.net snortbox

(assuming 10.0.0.1 is the IP address of your snort box)

Add a line like this to /etc/rc.conf:

hostname=snortbox.our.net

If you want to be able to access the snort box by name from other hosts 
on your network, then you need to also modify /etc/hosts on these other 
hosts accordingly. 

You probably don't want to let your DHCP server to assign a dynamic IP 
address to your snort box.
--
Toomas Aas | [EMAIL PROTECTED] | http://www.raad.tartu.ee/~toomas/
* Why is the third hand on a watch called a second hand?


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



Re: Upgrading from 4.7p2 to 4.7p3

2003-01-29 Thread Gerard Samuel
If it means anything, here is my /etc/make.conf file -
CFLAGS= -O -pipe
COPTFLAGS= -O -pipe
NOPROFILE= true
USA_RESIDENT= YES
NOGAMES= true
NO_CVS=true# do not build CVS
NO_BIND=   true# do not build BIND
NO_SENDMAIL=   true# do not build sendmail and related programs
NO_X=  true# do not compile in XWindows support (e.g. doscmd)
NO_MAILWRAPPER=true

Gerard Samuel wrote:


My buildworld is failing.  I've tried getting fresh pulls from 2 
different cvsup mirrors, and I've
tried deleting all content under /usr/src and /usr/obj and starting 
from scratch.
Here is the error -

cc -O -pipe  
-DINFODIR=\/usr/share/info:/usr/local/info:/usr/X11R6/info:.\ 
-DHAVE_CONFIG_H -DLOCALEDIR=\/usr/share/locale\  
-I/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo 
-I/usr/src/gnu/usr.bin/texinfo/info/../../../../contrib/texinfo/lib
-D__FBSDID=__RCSID  -static -o info dir.o display.o doc.o dribble.o 
echo-area.o filesys.o footnotes.o gc.o indices.o info-utils.o info.o 
infodoc.o infomap.o m-x.o man.o nodemenu.o nodes.o search.o session.o 
signals.o terminal.o tilde.o variables.o window.o -ltermcap 
/usr/obj/usr/src/i386/usr/src/gnu/usr.bin/texinfo/info/../libtxi/libtxi.a
/usr/libexec/elf/ld: cannot find -ltermcap
*** Error code 1

Stop in /usr/src/gnu/usr.bin/texinfo/info.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/texinfo.
*** Error code 1

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

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

Stop in /usr/src.
gatekeeper#

Any help would be appreciated.
Thanks


--
Gerard Samuel
http://www.trini0.org:81/
http://dev.trini0.org:81/



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



Re: make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Toomas Aas
Hi!

 I've noticed that there are a lot of options with make for
 example in the /usr/ports/ collections, is there a man,
 howto or tutorial somewhere about this options? 

Amazingly enough, nobody on this thread has mentioned...

...tadamm...

man ports

:-)
--
Toomas Aas | [EMAIL PROTECTED] | http://www.raad.tartu.ee/~toomas/
* Super Time-Saver now loading.  Please wait


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



Re: make fetch, recursive-fetch, package ... etc HOWTO?

2003-01-29 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-01-29 20:18:55 +0200:
  I've noticed that there are a lot of options with make for
  example in the /usr/ports/ collections, is there a man,
  howto or tutorial somewhere about this options? 
 
 Amazingly enough, nobody on this thread has mentioned...
 
 ..tadamm...
 
 man ports

because it's not all that useful?

roman@freepuppy ~ 1075:0  cd /usr/ports/mail/mutt-devel
roman@freepuppy ports/mail/mutt-devel 1076:0  grep DEPENDS Makefile
BUILD_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell
RUN_DEPENDS=ispell:${PORTSDIR}/textproc/ispell \
LIB_DEPENDS=intl.4:${PORTSDIR}/devel/gettext
LIB_DEPENDS+=   ncurses.5:${PORTSDIR}/devel/ncurses
LIB_DEPENDS+=   slang.1:${PORTSDIR}/devel/libslang
LIB_DEPENDS+=   sasl.8:${PORTSDIR}/security/cyrus-sasl
BUILD_DEPENDS+= sgmlfmt:${PORTSDIR}/textproc/sgmlformat
roman@freepuppy ports/mail/mutt-devel 1077:0  make pretty-print-build-depends-list
This port requires package(s)  to build.
roman@freepuppy ports/mail/mutt-devel 1078:0  man 7 ports|col -b|grep 
fetch-recursive 
roman@freepuppy ports/mail/mutt-devel 1079:1  


-- 
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: How to set-up two 'defaultrouter' IPs?

2003-01-29 Thread Kevin Stevens
On Wed, 29 Jan 2003, Lowell Gilbert wrote:

  Does that make sense?

 Sure.  What you want isn't two default routers, because at any given
 time there's only one way you want to route this traffic.  What you
 really want is to change default router when the outside world sees
 one as down.  A little tricky, because the system itself might not see
 main network as problematic, even though the rest of the Internet does.

Not multiple default routers, but multiple default routes, in this case
two, with different metrics to control failover.  This is easy to do on
some systems (Cisco and Solaris), not so on others.  Don't know about
FreeBSD, but I'll take a look later if the question hasn't been answered
already.

KeS

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



Re: ucspi-unix compile problems

2003-01-29 Thread Jon Reynolds
On Wed, 2003-01-29 at 11:17, M. Brownsworth wrote:
 I'm having a problem compiling ucspi-unix-0.36 on the new mail host 
 I'm configuring to run qmail.  Although its sister program, 
 ucspi-tcp-0.88, compiled just fine, ucspi-unix's compile bombs due to 
 a missing library:
 
 su-2.05b# make
 ( echo '#!/bin/sh'; echo 'main=$1; shift'; echo exec `head -1 
 conf-ld` '-o $main $main.o ${1+$@}' -lsysdeps; ) load
 chmod 755 load
 ( echo '#!/bin/sh';  echo 'source=$1; shift';  echo 'base=`echo 
 $source | sed -e s:.c$::`';  echo exec `head -1 conf-cc` '-I. 
 -o ${base}.o -c $source ${1+$@}';  ) compile
 chmod 755 compile
 ./compile unixclient.c
 ./compile env.c
 env.c:4: sysdeps.h: No such file or directory
 *** Error code 1
 
 Stop in /usr/local/src/ucspi-unix-0.36.
 
 So it can't find sysdeps.h.  A locate can't seem to come up with one, 
 either.  A Google search using ucspi-unix, sysdeps, and freebsd 
 turns up empty.  What the heck is the sysdeps library and why don't I 
 have it?  (Or why does ucspi-unix need it?)
 
 According to my understanding, vmailmgr, the password authentication 
 module I plan to use with qmail and courier-imap, needs ucspi-unix. 
 Specifically, it needs a program named unixserver (compiled with 
 ucspi-unix), which is used to start vmailmgrd:
 
 /usr/bin/unixserver /tmp/.vmailmgrd /usr/local/sbin/vmailmgrd \
 21 | /var/qmail/bin/splogger 
 
 I'm not sure if something else, perhaps ucspi-tcp, can substitute. 
 In fact, given the huge thrash involved in installing qmail and its 
 myriad of support programs, I'm not sure of much anything at this 
 point.
 
 If you have an answer to this problem, please cc me when you post, as 
 I'm not a member of the list.
 
 Here are my system specs:
 
 su-2.05b# uname -a
 FreeBSD apache.willamette.net 4.7-RELEASE FreeBSD 4.7-RELEASE #1: Thu 
 Jan  9 10:02:57 PST 2003 
 [EMAIL PROTECTED]:/usr/src/sys/compile/APACHE  i386
 
 .\\ichelle
 
 Michelle Brownsworth
 System Administrator
 Willamette.Net
 http://www.willamette.net
 Phone (541) 465-3282
 Fax   (541) 465-1194
 
I had a similiar problem with this exact app while trying to install
qmail. I eventually just went back to v.0.34 and it worked perfectly.

Jon


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



problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread David Loszewski
I'm trying to compile my kernel on my newly installed FreeBSD 5.0 I do 
the following: '% cd /usr/src' then I do '%make buildkernel 
KERNCONF=ZEUS' and it comes back saying 'make: don't know how to make 
buildkernel. Stop'.  Ideas on what to do with this?? I looked through 
the release notes and didn't see anything about a new way of building 
the kernel in the kernel changes section, but maybe I missed something.

Any help would be appreciated,
Dave Loszewski


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


Experiences with Adaptec 2400A?

2003-01-29 Thread Len Conrad
We are looking at this board for high-volume MX gateways.

Anybody have any comments from experience?

Len


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



RE: VirusProtection and IMAP

2003-01-29 Thread John Straiton
 IMAP:
 Where can I tell freeBSD which IMAP software should he use? 
 Like I installed cyrus and imapd-uw. So which one the system 
 is using and how can I switch between them?

One thing that I think should be offered up is that while many people
don't really believe in the idea of a virus protection software for your
physical sessions with the machine, many will tell you that it's nice to
use for whatever MTA you use to receive the email with. 

F-prot has a FreeBSD native scanner that works with the amavisd port
(/usr/ports/security/amavisd or the variants) to help you filter viruses
out of the *email* that would be passing through your machine.

To tell which server your machine is using, you could 
#telnet localhost 143

Which would probably return something telling you the version  make of
the IMAP software you're currently using. Uw-imap is a pretty easy
installation, but you will have to do more than just install cyrus in
order to get it to work with your system.

John Straiton
[EMAIL PROTECTED]
Clickcom, Inc
704-365-9970x101 



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



[no subject]

2003-01-29 Thread Charlie Root


I encountered the errors during make buildworld after a cvsup update.


David



*default  release=cvs
*default  tag=RELENG_4


--
*** output from uname -a ***
--

FreeBSD bringback.biz 4.6-RELEASE FreeBSD 4.6-RELEASE #0: Tue Jan 28 09:59:25 PST 2003 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/BRINGBACK_SND  i386
 
   

--
***  error output from cd /usr/src; make buildworld; ***
--

building shared library pam_skey.so
building static pam_skey library
ranlib libpam_skey.a
=== lib/libpam/modules/pam_ssh
make: don't know how to make /usr/obj/usr/src/i386/usr/lib/libssh.a. Stop
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error





---
*** error output in pam_ssh ***
---

cc -O -pipe  -I/usr/src/lib/libpam/modules/pam_ssh/../../../../crypto/openssh  -c 
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c -o pam_ssh.o
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:72: `PAM_OPT_STD_MAX' undeclared here 
(not in a function)
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:72: enumerator value for 
`PAM_OPT_KEYFILES' not integer constant
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:74: elements of array `other_options' 
have incomplete type
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:75: warning: excess elements in struct 
initializer
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:75: warning: (near initialization for 
`other_options[0]')
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:75: warning: excess elements in struct 
initializer
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:75: warning: (near initialization for 
`other_options[0]')
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:76: warning: excess elements in struct 
initializer
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:76: warning: (near initialization for 
`other_options[1]')
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:76: warning: excess elements in struct 
initializer
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:76: warning: (near initialization for 
`other_options[1]')
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:77: invalid use of undefined type 
`struct opttab'
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:116: warning: `struct options' declared 
inside parameter list
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:116: warning: its scope is only this 
definition or declaration, which is probably not what you want.
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:186: warning: `struct options' declared 
inside parameter list
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c: In function `pam_sm_authenticate':
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:262: storage size of `options' isn't 
known
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:274: warning: passing arg 2 of 
`pam_std_option' from incompatible pointer type
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:274: too many arguments to function 
`pam_std_option'
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c: In function `pam_sm_open_session':
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:345: storage size of `options' isn't 
known
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:362: warning: passing arg 2 of 
`pam_std_option' from incompatible pointer type
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:362: too many arguments to function 
`pam_std_option'
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c: In function `pam_sm_close_session':
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:575: storage size of `options' isn't 
known
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:582: warning: passing arg 2 of 
`pam_std_option' from incompatible pointer type
/usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:582: too many arguments to function 
`pam_std_option'
*** Error code 1

Stop in /usr/src/lib/libpam/modules/pam_ssh.


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



Re: problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread David Loszewski
no, I didn't cvsup the sources because in all the 4.x versions the 
sources already came with it

Dave

[EMAIL PROTECTED] wrote:

This may be a dumb question, but did you cvsup the sources for 5.0? If you
did, what does your Makefile look like?






   David Loszewski  
   [EMAIL PROTECTED]  To: [EMAIL PROTECTED]
   Sent by:cc:  
   owner-freebsd-questions@F   Subject: problem compiling kernel on FreeBSD 5.0 
   reeBSD.ORG   


   01/29/03 03:10 PM






I'm trying to compile my kernel on my newly installed FreeBSD 5.0 I do
the following: '% cd /usr/src' then I do '%make buildkernel
KERNCONF=ZEUS' and it comes back saying 'make: don't know how to make
buildkernel. Stop'.  Ideas on what to do with this?? I looked through
the release notes and didn't see anything about a new way of building
the kernel in the kernel changes section, but maybe I missed something.

Any help would be appreciated,
Dave Loszewski


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



Disappearing from network (fxp)

2003-01-29 Thread tarmon
I don't believe the other went through. If this gets duped, my apologies.

---

Hello,


I've been having problems with my test machines disappearing off of the 
network. When it happens, the machine does not respond to any incoming traffic.
However, if I ping out, the connection starts working again. I'm guessing the 
card is somehow going to sleep and not responding until it sees outgoing 
traffic. The ARP entry
still exists on the switch and router. I've had this problem with various 
versions of FreeBSD.


The card is the Intel EtherExpress Pro 100+.



Any help would be appreciated.


Thanks,

Mike 

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



[no subject]

2003-01-29 Thread tarmon
None at all, minus the original initilization messages on startup.



---


This seems very odd. Do you have any system messages about the fxp device?


Corey





 

[EMAIL PROTECTED]  
 
Sent by: freebsd-
[EMAIL PROTECTED]   
To: 
owner-freebsd-questions@F   
cc:  
reeBSD.ORG  Subject: Disappearing 
from network (fxp) 

 

 
01/29/03 04:26 
PM  
  

 

 





I don't believe the other went through. If this gets duped, my apologies.


---


Hello,



I've been having problems with my test machines disappearing off of
the
network. When it happens, the machine does not respond to any incoming
traffic.
However, if I ping out, the connection starts working again. I'm guessing
the
card is somehow going to sleep and not responding until it sees outgoing
traffic. The ARP entry
still exists on the switch and router. I've had this problem with various
versions of FreeBSD.



The card is the Intel EtherExpress Pro 100+.




Any help would be appreciated.



Thanks,


Mike

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



Re: problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread Kris Kennaway
On Wed, Jan 29, 2003 at 05:09:05PM -0500, David Loszewski wrote:
 no, I didn't cvsup the sources because in all the 4.x versions the 
 sources already came with it

The 4.x sources come with 4.x, yes.  If you want the 5.0 sources you
have to upgrade them somehow, e.g. by installing from sysinstall or
preferably by cvsupping.

Kris




msg17172/pgp0.pgp
Description: PGP signature


xfree86 error - 5.0 (fwd)

2003-01-29 Thread John Bleichert
Hello All

Several people emailed me asking if I had solved this problem with X 
after cvsup'ing from 4.7 - 5.0. I haven't but someone else has, and 
here's the solution:


hi again,  
  
   
  
i've solved the problem recompiling XFree86-4-Server with  
  
-fno-merge-constants  i've added this in the port Makefile in variable 
  
CFLAGS.
  
   
  
i found it in google.  
  
   
  
best regards,  
  
   
  
aleix 


The original post is below. Just an FYI.

Thanks - JB

#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg

-- Forwarded message --
Date: Tue, 21 Jan 2003 00:01:09 -0500 (EST)
From: John Bleichert [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: xfree86 error - 5.0

Hello All

Just upgraded to 5.0 and cvsup'd my ports. When I attempt to load X, I get 
this error (a lot of times) and X doesn't load:

Symbol  from module /usr/X11R6/lib/modules/fonts/libbitmap.a is 
unresolved!

I've tried to install all the parts of XFree86 individually (from the 
ports collection), and the list of installed ports is at the end of this 
email.

Any ideas why this is happening?

Thanks - JB

johnnyb:~  pkg_info | grep XFree
XFree86-4.2.0_1,1   X11/XFree86 core distribution (complete, using 
mini/meta-po
XFree86-FontServer-4.2.0_1 XFree86-4 Font Server
XFree86-Server-4.2.1_6 XFree86-4 X server and related programs
XFree86-clients-4.2.1_2 XFree86-4 Client environments
XFree86-documents-4.2.0 XFree86-4 Document Files
XFree86-font100dpi-4.2.0 XFree86-4 bitmap 100 dpi fonts
XFree86-font75dpi-4.2.0 XFree86-4 bitmap 75 dpi fonts
XFree86-fontCyrillic-4.2.0_4 XFree86-4 Cyrillic Fonts
XFree86-fontDefaultBitmaps-4.2.0 XFree86-4 default bitmap fonts
XFree86-fontEncodings-4.2.0 XFree86-4 font encoding files
XFree86-fontScalable-4.2.0 XFree86-4 Scalable font files
XFree86-libraries-4.2.1_5 XFree86-4 include/(shared) library kit
imake-4.2.0_1   Imake and other utilities from XFree86
wrapper-1.0_2   Wrapper for XFree86-4 server
johnnyb:~  pkg_info | grep -i font
XFree86-FontServer-4.2.0_1 XFree86-4 Font Server
XFree86-font100dpi-4.2.0 XFree86-4 bitmap 100 dpi fonts
XFree86-font75dpi-4.2.0 XFree86-4 bitmap 75 dpi fonts
XFree86-fontCyrillic-4.2.0_4 XFree86-4 Cyrillic Fonts
XFree86-fontDefaultBitmaps-4.2.0 XFree86-4 default bitmap fonts
XFree86-fontEncodings-4.2.0 XFree86-4 font encoding files
XFree86-fontScalable-4.2.0 XFree86-4 Scalable font files
bitmap-fonts-1.0Bitmap font, (6x12, 7x14, 8x16, 12x24) dots bitmap 
font
freetype2-2.1.2 A free and portable TrueType font rendering engine
johnnyb:~  uname -a
FreeBSD tasha.vonbek.dhs.org 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Mon Jan 
20 20:01:42 EST 2003 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386
johnnyb:~  



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: Problems with IPSec

2003-01-29 Thread Ben
On Tue, Oct 01, 2002 at 02:41:24PM +, Scott Penno wrote:

 I have a FreeBSD box running -STABLE which has had IPSec working with other
 hosts for quite some time without a problem.  I've just setup another
 FreeBSD box running 5.0-RC1 and am trying to establish a VPN tunnel but am
 not getting too far.  I'm using racoon and when attempting the negotiation
 with debugging enabled, the following message appears:
 2003-01-20 12:00:23: ERROR: pfkey.c:207:pfkey_handler(): pfkey ADD failed:
 Invalid argument
 and the following message is logged via syslog:
 Jan 20 12:00:23 atlas kernel: key_mature: invalid AH key length 160 (128-128
 allowed)

Tried rebuilding racoon? i had just upgraded a machine that was following
-STABLE and blowfish suddenly wasn't supported, and if i used aes or 3des
it complained like you've got. I did a portupgrade -f racoon suddenly all
worked fine again.. YMMV (:

[not subscribed to -questions either]

-- 
Ben. ben @ mumble . org . uk

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



Re:

2003-01-29 Thread Bill Moran
I've been having problems with my test machines disappearing off of
the
network. When it happens, the machine does not respond to any incoming
traffic.
However, if I ping out, the connection starts working again. I'm guessing
the
card is somehow going to sleep and not responding until it sees outgoing
traffic. The ARP entry
still exists on the switch and router. I've had this problem with various
versions of FreeBSD.


What kind of switch are you connecting everything together with?

The only time I've ever seen this is with a switch that had an option to disable
interfaces that had too much broadcast traffic.  If the machine set idle too long,
the ARP and other messages it was sending would cause it to be shut off by
the switch, but as soon as you started sending some non-broadcast traffic again
(such as ping), it would re-enable the port and things would work OK.
I would suggest disabling that feature of the switch (if that's the problem)
unless you're having problems with excessive broadcast traffic on your network.

The workaround I used (because the sysadmin refused to reconfigure the switch
because he didn't understand it) was to create a daemon ping process using 
and using an -i 30 switch.
For example, I had a script in /usr/local/etc/rc.d like so:

#!/bin/sh
/sbin/ping -i 30 192.168.5.27 

Where the IP is simply the IP of another machine on the network.  This doesn't
hurt much if the network is so idle that it's causing the switch to shut off
ports anyway.

--
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



Unable to install JDK13 from Ports

2003-01-29 Thread Eric Buchanan
Hello list,
I am trying to install JDK13 in preparation for
installing OpenOffice.

I am running FreeBSD 4.7-Stable, with the last make
world and cvsup occuring on 11/17/2002.

Thank you in advance for your help.

Eric

-


fi
gmake[4]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing/html32dtd'
gmake[3]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing/html32dtd'
Finished Recursively making html32dtd html32dtd @
Wed Jan 29 14:45:30 PST 2003.
gmake classes VARIANT=OPT
gmake[3]: Entering directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
rm -f
../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
if [ -s
../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
] ; \
then ../../../build/bsd-i386/bin/javac -J-Xms16m
-J-Xmx256m -J-Djava.compiler=NONE -classpath 
../../../build/bsd-i386/classes -bootclasspath 
-sourcepath 
../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
-d 
../../../build/bsd-i386/classes \
; \
fi
gmake[3]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
gmake classes VARIANT=DBG
gmake[3]: Entering directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
rm -f
../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
if [ -s
../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
] ; \
then ../../../build/bsd-i386/bin/javac_g -J-Xms16m
-J-Xmx256m -J-Djava.compiler=NONE 
-classpath ../../../build/bsd-i386/classes
-bootclasspath  -sourcepath 
../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
-d 
../../../build/bsd-i386/classes \
; \
fi
gmake[3]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
gmake[2]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
Finished Recursively making swing all @ Wed Jan 29
14:45:32 PST 2003.
Recursively making sound all @ Wed Jan 29 14:45:32
PST 2003 ...
gmake[2]: Entering directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
gmake ../../../build/bsd-i386/lib/i386/libjsound.so
copy-files VARIANT=OPT
gmake[3]: Entering directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
rm -f
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/.classes.list
if [ -s
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/.classes.list
] ; \
then ../../../build/bsd-i386/bin/javac -J-Xms16m
-J-Xmx256m -J-Djava.compiler=NONE -classpath 
../../../build/bsd-i386/classes -bootclasspath 
-sourcepath 
../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
-d 
../../../build/bsd-i386/classes \
; \
fi
gmake[3]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
gmake[2]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
gmake[1]: Leaving directory
`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax'
*** Error code 2

Stop in /backup/ports/java/jdk13.

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: mini ITX via and C3 processor

2003-01-29 Thread Pranav A. Desai
Hi!

  I havent tried the exact same board, but I have installed freebsd 4.4 on
other boards with C3 CPU on it. I have also used the cubePC (shown on the
site) with Freebsd 4.3 on it.

I dont recollect any problems that I have faced while loading freebsd.

-Pranav

***
Pranav A. Desai


On Wed, 29 Jan 2003, Aaron wrote:

 Has anyone tried one of the via Mini-ITX Form Factor boards with freebsd???

 http://www.idot.com/TheStore/Desktop/718Spec.asp?Product.id=718Cate.id=5Pr
 oduct.status=green

 Aaron


 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



group question - 15 member limit?

2003-01-29 Thread Mitch Vincent
What I have is this, a list of users and I want the user www to be a 
member of all their groups.. I have this in /etc/groups

d50:*:1026:www
d49:*:1027:www
d51:*:1028:www

(etc etc etc - there are about 80 users like this currently.)

If I do 'id www' it only shows www in the first 15 groups listed in 
/etc/groups - this is really the case too because if I su to www and 
try to access one of the files (that are perm 770) - I get permission 
denied. So it's not just a screw up with 'id' - it appears that www 
really isn't in any of those other groups!

I'm adding groups and group member via 'pw' so I'm pretty sure the 
syntax is right.. Is there some kind of limit that would prevent my www 
user from being in more than 15 groups?

Thanks for any and all suggestions!

-Mitch


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


Re: Unable to install JDK13 from Ports (SOLVED)

2003-01-29 Thread Eric Buchanan
Hello again,
It appears to have been remedied by cleaning all work
directories out under /usr/ports.

thank you,
Eric Buchanan
--- Eric Buchanan [EMAIL PROTECTED] wrote:
 Hello list,
 I am trying to install JDK13 in preparation for
 installing OpenOffice.
 
 I am running FreeBSD 4.7-Stable, with the last make
 world and cvsup occuring on 11/17/2002.
 
 Thank you in advance for your help.
 
 Eric
 
 -
 
 
 fi
 gmake[4]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing/html32dtd'
 gmake[3]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing/html32dtd'
 Finished Recursively making html32dtd html32dtd @
 Wed Jan 29 14:45:30 PST 2003.
 gmake classes VARIANT=OPT
 gmake[3]: Entering directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
 rm -f

../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
 if [ -s

../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
 ] ; \
 then ../../../build/bsd-i386/bin/javac -J-Xms16m
 -J-Xmx256m -J-Djava.compiler=NONE -classpath 
 ../../../build/bsd-i386/classes -bootclasspath 
 -sourcepath 

../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
 -d 
 ../../../build/bsd-i386/classes \
 ; \
 fi
 gmake[3]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
 gmake classes VARIANT=DBG
 gmake[3]: Entering directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
 rm -f

../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
 if [ -s

../../../build/bsd-i386/tmp/com/javax.swing/.classes.list
 ] ; \
 then ../../../build/bsd-i386/bin/javac_g -J-Xms16m
 -J-Xmx256m -J-Djava.compiler=NONE 
 -classpath ../../../build/bsd-i386/classes
 -bootclasspath  -sourcepath 

../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
 -d 
 ../../../build/bsd-i386/classes \
 ; \
 fi
 gmake[3]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
 gmake[2]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/swing'
 Finished Recursively making swing all @ Wed Jan
 29
 14:45:32 PST 2003.
 Recursively making sound all @ Wed Jan 29
 14:45:32
 PST 2003 ...
 gmake[2]: Entering directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
 gmake ../../../build/bsd-i386/lib/i386/libjsound.so
 copy-files VARIANT=OPT
 gmake[3]: Entering directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
 rm -f

../../../build/bsd-i386/tmp/sun/javax.sound/jsound/.classes.list
 if [ -s

../../../build/bsd-i386/tmp/sun/javax.sound/jsound/.classes.list
 ] ; \
 then ../../../build/bsd-i386/bin/javac -J-Xms16m
 -J-Xmx256m -J-Djava.compiler=NONE -classpath 
 ../../../build/bsd-i386/classes -bootclasspath 
 -sourcepath 

../../../build/bsd-i386/gensrc:../../../src/solaris/classes:../../../src/share/classes
 -d 
 ../../../build/bsd-i386/classes \
 ; \
 fi
 gmake[3]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
 gmake[2]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax/sound'
 gmake[1]: Leaving directory

`/backup/ports/java/jdk13/work/j2sdk1.3.1/make/javax'
 *** Error code 2
 
 Stop in /backup/ports/java/jdk13.
 
 __
 Do you Yahoo!?
 Yahoo! Mail Plus - Powerful. Affordable. Sign up
 now.
 http://mailplus.yahoo.com
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of
 the message


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread David Loszewski
Kris Kennaway wrote:


On Wed, Jan 29, 2003 at 05:09:05PM -0500, David Loszewski wrote:
 

no, I didn't cvsup the sources because in all the 4.x versions the 
sources already came with it
   


The 4.x sources come with 4.x, yes.  If you want the 5.0 sources you
have to upgrade them somehow, e.g. by installing from sysinstall or
preferably by cvsupping.

Kris

 

I did a cvsup and all the files are there now but the Makefile is name 
'Makefile,v' along with all the other files. Suggestions? not too often 
I use cvsup

Dave




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


Re: ucspi-unix compile problems

2003-01-29 Thread M. Brownsworth
There's nothing like posting to mailing lists to get the answers to 
your problems.  Not that the answers always come from the list 
members.  Nine times out of ten, after I post to a list I keep 
digging in archives and documentation and ferret out the answer on my 
own.  Oddly, it doesn't seem to work if I don't post to the list 
first.  That was the case this time as well.  I posted my problem 
compiling (running FreeBSD 4.7) ucspi-unix, required by vmailmgr, to 
freebsd-answers, then joined the vmailmgr list and posted here. 
Almost immediately, I came across a post in the ucspi-unix list 
archive that said ucspi-unix, qmail-autoresponder, and a few other 
programs by Bruce Guenter required his proprietary bglibs in order to 
compile, so I located and downloaded bglibs-1.005.  Unfortunately, 
bglibs wouldn't compile either.  So I joined the bgware list and 
posted the problem.  Shortly afterward, I discovered some esoteric 
posts in the archives that discussed the need for some defines in one 
of bglibs' files, although it wasn't absolutely clear specifically 
what should be added and to which file.  But with nothing to lose, I 
added the following to only unix/sig_all.c:

  #define SIGMAX _SIG_MAXSIG
  #define _NSIG 32

Voila!  It compiled like a champ.  I installed and then cd'ed to 
ucspi-unix.  Boom!  Same deal, smooth as glass.  Ditto with 
qmail-autoresponder.  Time to start vmailmgr to see if my efforts 
were not in vain.  I wanted it to run under the supervise facility, 
so it would automatically be restarted if it quit.  There was no 
documentation on how to set up supervise specifically to run 
vmailmgr, so I cloned one of the qmail supervise setups and crossed 
my fingers.  And what do you know?  It started perfectly and came up:

  38248 con  S+ 0:01.04 supervise vmailmgrd
  38249 con  I+ 0:00.00 supervise log

Many thanks to the list.

Best,
.\\ichelle

Michelle Brownsworth
System Administrator
PrimeLogic Corporation
http://www.primelogic.com

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


Re

2003-01-29 Thread Sugiono
Hi


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



JDK 1.3 woes (again)

2003-01-29 Thread Eric Buchanan
Hello List,
Earlier it appeared it would compile after all, in
/usr/ports/java/jdk13. Now it has stopped, after about
20 minutes. I am using FreeBSD 4.7-Stable, cvsuped on
11-17-2002 with a make world on the same day.
Linux-jdk-13 is installed successfully. I am
installing JDK13 to prepare to install OpenOffice.
Thank you in advance,
Eric Buchanan
-
/usr/bin/gcc  -O -pipe  -W -Wall  -Wno-unused
-Wno-parentheses   -Di386 -DARCH='i386' -DSOLARIS2
-DRELEASE='1.3.1-p7'
-DFULL_VERSION='1.3.1-p7-erking-030129-15:43'
-D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
-DLOGGING -D_LITTLE_ENDIAN -I.
-I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders
-I../../../src/solaris/javavm/export
-I../../../src/share/javavm/export
-I../../../src/share/native/common
-I../../../src/solaris/native/common
-I../../../src/share/native/javax/sound
-I../../../src/solaris/native/javax/sound   -DSVR4
-DSOLARIS -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include
-I../../../src/share/native/com/sun/media/sound
-I../../../src/share/native/com/sun/media/sound/engine
-DX_PLATFORM=X_SOLARIS -DJAVA_SOUND -DJAVA_THREAD  -c
-o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS.o
../../../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS.c
/usr/bin/gcc -MM  -Di386 -DARCH='i386' -DSOLARIS2
-DRELEASE='1.3.1-p7'
-DFULL_VERSION='1.3.1-p7-erking-030129-15:43'
-D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
-DLOGGING -D_LITTLE_ENDIAN -I.
-I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders
-I../../../src/solaris/javavm/export
-I../../../src/share/javavm/export
-I../../../src/share/native/common
-I../../../src/solaris/native/common
-I../../../src/share/native/javax/sound
-I../../../src/solaris/native/javax/sound   -DSVR4
-DSOLARIS -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include
-I../../../src/share/native/com/sun/media/sound
-I../../../src/share/native/com/sun/media/sound/engine
-DX_PLATFORM=X_SOLARIS -DJAVA_SOUND -DJAVA_THREAD
../../../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS.c
2 /dev/null | \
/usr/bin/sed -e
's!HAE_API_BSDOS\.o!../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/!g'

../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS.d
/usr/bin/gcc  -O -pipe  -W -Wall  -Wno-unused
-Wno-parentheses   -Di386 -DARCH='i386' -DSOLARIS2
-DRELEASE='1.3.1-p7'
-DFULL_VERSION='1.3.1-p7-erking-030129-15:43'
-D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
-DLOGGING -D_LITTLE_ENDIAN -I.
-I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders
-I../../../src/solaris/javavm/export
-I../../../src/share/javavm/export
-I../../../src/share/native/common
-I../../../src/solaris/native/common
-I../../../src/share/native/javax/sound
-I../../../src/solaris/native/javax/sound   -DSVR4
-DSOLARIS -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include
-I../../../src/share/native/com/sun/media/sound
-I../../../src/share/native/com/sun/media/sound/engine
-DX_PLATFORM=X_SOLARIS -DJAVA_SOUND -DJAVA_THREAD  -c
-o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS_Capture.o
../../../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS_Capture.c
/usr/bin/gcc -MM  -Di386 -DARCH='i386' -DSOLARIS2
-DRELEASE='1.3.1-p7'
-DFULL_VERSION='1.3.1-p7-erking-030129-15:43'
-D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
-DLOGGING -D_LITTLE_ENDIAN -I.
-I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders
-I../../../src/solaris/javavm/export
-I../../../src/share/javavm/export
-I../../../src/share/native/common
-I../../../src/solaris/native/common
-I../../../src/share/native/javax/sound
-I../../../src/solaris/native/javax/sound   -DSVR4
-DSOLARIS -DX_PLATFORM=X_SOLARIS -I/usr/X11R6/include
-I../../../src/share/native/com/sun/media/sound
-I../../../src/share/native/com/sun/media/sound/engine
-DX_PLATFORM=X_SOLARIS -DJAVA_SOUND -DJAVA_THREAD
../../../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS_Capture.c
2 /dev/null | \
/usr/bin/sed -e
's!HAE_API_BSDOS_Capture\.o!../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/!g'

../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HAE_API_BSDOS_Capture.d
Rebuilding
../../../build/bsd-i386/lib/i386/libjsound.so because
of
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/Utilities.o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerThread.o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/HeadspaceMixer.o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerClip.o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerGroupLine.o
../../../build/bsd-i386/tmp/sun/javax.sound/jsound/obj/MixerSourceLine.o
...
/usr/bin/gcc  -O -pipe  -W -Wall  -Wno-unused
-Wno-parentheses   -Di386 -DARCH='i386' -DSOLARIS2
-DRELEASE='1.3.1-p7'
-DFULL_VERSION='1.3.1-p7-erking-030129-15:43'
-D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
-DLOGGING -D_LITTLE_ENDIAN -I.
-I../../../build/bsd-i386/tmp/sun/javax.sound/jsound/CClassHeaders
-I../../../src/solaris/javavm/export

[no subject]

2003-01-29 Thread Scott A. Moberly
Quick question that i couldn't find in a quick look through the internet...

I bought one of the nifty little devices called a joystick that plugs into
the USB port.  I have been able to get it to work with applications that
are NetBSD USB Joystick aware; but alas there are others.  Anyway to get
this thing recognized in a generic way, i.e. /dev/joy0 or through
XFree86-4 joystick?

-- 
Scott A. Moberly
[EMAIL PROTECTED]

Microsoft is not the Answer -
Microsoft is the question
and the Answer is no !




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



Re: group question - 15 member limit?

2003-01-29 Thread Tim Peters
On Wed, Jan 29, 2003 at 06:02:48PM -0600, Dan Nelson wrote:
 In the last episode (Jan 29), Mitch Vincent said:
  
  I'm adding groups and group member via 'pw' so I'm pretty sure the
  syntax is right.. Is there some kind of limit that would prevent my
  www user from being in more than 15 groups?

 /sys/sys/syslimits.h sets the maximum number of groups at 16 with the
 NGROUPS parameter.  I think you can bump it and rebuild world with no
 ill effects, except possibly NFS accesses may still only see the first
 16.  I dont know what effect bumping it up to 100 would do :)

A while ago at work we had a FreeBSD machine compiled with NGROUPS
set to 128 or 256 (Can't remember which).  No problems at all, but
we weren't using it as an NFS server.

The machine in question has since been replaced by a Redhat linux
machine, and we're not allowed to tinker with the kernel - much to
my annoyance ... But I digress :-)

-tim

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



USB Joystick (RE: No Subject)

2003-01-29 Thread Scott A. Moberly
Quick question that i couldn't find in a quick look through the
internet...

I bought one of the nifty little devices called a joystick that plugs
into the USB port.  I have been able to get it to work with applications
that are NetBSD USB Joystick aware; but alas there are others.  Anyway
to get this thing recognized in a generic way, i.e. /dev/joy0 or through
XFree86-4 joystick?

-- 
Scott A. Moberly
[EMAIL PROTECTED]

Microsoft is not the Answer -
Microsoft is the question
and the Answer is no !



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



Re: problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread Giorgos Keramidas
On 2003-01-29 16:10, David Loszewski [EMAIL PROTECTED] wrote:
 I'm trying to compile my kernel on my newly installed FreeBSD 5.0 I
 do the following: '% cd /usr/src' then I do '%make buildkernel
 KERNCONF=ZEUS' and it comes back saying 'make: don't know how to
 make buildkernel. Stop'.  Ideas on what to do with this??

Have you installed any sources in /usr/src?


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



Mozilla 1.2.1: No running window found

2003-01-29 Thread William Palfreman
I've just used portupgrade to upgrade from mozilla 1.0 to 1.2.1.  This
is what I get:

$ mozilla
No running window found.
Segmentation fault

This is on 4.6.2-p6 on a k6-2 with 512Mb of ram (and compiled with k6
optimisations).  Is this my fault (or a minor fault to do with my setup)
or is the port broken?  It worked fine before.

TIA,
Bill.

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



Re: Mozilla 1.2.1: No running window found

2003-01-29 Thread Joe Marcus Clarke
On Wed, 2003-01-29 at 20:47, William Palfreman wrote:
 I've just used portupgrade to upgrade from mozilla 1.0 to 1.2.1.  This
 is what I get:
 
 $ mozilla
 No running window found.
 Segmentation fault
 
 This is on 4.6.2-p6 on a k6-2 with 512Mb of ram (and compiled with k6
 optimisations).  Is this my fault (or a minor fault to do with my setup)
 or is the port broken?  It worked fine before.

You really shouldn't complain unless you're tried things without k6
optimizations.  Also, there isn't enough information to go on here to
determine a root cause.  The port is not broken.  It does work for quite
few people.

What I recommend is first trying with the standard CFLAGS (-O -pipe). 
If it still fails, try building with -DWITHOUT_XFT defined, and see if
that helps.  If it still fails, you will need to use gdb to analyze the
crash to see what's going on.  We will also need to see the list of
other packages installed on your machine.

Joe

 
 TIA,
 Bill.
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-gnome in the body of the message
-- 
PGP Key : http://www.marcuscom.com/pgp.asc



signature.asc
Description: This is a digitally signed message part


vnc at start-up

2003-01-29 Thread Roger Merritt
I've installed vnc from the ports and it works fine, but it's annoying to 
have to log on to my server and start the vncserver every time I want to 
connect from my desktop PC. One problem is my server has been randomly 
rebooting (I suspect hardware problems but ...), so I can't just leave the 
server running.

I tried putting a start-up script in /usr/local/etc/rc.d and it works, but 
in the vncserver script itself there is a loop which checks for the 
availability of commands, including xauth. Apparently during boot-up the 
PATH doesn't include /usr/X11R6/bin, so on boot-up one of the messages I 
get is 'vncserver: couldn't find xauth on your path' and the server isn't 
started.

Can anyone suggest what I should do to make this work?

--
Roger


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


Re: odd lack of fonts in Mozilla 1.2.1

2003-01-29 Thread John Bleichert
On Wed, 29 Jan 2003, Robin Damm wrote:
 John Bleichert [EMAIL PROTECTED] writes:
 
  Hello All
  
  I've just installed a minimal 4.7 box with X, mwm and Mozilla 1.2.1 (which 
  is just plain mozilla in the ports, cvsup'd tongight). For some reason 
  there are very few fonts available in the preferences in Mozilla, and the 
  ones that are there look *awful*. I installed Netscape 4.8 and Opera and 
  the fonts are fine with them.
  
  Is something busted with native mozilla 1.2.1? Or am I missing something? 
  It takes a long time to build Mozilla on this box...
  
 
 I'm just speculating, but the awful font appearance could be related
 to Xft. I build mozilla with the following option:
 
 # make WITHOUT_XFT=yes
 
 This greatly improves font appearance in mozilla (IMHO). There may be
 a way to fix this by tuning X, but then you have two problems :)
 
 Do post if you find a workaround other than recompiling with the
 above option.
 

I was unable to find a solution - however, your method above worked like a 
charm. Thanks for the hint! Normally I've never had to do this. Perhaps it 
changed with the new mozilla build?

JB

#  John Bleichert 
#  http://vonbek.dhs.org/latest.jpg


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



Re: odd lack of fonts in Mozilla 1.2.1

2003-01-29 Thread Joe Marcus Clarke
On Wed, 2003-01-29 at 21:19, John Bleichert wrote:
 On Wed, 29 Jan 2003, Robin Damm wrote:
  John Bleichert [EMAIL PROTECTED] writes:
  
   Hello All
   
   I've just installed a minimal 4.7 box with X, mwm and Mozilla 1.2.1 (which 
   is just plain mozilla in the ports, cvsup'd tongight). For some reason 
   there are very few fonts available in the preferences in Mozilla, and the 
   ones that are there look *awful*. I installed Netscape 4.8 and Opera and 
   the fonts are fine with them.
   
   Is something busted with native mozilla 1.2.1? Or am I missing something? 
   It takes a long time to build Mozilla on this box...
   
  
  I'm just speculating, but the awful font appearance could be related
  to Xft. I build mozilla with the following option:
  
  # make WITHOUT_XFT=yes
  
  This greatly improves font appearance in mozilla (IMHO). There may be
  a way to fix this by tuning X, but then you have two problems :)
  
  Do post if you find a workaround other than recompiling with the
  above option.
  
 
 I was unable to find a solution - however, your method above worked like a 
 charm. Thanks for the hint! Normally I've never had to do this. Perhaps it 
 changed with the new mozilla build?

The new Mozilla supports Xft for anti-aliasing of fonts.  This is
enabled by default as this seems to be a desired feature.  Moving
forward, you should keep WITHOUT_XFT defined in /etc/make.conf if you're
having problems.

Joe

 
 JB
 
 #  John Bleichert 
 #  http://vonbek.dhs.org/latest.jpg
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
PGP Key : http://www.marcuscom.com/pgp.asc



signature.asc
Description: This is a digitally signed message part


Re: problem compiling kernel on FreeBSD 5.0

2003-01-29 Thread Kris Kennaway
On Wed, Jan 29, 2003 at 06:32:08PM -0500, David Loszewski wrote:

 I did a cvsup and all the files are there now but the Makefile is name 
 'Makefile,v' along with all the other files. Suggestions? not too often 
 I use cvsup

Read the cvsup documentation (e.g. sample supfiles) more carefully:
you downloaded the entire CVS repository instead of just updating your
sources.

Kris



msg17193/pgp0.pgp
Description: PGP signature


Re: Mozilla 1.2.1: No running window found

2003-01-29 Thread Luke Hollins
On Wed, 29 Jan 2003, Joe Marcus Clarke wrote:

 On Wed, 2003-01-29 at 20:47, William Palfreman wrote:
  I've just used portupgrade to upgrade from mozilla 1.0 to 1.2.1.  This
  is what I get:
 
  $ mozilla
  No running window found.
  Segmentation fault
 
  This is on 4.6.2-p6 on a k6-2 with 512Mb of ram (and compiled with k6
  optimisations).  Is this my fault (or a minor fault to do with my setup)
  or is the port broken?  It worked fine before.

 You really shouldn't complain unless you're tried things without k6
 optimizations.  Also, there isn't enough information to go on here to
 determine a root cause.  The port is not broken.  It does work for quite
 few people.

 What I recommend is first trying with the standard CFLAGS (-O -pipe).
 If it still fails, try building with -DWITHOUT_XFT defined, and see if
 that helps.  If it still fails, you will need to use gdb to analyze the
 crash to see what's going on.  We will also need to see the list of
 other packages installed on your machine.

I second the without k6 optimizations idea , I've tried it with
varying CFLAGS options and any -m causes it to build fine but
mozilla and many of the built programs can't do much but segfault.
(On many different CPU types, amd and intel).

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



another go at natd

2003-01-29 Thread Redmond Militante
hi all

this is a followup to an email i sent out to the list a week or so ago.  i was having 
trouble getting the following natd setup to work:

---snip--
two machines - one has two nics, one has one nic. i'd like to set up the machine with 
two nics as a gateway/natd box, and place the second machine behind it.

gateway machine's kernel has been recompiled with:

options IPFIREWALL
options IPDIVERT
options IPFIREWALL_DEFAULT_TO_ACCEPT
options IPFIREWALL_VERBOSE

gateway machine's /etc/rc.conf:

defaultrouter=129.x.x.1
hostname=enquirer.medill.northwestern.edu
ifconfig_xl0=inet 129.x.x.35 netmask 255.255.255.0
ifconfig_xl1=inet 10.0.0.1 netmask 255.0.0.0
gateway_enable=YES
firewall_enable=YES
#firewall_script=/etc/rc.firewall
firewall_type=OPEN
natd_enable=YES
natd_interface=xl0
natd_flags=

second machine's /etc/rc.conf:

defaultrouter=10.0.0.1
ifconfig_xl0=inet 10.0.0.2 netmask 255.0.0.0

'ipfw list' on the gateway machine gives me:
00050 divert 8668 ip from any to any via xl0
00100 allow ip from any to any via lo0
00200 deny ip from any to 127.0.0.0/8
00300 deny ip from 127.0.0.0/8 to any
65000 allow ip from any to any
65535 allow ip from any to any

i'm following the instructions in the handbook 
http://www.freebsd.org/doc/en_US.IS...dbook/natd.html 
snip-

-turns out my setup above was exactly right. i was informed by various members of the 
list that my original problem was that i was running a connection from the client 
machine directly to the internal nic on the gateway box, and all i needed to do was to 
run everything through a hub to get it to work.

so, i'm nat'ing. i'm redirecting packets to my internal lan on the gateway box.  i 
guess my question to the list would be:  is a vanilla natd setup like this enough?  
today, i tried changing firewall_type to '/etc/ipfw.rules' instead of OPEN, it's 
been problematic.  i'm having trouble getting the following /etc/ipfw.rules file 
working with my nat setup:

add 00100 allow ip from any to any via lo0
add 00200 deny ip from any to 127.0.0.0/8
add 00300 check-state
add 00301 allow tcp from 129.x.x.20 to any in setup keep-state
add 00302 allow tcp from 10.0.0.2 to any in setup keep-state
#allow tcp in for ftp,ssh, smtp, httpd
add 00304 allow tcp from any to any 21 in setup keep-state
add 00305 allow tcp from any to any 22 in setup keep-state
add 00306 allow tcp from any to any 25 in setup keep-state
add 00307 allow tcp from any to any 80 in setup keep-state
#allow tcp in for webmin port
add 00308 allow tcp from any to any 1 in setup keep-state
#deny rest of incoming tcp
add 00309 deny log tcp from any to any in established
#from man 8 ipfw: allow only outbound tcp connections i've created
add 00310 allow tcp from any to any out setup keep-state
#allow udp in for gateway for DNS
add 00400 allow udp from 129.105.49.1 to any in recv xl0
add 00401 allow udp from 129.x.x.20 to any in recv xl0
add 00402 allow udp from 10.0.0.2 to any in recv xl0
#allow all udp out from machine
add 00404 allow udp from any to any out
#allow some icmp types (codes not supported)
##allow path-mtu in both directions
add 00500 allow icmp from any to any icmptypes 3
##allow source quench in and out
add 00501 allow icmp from any to any icmptypes 4
##allow me to ping out and receive response back
add 00502 allow icmp from any to any icmptypes 8 out
add 00503 allow icmp from any to any icmptypes 0 in
##allow me to run traceroute
add 00504 allow icmp from any to any icmptypes 11 in
add 00600 deny log ip from any to any


sorry, this is long winded.  any comments on how to get the above rules working with 
my nat setup, or if these measures are even necessary would be greatly appreciated.

thanks
redmond



msg17195/pgp0.pgp
Description: PGP signature


  1   2   >