Re: How to adjust man page line length [SOLVED]

2011-01-19 Thread David Kelly

On Jan 19, 2011, at 10:51 PM, David J. Weller-Fahy wrote:

[...]

> That did the job, but made `man -k`, which my fingers find familiar,
> unusable.  I remembered you were running a CURRENT snapshot, so figured
> I'd check the difference between man in HEAD and 8.1-RELEASE... WOW!
> The man in HEAD is now a shell script.


In ancient times man was originally a shell script. What is old is new again.

--
David Kelly N4HHE, dke...@hiwaay.net

Whom computers would destroy, they must first drive mad.



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


statclock vs softclock

2011-01-19 Thread Bob Hall
I hope this is the correct forum. I'm reading The Design &
Implementation of the FreeBSD OS by McKusick & Neville-Neil, & I'm a
little confused about statclock( ) and softclock( ). According to the
book, statclock( ) ticks 128 times per second, and recalculates the
priority of the current process every four ticks. If the recalculated
priority is less than the current priority, it reschedules the process.

However, on the same page, the book says that softclock( ) recalculates
priorities once per second, and also reschedules processes.

I must not be understanding something, because it seems to me that the
book is saying that there are two routines doing the same thing and
getting in each other's way. Can someone straighten me out?

http://flylib.com/books/en/2.849.1.44/1

Thanks in advance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: How to adjust man page line length

2011-01-19 Thread David J. Weller-Fahy
* David Kelly  [2011-01-18 07:05 -0500]:
> As for the request not to be CC'ed in reply, put the list address in
> the Reply-To: header as I have done here.

I started to last night, and realized I couldn't devise a simple way to
do so automatically for all lists I subscribe to without keeping a list
of the lists I subscribe to... (other than my mailboxes: one for each
list)... but I haven't devoted much time to it yet.

I have a feeling it will involve a reply-hook, and that others have
already accomplished it, but I'll try another time.  For now think of it
as a polite request which, if not complied with, will cause no ill will.

Regards,
-- 
dave [ please don't CC me ]


pgpR7HMmo3BKz.pgp
Description: PGP signature


Re: How to adjust man page line length

2011-01-19 Thread David J. Weller-Fahy
* Polytropon  [2011-01-18 13:44 -0500]:
> man2pdf.sh:
> 
>   #!/bin/sh
>   [ "$1" != "" ] && zcat `man -w $1` | \
>   groff -Tps -dpaper=a4 -P-pa4 -mandoc | ps2pdf - $1.pdf
> 
> This would cause groff to format for A4 paper width.  It's fully
> possible that a similar approach can be used for requesting a specific
> terminal width given in characters, rather than inches or centimeters
> (from a predefined value).

I forgot to mention in the [SOLVED] email - thank you for mentioning the
groff command-line, as it helped in both the initial and final
solutions.

Regards,
-- 
dave [ please don't CC me ]


pgp6SA90YtmPq.pgp
Description: PGP signature


Re: FreeBSD cups printing server

2011-01-19 Thread Robert Bonomi
> From owner-freebsd-questi...@freebsd.org  Wed Jan 19 21:14:59 2011
> Date: Wed, 19 Jan 2011 20:39:01 -0600
> From: "Sam Fourman Jr." 
> To: FreeBSD Questions 
> Cc: 
> Subject: FreeBSD cups printing server
>
> Hello list,
>
> I have a freshly installed FreeBSD 8.2 print server using the latest cups 
> from ports.
>
> I have a Brother 9440CN printer and a Virtual pdf printer installed with 
> cups-pdf
>
> both work great...
>
> my problem is I want to create a pdf for everything I send to the brother 
> printer (for archival purposes)
>
> can I add multiple printers to a single queue? or is there a script 
> somewhere, that I could copy the cups generated postscript to the 
> cups-pdf printer?

At least a couple of options:

(the *UGLY* one)
1) define a named pipe
2) tell CUPS that that pipe is the printer device
3) from the system start-up script, launch a script
   that does the following in a loop:
 uses tee(1) to read from the named pipe, and copy to a unique archive file
 pipes stdout from tee(1) to the actual printer device

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


Re: How to adjust man page line length [SOLVED]

2011-01-19 Thread David J. Weller-Fahy
* Giorgos Keramidas  [2011-01-19 02:57 -0500]:
> On Tue, 18 Jan 2011 12:29:18 -0600, David Kelly  wrote:
> > On Tue, Jan 18, 2011 at 06:11:13PM +0100, Giorgos Keramidas wrote:
> >> Set the 'columns' attribute of your tty:
> >> stty columns 60
> >> man xxx
> >
> > *Should*? You posted without trying it? (I tried, did not work).
> 
> 'Should' as in "I tried it here and it worked".  I'm running a recent
> CURRENT snapshot, but I don't think this affects the results.  What
> does 'stty -a' show in your terminal?  What is your shell's
> environment (e.g. the value of COLUMNS)?  What is your PAGER? etc.

Well... that was an interesting night of experimentation.  Thanks for
the idea about stty (which I didn't know about), because otherwise I
might have gone mad (apparently COLUMNS isn't set in the environment of
a shell script... which makes sense when one thinks about it).

Regardless, I ended up finding two solutions.

First, I created the following shell script.

#v+
dave@heffalump:~$ cat bin/man.sh
#!/bin/sh
mpage=`man -w $1`
tcols=`stty -a | grep columns | awk '{ print $6 }'`

zcat -f `man -w $1` | groff -Tutf8 -man -rIN=7n -rLL=`echo ${tcols} - 3 | bc`n 
- | less
#v-

That did the job, but made `man -k`, which my fingers find familiar,
unusable.  I remembered you were running a CURRENT snapshot, so figured
I'd check the difference between man in HEAD and 8.1-RELEASE... WOW!
The man in HEAD is now a shell script.

That inspired a second solution: Take the shell script from HEAD, and
install it for my user's use.  So, I checked out the man from HEAD.

svn checkout svn://svn.freebsd.org/base/head/usr.bin/man

I installed fakeroot (needed to install the man pages).

The Makefile doesn't honor PREFIX, but does honor BINDIR/MANDIR, so I
used the following command-line to install the man from HEAD.

fakeroot make install BINDIR=/home/dave/usr/bin 
MANDIR=/home/dave/usr/man/man NO_MANCOMPRESS="YES"

Whoops!  The program and man pages installed, but man pages were not
displayed using the number of columns.  Apparently there's more to the
modified behavior in HEAD than just the man display program... but the
new man is a shell script so I can modify it.

I applied the following patch.

#v+
--- man.sh.orig 2011-01-19 22:41:34.0 -0600
+++ man.sh  2011-01-19 22:41:33.0 -0600
@@ -891,9 +891,10 @@
search_whatis whatis "$@"
 }
 
+cols=`stty -a | grep columns | awk '{ print $6 }'`
 EQN=/usr/bin/eqn
 COL=/usr/bin/col
-NROFF='/usr/bin/groff -S -Wall -mtty-char -man'
+NROFF='/usr/bin/groff -S -Wall -mtty-char -man -rLL=`echo $cols - 3 | bc`n'
 PIC=/usr/bin/pic
 SYSCTL=/sbin/sysctl
 TBL=/usr/bin/tbl
#v-

I installed again, and done!

So, more gymnastics than I would like, but now man uses the current
number of columns.  I'll use this method until the new shell script
version in HEAD makes it into the base of a release I'm running.

Thanks to all for the information and inspiration!

Regards,
-- 
dave [ please don't CC me ]


pgpD8pPdV0bdR.pgp
Description: PGP signature


Re: FreeBSD cups printing server

2011-01-19 Thread Polytropon
On Wed, 19 Jan 2011 20:39:01 -0600, "Sam Fourman Jr."  
wrote:
> Hello list,
> 
> I have a freshly installed FreeBSD 8.2 print server using the latest
> cups from ports.
> 
> I have a Brother 9440CN printer and a Virtual pdf printer installed
> with cups-pdf
> 
> both work great...
> 
> my problem is I want to create a pdf for everything I send to the
> brother printer (for archival purposes)
> 
> can I add multiple printers to a single queue? or is there a script
> somewhere, that I could copy the cups generated postscript to the
> cups-pdf printer?

If you're using standard /etc/printcap entries, it should
be easy to write a simple filter that just does "| tee"
for the regular printing input and branch a copy of it
to the PDF printer which then stores the file, while
the original PS stream will arrive at the actual
printer filter.

Sorry I can't be more CUPS-specific as I have abandoned
this... "monster" many years ago. :-)


-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: The book of pf...

2011-01-19 Thread Modulok
On 1/19/11, Peter N. M. Hansteen  wrote:
> Modulok  writes:
>
>> This book comes in two editions. The first was published in December
>> 2007, the second, November, 2010. Does anyone have this? And if so
>> would I be correct to get the first edition instead? I know FreeBSD's
>> pf lags being openBSD's, so I'm not sure which version of the book to
>> get, if either are applicable to the version of pf that FreeBSD runs?
>> (FreeBSD 8.1)
>
> I started updating the text for the 2nd edition due to the changes
> introduced in OpenBSD 4.7, (aka "Henning's monster diff") plus a few
> other goodies such as pflow(4) that had turned up since the first
> edition's late 2007 release, but I took some care to keep samples in
> the older syntax where it's relevant.
>
> That means that for the FreeBSD parts, the second edition is up to
> date per roughly early October 2010 (FreeBSD 8.1-stable), with a not
> that for FreeBSD, we assume the 8 series.  If you're running an older
> release (ie a close descendant of whatever was -stable in late 2007),
> the first edition is likely better suited.
>
> For other differences between the two, you could probably get an idea
> by comparing the TOCs from the two editions' web pages (at
> http://nostarch.com/pf.htm and http://nostarch.com/pf2.htm
> respectively).  The second edition turned into a more thorough rewrite
> than I'd originally planned with some bits moving around. But if in
> doubt, why not get both? ;)
>
> But yes, for FreeBSD 8.1, you'll be happier with the second edition.
> FreeBSD's PF syntax is old-style, but some other relevant network
> config details changed between 2007 and 2010, and the second edition
> reflects this.

Peter,

Thanks for taking the time to reply! Your post answers a lot of
questions that I and others had. I have since purchased the second
edition of the book and am working my way through it. Thanks for
writing a book on the subject too. Without books such as yours, it
would be a far more frustrating world.

For anyone else tinkering with firewalls: virtual machines can
simplify the logistics.
-Modulok-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: devel/libsoup-2.32.2 Compile error _md5 problem

2011-01-19 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 1/19/11 12:04 PM, David Southwell wrote:
> 
> Thanks in advance for help with this one:
> 
>  File "/usr/local/bin/g-ir-scanner", line 43, in 
> from giscanner.scannermain import scanner_main
[...]
>   File "/usr/local/lib/python2.6/hashlib.py", line 136, in 
> md5 = __get_builtin_constructor('md5')
>   File "/usr/local/lib/python2.6/hashlib.py", line 63, in 
> __get_builtin_constructor
> import _md5
> ImportError: No module named _md5
> gmake[3]: *** [Soup-2.4.gir] Error 1
> gmake[3]: Leaving directory 
> `/usr/ports/devel/libsoup/work/libsoup-2.32.2/libsoup'
> gmake[2]: *** [all] Error 2
> gmake[2]: Leaving directory 
> `/usr/ports/devel/libsoup/work/libsoup-2.32.2/libsoup'
> gmake[1]: *** [all-recursive] Error 1
> gmake[1]: Leaving directory `/usr/ports/devel/libsoup/work/libsoup-2.32.2'
> gmake: *** [all] Error 2
> *** Error code 1
> 
> Stop in /usr/ports/devel/libsoup.
> *** Error code 1
> David

Hi David,

Is devel/gobject-introspection up to date?  Do you get this same error
if you install devel/libsoup into a box without any ports installed on
it.  You can easily set up a testbed by using a jail to do that.

If nothing else depends on gobject-introspection, you could always
pkg_delete it and then restart the libsoup build.  It would be
interesting to know if that eliminates the error or not.

Regards,
Greg
- -- 
Greg Larkin

http://www.FreeBSD.org/   - The Power To Serve
http://www.sourcehosting.net/ - Ready. Set. Code.
http://twitter.com/sourcehosting/ - Follow me, follow you
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk03qHQACgkQ0sRouByUApBmuACfcGeo+Z75YURX4/HwHy6HgoB5
A0oAn0dKm0tLGelA9qpFeKKv4/duYXwM
=daz/
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


FreeBSD cups printing server

2011-01-19 Thread Sam Fourman Jr.
Hello list,

I have a freshly installed FreeBSD 8.2 print server using the latest
cups from ports.

I have a Brother 9440CN printer and a Virtual pdf printer installed
with cups-pdf

both work great...

my problem is I want to create a pdf for everything I send to the
brother printer (for archival purposes)

can I add multiple printers to a single queue? or is there a script
somewhere, that I could copy the cups generated postscript to the
cups-pdf printer?

thank you for any help


-- 

Sam Fourman Jr.
Fourman Networks
http://www.fourmannetworks.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Which network driver for RTL8211 or 8201 NIC's?

2011-01-19 Thread Pyun YongHyeon
On Wed, Jan 19, 2011 at 11:54:54PM +, b. f. wrote:
> Mike Clarke wrote:
> > I need to replace a failing motherboard. I'm aiming to keep the existing
> > Athlon CPU so I'm tied down to to a socket AM2(+) board and the
> > majority of those available seem to have nForce 630a chipsets and
> > RTL8211CL or 8201EL NIC's which aren't explicitly mentioned in the
> > release notes
> > . I see
> > that the strings RTL8211C(L) and RTL8201L (but not EL) appear
> > in /usr/src/sys/dev/rgephy.c and rlphy.c but the man page for the rl
> > driver only mentions RealTek 8129/8139 and I'm not sure which driver is
> > built from rgephy.c.
> >
> > Am I going to have problems if I get a motherboard with one of these
> > NIC's?
> 
> It's a bit confusing, because there are product numbers associated
> with NICs, and with different individual component chipsets, and some

Correct. Identifying exact model number is the one of hardest thing
in Realtek controllers. I think RTL8211CL or 8201EL are not MAC
controller but the PHY model name. These PHY are supported by
rlphy(4) since they are not gigabit PHY(e.g. Fast Ethernet).

> code is shared.  Pyun YongHyeon, who has been working on the re(4) and
> rl(4) drivers in -CURRENT and -STABLE recently, could probably tell
> you more (I've cc'ed him).
> 

All Realtek controllers are supported so I think you don't have to
worry about that. Very recent controller like RTL8105 is not
supported yet but it would be done in near future.

> b.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: named/bind problems....

2011-01-19 Thread Gary Kline


HEy:: I quit out of portupgrade when it tried to pull over 200MB 
of stuff, did a pkgdb -Fv; then found the the new xdm actually works!

So I am back with two or more xterms/Konsoles and able to type for
legibally.   Dunno what happened but aint asking no questions

At least now I will be able to use my 4-port KVM switch to mv back and
forth from here on ethic [Server] to tao [Desktop], and have fewer
troubles.

:_)


On Wed, Jan 19, 2011 at 06:11:23PM -0500, Robert Boyer wrote:
> Sorry to see you are still having issues. I thought you were set when we 
> fixed your resolv last night.
> 
> Okay - let's start from scratch here
> 
> Are you sure you need a named? Are you actually serving dns for your own IP 
> addresses or are you using it as a caching server. 


i am actually serving my own DNS for 209.180.213.209-//213.  No
ethic, my doomain disappeares from the world.  

Note that friends say that I am a bit nuts to do this myself; they
thingk I should just pay somebody to host my sites.  There is
www, jottings, journey, transfinite, the site that hosts my library
writing group, and the site that hosts my friends busuiness site.  


> Getting a new named working/installed is not an issue. Config files are 
> usually and issue. If you can explain your network topology and what you are 
> trying to make work I can probably point you in the right direction.
> 
> 
> We did get your local resolution issue solved didn't we?


Somehow, with "^nameserver 8.8.8.8" added to my /etc/resolv.conf got
even my firfox webserver working on "tao".  Not now.

Now that you know that I acutally have ns1.thought.org [[
==ethic.thought.org ]]; that is serves my DNS, what next?  I admit to
only having glanced at the new bind97.  At 01:30 I was helping my
daughter with an English paper.

gary


> 
> RB
> 
> On Jan 19, 2011, at 6:03 PM, Gary Kline wrote:
> 
> > Yesterday noon my time I rebooted my server.  Things seemed to be slow.
> > Several streams were hanging or stopping, and because ethic.thought.org had
> > been up for 61 days I figured it wouldn't hurt to reinitialize stuff.
> > 
> > Well, nutshell, disaster.  For hours it wasn't clear whether the server 
> > would
> > survive, but eventually i got a portupgrade -avOPk going and now I am close 
> > to
> > having every port rebuilt.  
> > 
> > Now host kuow.org gives the the IP address of the U/Washington.  Etc. last
> > night for unknown reasons even this failed.  I remembered that late last 
> > fall
> > I  was warned the "bind9" was nearing its end/life.   I okayed the 
> > portupgrade
> > to remove bind9 and install whatever its follow up would be.  
> > 
> > Since then, my kill9named script[s] and my restartnamed script[s] have 
> > failed.
> > Can anyone save me from hours of tracking down whatever I have to to put
> > things right?   
> > 
> > Everything I get in trouble with this bind stuff it occurs how significant 
> > an
> > achievement it is to have a
> > service that automagically maps quad/dotted-decimals to actual words.
> > 
> > Sorry if this sounds disjoint; it is past time for a lollipop and a blanket
> > and a *nap*
> > 
> > gary
> > 
> > 
> > 
> > -- 
> > Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
> >The 7.97a release of Jottings: http://jottings.thought.org/index.php
> >   http://journey.thought.org
> > ethic 
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
> 



-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.97a release of Jottings: http://jottings.thought.org/index.php
   http://journey.thought.org
 ethic 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Coldfusion

2011-01-19 Thread Graeme Dargie
Hello List,

 

I am trying to get FreeBSD to serve up coldfusion based pages, from what
I have managed to find on google I need Apache tomcat, which I have
managed to install ok. I am doing this on a VM first so I don't mess up
my current servers. This is not for a production environment, I just
want to be able to work on some stuff at home, which will involve
coldfusion a database connector and an access mdb database. Yes I know I
could achieve the same results in php and MySQL, but the module I am
sitting at University is doing coldfusion. If the list is not an
appropriate place to discuss this, feel free to contact me off list.

 

Regards

 

Graeme

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


Re: named/bind problems....

2011-01-19 Thread Robert Boyer
okay,

lets start from the beginning here...

1) Do you have your own IP address and IP address block that you are hosting 
DMS for or is it local only?

2) from talking with you last night I want to make sure you are aware of two 
things...

A) resolv.conf is used for name resolution on EVERY system it tells ALL 
 of the software to get name services from. We fixed this last night for one of 
your systems by pointing it at a name server that works (the one you had did 
not work)
B) named provides name services (as well as forwarding to other dns 
services)  and can be pointed to by resolv.conf on you local systems -  if it 
is not working AND your local resolv.conf files are pointing there your name 
resolution will not work.
C) you can get internet name services working temporarily by using some 
of the servers I have you 8.8.8.8 and 8.8.4.4 in all of your resolv.conf files 
- you don't need named to work for this. You can also use /etc/hosts for your 
couple of local name/address translations as a work around until you get named 
working again.

3) dig is your friend for debugging named - you can use dig @local-dns-address 
lookup-name to debug your named while still using external name servers in your 
resolv.conf and local naming in /etc/hosts until you ACTUALLY are sure your 
local named is working.

4) The only thing you really really need a local named for is if you have a 
real IP block that you are responsible for providing name services on the 
internet for - rarely the case and even if you do you can temporarily jamb the 
names you care about in another 
DNS server somewhere out there like zoneedit or free dns temporarily.

Get your stuff working then debug your named.

RB
On Jan 19, 2011, at 6:55 PM, Gary Kline wrote:

> On Wed, Jan 19, 2011 at 06:11:23PM -0500, Robert Boyer wrote:
>> Sorry to see you are still having issues. I thought you were set when we 
>> fixed your resolv last night.
>> 
>> Okay - let's start from scratch here
>> 
>> Are you sure you need a named? Are you actually serving dns for your own IP 
>> addresses or are you using it as a caching server. Getting a new named 
>> working/installed is not an issue. Config files are usually and issue. If 
>> you can explain your network topology and what you are trying to make work I 
>> can probably point you in the right direction.
>> 
> 
> 
>   Last night I was on the right track; then suddenly things broke and I
>   have no idea w hy.  From the modem/router, the wire goes thru my 
>   firewa that runs pfSense.  Then output from the firewall plugs
>   into my switch.  
> 
>   My DNS/Mail/web server is a seperate box that plugs into the
>   hub/switch as well.  [i think; it is hard for me to get down 
>   and crawl around under the desk.]  The server has been running named
>   since April, '01.  I read DNS AND BIND to get things going; then in
>   late '07 serious network troubles and help from someone in the Dallas
>   Ft-Worth area reconfigured my network.This fellow mostly edited
>   the /etc/namedb/named.conf and related files.  I also host a friend's
>   site, gratis.  He is a builder; we have been friends for nearly
>   twenty years.   His site is a vvery small part of the picture; I 
>   mention it only to emphasize that my setup is not entirely trivial.
> 
>   Would it help to shar or tarball up my namedb files?
> 
>   FWIW, I am logged into ethic ona console.  Usually I work in X11
>   and have xset r off set to prevent key bounces.
> 
> 
>> 
>> We did get your local resolution issue solved didn't we?
> 
> 
>   Ithink in KVM'ing from tao to  ethic and back, the   configuration we 
>   set up last night  broke.   At least, in watching portupgrade draw in
>   more and more files [on ethic], when I KVM back to my desktop, the
>   mutt settings get lost
> 
>   -gary
> 
>> 
>> RB
>> 
>> On Jan 19, 2011, at 6:03 PM, Gary Kline wrote:
>> 
>>> Yesterday noon my time I rebooted my server.  Things seemed to be slow.
>>> Several streams were hanging or stopping, and because ethic.thought.org had
>>> been up for 61 days I figured it wouldn't hurt to reinitialize stuff.
>>> 
>>> Well, nutshell, disaster.  For hours it wasn't clear whether the server 
>>> would
>>> survive, but eventually i got a portupgrade -avOPk going and now I am close 
>>> to
>>> having every port rebuilt.  
>>> 
>>> Now host kuow.org gives the the IP address of the U/Washington.  Etc. last
>>> night for unknown reasons even this failed.  I remembered that late last 
>>> fall
>>> I  was warned the "bind9" was nearing its end/life.   I okayed the 
>>> portupgrade
>>> to remove bind9 and install whatever its follow up would be.  
>>> 
>>> Since then, my kill9named script[s] and my restartnamed script[s] have 
>>> failed.
>>> Can anyone save me from hours of tracking down whatever I have to to put
>>> things right?   
>>> 
>>> Eve

Re: named/bind problems....

2011-01-19 Thread Gary Kline
On Wed, Jan 19, 2011 at 06:11:23PM -0500, Robert Boyer wrote:
> Sorry to see you are still having issues. I thought you were set when we 
> fixed your resolv last night.
> 
> Okay - let's start from scratch here
> 
> Are you sure you need a named? Are you actually serving dns for your own IP 
> addresses or are you using it as a caching server. Getting a new named 
> working/installed is not an issue. Config files are usually and issue. If you 
> can explain your network topology and what you are trying to make work I can 
> probably point you in the right direction.
> 


Last night I was on the right track; then suddenly things broke and I
have no idea w hy.  From the modem/router, the wire goes thru my 
firewa that runs pfSense.  Then output from the firewall plugs
into my switch.  

My DNS/Mail/web server is a seperate box that plugs into the
hub/switch as well.  [i think; it is hard for me to get down 
and crawl around under the desk.]  The server has been running named
since April, '01.  I read DNS AND BIND to get things going; then in
late '07 serious network troubles and help from someone in the Dallas
Ft-Worth area reconfigured my network.This fellow mostly edited
the /etc/namedb/named.conf and related files.  I also host a friend's
site, gratis.  He is a builder; we have been friends for nearly
twenty years.   His site is a vvery small part of the picture; I 
mention it only to emphasize that my setup is not entirely trivial.

Would it help to shar or tarball up my namedb files?

FWIW, I am logged into ethic ona console.  Usually I work in X11
and have xset r off set to prevent key bounces.


> 
> We did get your local resolution issue solved didn't we?


Ithink in KVM'ing from tao to  ethic and back, the   configuration we 
set up last night  broke.   At least, in watching portupgrade draw in
more and more files [on ethic], when I KVM back to my desktop, the
mutt settings get lost

-gary

> 
> RB
> 
> On Jan 19, 2011, at 6:03 PM, Gary Kline wrote:
> 
> > Yesterday noon my time I rebooted my server.  Things seemed to be slow.
> > Several streams were hanging or stopping, and because ethic.thought.org had
> > been up for 61 days I figured it wouldn't hurt to reinitialize stuff.
> > 
> > Well, nutshell, disaster.  For hours it wasn't clear whether the server 
> > would
> > survive, but eventually i got a portupgrade -avOPk going and now I am close 
> > to
> > having every port rebuilt.  
> > 
> > Now host kuow.org gives the the IP address of the U/Washington.  Etc. last
> > night for unknown reasons even this failed.  I remembered that late last 
> > fall
> > I  was warned the "bind9" was nearing its end/life.   I okayed the 
> > portupgrade
> > to remove bind9 and install whatever its follow up would be.  
> > 
> > Since then, my kill9named script[s] and my restartnamed script[s] have 
> > failed.
> > Can anyone save me from hours of tracking down whatever I have to to put
> > things right?   
> > 
> > Everything I get in trouble with this bind stuff it occurs how significant 
> > an
> > achievement it is to have a
> > service that automagically maps quad/dotted-decimals to actual words.
> > 
> > Sorry if this sounds disjoint; it is past time for a lollipop and a blanket
> > and a *nap*
> > 
> > gary
> > 
> > 
> > 
> > -- 
> > Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
> >The 7.97a release of Jottings: http://jottings.thought.org/index.php
> >   http://journey.thought.org
> > ethic 
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
> 



-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.97a release of Jottings: http://jottings.thought.org/index.php
   http://journey.thought.org
 ethic 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Which network driver for RTL8211 or 8201 NIC's?

2011-01-19 Thread b. f.
Mike Clarke wrote:
> I need to replace a failing motherboard. I'm aiming to keep the existing
> Athlon CPU so I'm tied down to to a socket AM2(+) board and the
> majority of those available seem to have nForce 630a chipsets and
> RTL8211CL or 8201EL NIC's which aren't explicitly mentioned in the
> release notes
> . I see
> that the strings RTL8211C(L) and RTL8201L (but not EL) appear
> in /usr/src/sys/dev/rgephy.c and rlphy.c but the man page for the rl
> driver only mentions RealTek 8129/8139 and I'm not sure which driver is
> built from rgephy.c.
>
> Am I going to have problems if I get a motherboard with one of these
> NIC's?

It's a bit confusing, because there are product numbers associated
with NICs, and with different individual component chipsets, and some
code is shared.  Pyun YongHyeon, who has been working on the re(4) and
rl(4) drivers in -CURRENT and -STABLE recently, could probably tell
you more (I've cc'ed him).

b.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: named/bind problems....

2011-01-19 Thread Robert Boyer
Sorry to see you are still having issues. I thought you were set when we fixed 
your resolv last night.

Okay - let's start from scratch here

Are you sure you need a named? Are you actually serving dns for your own IP 
addresses or are you using it as a caching server. Getting a new named 
working/installed is not an issue. Config files are usually and issue. If you 
can explain your network topology and what you are trying to make work I can 
probably point you in the right direction.


We did get your local resolution issue solved didn't we?

RB

On Jan 19, 2011, at 6:03 PM, Gary Kline wrote:

> Yesterday noon my time I rebooted my server.  Things seemed to be slow.
> Several streams were hanging or stopping, and because ethic.thought.org had
> been up for 61 days I figured it wouldn't hurt to reinitialize stuff.
> 
> Well, nutshell, disaster.  For hours it wasn't clear whether the server would
> survive, but eventually i got a portupgrade -avOPk going and now I am close to
> having every port rebuilt.  
> 
> Now host kuow.org gives the the IP address of the U/Washington.  Etc. last
> night for unknown reasons even this failed.  I remembered that late last fall
> I  was warned the "bind9" was nearing its end/life.   I okayed the portupgrade
> to remove bind9 and install whatever its follow up would be.  
> 
> Since then, my kill9named script[s] and my restartnamed script[s] have failed.
> Can anyone save me from hours of tracking down whatever I have to to put
> things right?   
> 
> Everything I get in trouble with this bind stuff it occurs how significant an
> achievement it is to have a
> service that automagically maps quad/dotted-decimals to actual words.
> 
> Sorry if this sounds disjoint; it is past time for a lollipop and a blanket
> and a *nap*
> 
> gary
> 
> 
> 
> -- 
> Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
>The 7.97a release of Jottings: http://jottings.thought.org/index.php
>   http://journey.thought.org
> ethic 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"



named/bind problems....

2011-01-19 Thread Gary Kline
Yesterday noon my time I rebooted my server.  Things seemed to be slow.
Several streams were hanging or stopping, and because ethic.thought.org had
been up for 61 days I figured it wouldn't hurt to reinitialize stuff.

Well, nutshell, disaster.  For hours it wasn't clear whether the server would
survive, but eventually i got a portupgrade -avOPk going and now I am close to
having every port rebuilt.  

Now host kuow.org gives the the IP address of the U/Washington.  Etc. last
night for unknown reasons even this failed.  I remembered that late last fall
I  was warned the "bind9" was nearing its end/life.   I okayed the portupgrade
to remove bind9 and install whatever its follow up would be.  

Since then, my kill9named script[s] and my restartnamed script[s] have failed.
Can anyone save me from hours of tracking down whatever I have to to put
things right?   

Everything I get in trouble with this bind stuff it occurs how significant an
achievement it is to have a
service that automagically maps quad/dotted-decimals to actual words.

Sorry if this sounds disjoint; it is past time for a lollipop and a blanket
and a *nap*

gary



-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
The 7.97a release of Jottings: http://jottings.thought.org/index.php
   http://journey.thought.org
 ethic 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: FreeBSD Thinkpad t41

2011-01-19 Thread Maciej Milewski
On Wednesday 19 of January 2011 23:28:18, Alokat wrote:
> It's DHCP ... dont know why ... but it is working now ...:-)
> 
> Here is the putput from pciconf -lv
> 
...
> none3@pci0:2:2:0: class=0x028000 card=0x25518086 chip=0x10438086 rev=0x04
> hdr=0x00 vendor = 'Intel Corporation'
>  device = 'Intel(R) PRO/Wireless 2100 LAN Card Driver (82801)'
>  class  = network
This card is supported by ipw driver. Please look into man ipw for details 
about using it.

Regards,
Maciej
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: harddrive encryption

2011-01-19 Thread Roland Smith
On Tue, Jan 18, 2011 at 06:15:50PM +0100, Roland Smith wrote:
> > What do you folks think of the relative merits of AES vs Blowfish for
> > disk encryption?
> 
> Neither have been broken with their complete number of rounds. Versions of
> both can be broken with a reduced number of rounds. See
> http://www.schneier.com/paper-blowfish-oneyear.html for some analysis of
> blowfish, and e.g. http://www.schneier.com/paper-rijndael.html for several
> attacks on Rijndael with reduced rounds.

It seems I have to correct myself here. According to a presentation by Colin
Percival [1] (slides [2]), blowfish is not safe because it uses a relatively
small block size (for compatibility with DES, IIRC), which makes it more
likely that you can get two identical blocks of (cypher)text in one message,
giving an attacker an avenue of attack.

His recommendation is to use AES. This is wat geli(8) recommends as well.

[1]: http://blip.tv/file/3627639
[2]: http://www.bsdcan.org/2010/schedule/attachments/135_crypto1hr.pdf

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgplLh7SWen7j.pgp
Description: PGP signature


Re: FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

On 01/19/2011 11:13 PM, Maciej Milewski wrote:


On Wednesday 19 of January 2011 21:40:23, Alokat wrote:

> Hi,

>

> I have successfully installed FreeBSD on my T41.

>

> But I have some Questions:

>

> em0 doesn't start automatically.

Is it DHCP or static IP?

> Only when I use /etc/rc.d/routing restart it works.

>

> And the next Point is: how can I get access to my Wlan card?

> I have tried

> if_ath_load="YES"

> and

> if_wi_load="YES"

> in /boot/loader.conf but both didn't work.

> Do I need a special driver? Or did I forgot something else?

> Regards,

> Alokat

Please show the output of pciconf -lv there should be some info about 
your pci devices and wlan card should be among them. Maybe it's one of 
the intel cards which are supported by ipw or iwi driver?


Regards,

Maciej Milewski


It's DHCP ... dont know why ... but it is working now ...:-)

Here is the putput from pciconf -lv

hostb0@pci0:0:0:0:  class=0x06 card=0x05291014 chip=0x33408086 rev=0x03 
hdr=0x00
vendor = 'Intel Corporation'
device = '82855PM Processor to I/O Controller'
class  = bridge
subclass   = HOST-PCI
pcib1@pci0:0:1:0:   class=0x060400 card=0x chip=0x33418086 rev=0x03 
hdr=0x01
vendor = 'Intel Corporation'
device = '82855PM Processor to AGP Controller'
class  = bridge
subclass   = PCI-PCI
uhci0@pci0:0:29:0:  class=0x0c0300 card=0x052d1014 chip=0x24c28086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *1'
class  = serial bus
subclass   = USB
uhci1@pci0:0:29:1:  class=0x0c0300 card=0x052d1014 chip=0x24c48086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *2'
class  = serial bus
subclass   = USB
uhci2@pci0:0:29:2:  class=0x0c0300 card=0x052d1014 chip=0x24c78086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller *3'
class  = serial bus
subclass   = USB
ehci0@pci0:0:29:7:  class=0x0c0320 card=0x052e1014 chip=0x24cd8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB 2.0 EHCI Controller'
class  = serial bus
subclass   = USB
pcib2@pci0:0:30:0:  class=0x060400 card=0x chip=0x24488086 rev=0x81 
hdr=0x01
vendor = 'Intel Corporation'
device = '82801 Family (ICH2/3/4/5/6/7/8/9-M) Hub Interface to PCI 
Bridge'
class  = bridge
subclass   = PCI-PCI
isab0@pci0:0:31:0:  class=0x060100 card=0x chip=0x24cc8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DBM (ICH4-M) LPC Interface Bridge'
class  = bridge
subclass   = PCI-ISA
atapci0@pci0:0:31:1:class=0x01018a card=0x052d1014 chip=0x24ca8086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DBM (ICH4-M) UltraATA/100 EIDE Controller'
class  = mass storage
subclass   = ATA
none0@pci0:0:31:3:  class=0x0c0500 card=0x052d1014 chip=0x24c38086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller'
class  = serial bus
subclass   = SMBus
none1@pci0:0:31:5:  class=0x040100 card=0x05371014 chip=0x24c58086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = 'Realtek AC97 Audio (82801DBM SoundMAXController (ICH4-M B0 
step))'
class  = multimedia
subclass   = audio
none2@pci0:0:31:6:  class=0x070300 card=0x05241014 chip=0x24c68086 rev=0x01 
hdr=0x00
vendor = 'Intel Corporation'
device = '82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller'
class  = simple comms
subclass   = generic modem
vgapci0@pci0:1:0:0: class=0x03 card=0x05301014 chip=0x4c571002 rev=0x00 
hdr=0x00
vendor = 'ATI Technologies Inc. / Advanced Micro Devices, Inc.'
device = 'Mobility Radeon 7500 (M7 [LW])'
class  = display
subclass   = VGA
cbb0@pci0:2:0:0:class=0x060700 card=0x05521014 chip=0xac46104c rev=0x01 
hdr=0x02
vendor = 'Texas Instruments (TI)'
device = 'PCCard CardBus Controller (PCI4520)'
class  = bridge
subclass   = PCI-CardBus
cbb1@pci0:2:0:1:class=0x060700 card=0x05521014 chip=0xac46104c rev=0x01 
hdr=0x02
vendor = 'Texas Instruments (TI)'
device = 'PCCard CardBus Controller (PCI4520)'
class  = bridge
subclass   = PCI-CardBus
em0@pci0:2:1:0: class=0x02 card=0x05491014 chip=0x101e8086 rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = 'Gigabit Ethernet Controller (Mobile) (82540EP)'
class  = network
subclass   = ethernet
none3@pci0:2:2:0:   class=0x028000 card=0x25518086 chip=0x10438086 rev=0x04 
hdr=0x00
vendor = '

Re: FreeBSD Thinkpad t41

2011-01-19 Thread Maciej Milewski
On Wednesday 19 of January 2011 21:40:23, Alokat wrote:
> Hi,
> 
> I have successfully installed FreeBSD on my T41.
> 
> But I have some Questions:
> 
> em0 doesn't start automatically.
Is it DHCP or static IP?
> Only when I use /etc/rc.d/routing restart it works.
> 
> And the next Point is: how can I get access to my Wlan card?
> I have tried
> if_ath_load="YES"
> and
> if_wi_load="YES"
> in /boot/loader.conf but both didn't work.
> Do I need a special driver? Or did I forgot something else?
> Regards,
> Alokat
Please show the output of pciconf -lv there should be some info about your pci 
devices and wlan card should be among them. Maybe it's one of the intel cards 
which are supported by ipw or iwi driver?

Regards,
Maciej Milewski
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

On 01/19/2011 09:52 PM, Brian Callahan wrote:



On Wed, Jan 19, 2011 at 3:40 PM, Alokat > wrote:


Hi,

I have successfully installed FreeBSD on my T41.

But I have some Questions:

em0 doesn't start automatically.
Only when I use /etc/rc.d/routing restart it works.


# echo 'ifconfig_em0="DHCP"' >> /etc/rc.conf


And the next Point is: how can I get access to my Wlan card?

I have tried

if_ath_load="YES"

and

if_wi_load="YES"

in /boot/loader.conf but both didn't work.

Do I need a special driver? Or did I forgot something else?


Assuming you're using 8.x (and you're using ath) add this to /etc/rc.conf:
wlans_ath0="wlan0"
ifconfig_wlan0="DHCP"


Regards,
Alokat
___
freebsd-questions@freebsd.org
 mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
"freebsd-questions-unsubscr...@freebsd.org
"



I'm sorry but my WLAN Light is off.
And I guess it should be on if FreeBSD is talking to this.

Regards,
alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


ldap with GSSAPI using security/cyrus-sasl2 with security/heimdal?

2011-01-19 Thread Jan Henrik Sylvester
Earlier I tried GSSAPI authentication for ldap against heimdal in 
8.1-RELEASE base and failed. Now I tried again with security/heimdal.


I got:

security/heimdal
security/cyrus-sasl2 with HEIMDAL_HOME=/usr/local/
net/openldap24-server with WITH_SASL

When I first tried "ldapmodify -Z -Y GSSAPI -I -D  -H 
ldap://", I got:


ldap_sasl_interactive_bind_s: Unknown authentication method (-6)
additional info: SASL(-4): no mechanism available: No worthy 
mechs found


In /var/log/auth.log, I found for slapd and ldapmodify:

unable to dlopen /usr/local/lib/sasl2/libgssapiv2.so.2: 
/usr/local/lib/sasl2/libgssapiv2.so.2: Undefined symbol 
"gss_nt_service_name"


I found this discussion: 
http://www.mail-archive.com/heimdal-discuss@sics.se/msg00126.html


Not sure what might be wrong with configure, I added the following line 
to config.h after running "make configure" and before "make":


#define HAVE_GSS_C_NT_HOSTBASED_SERVICE 1

With security/cyrus-sasl2 compiled that way, I do not get the "Undefined 
symbol" starting slapd anymore.


Now ldapmodify gives me:

ldap_sasl_interactive_bind_s: Other (e.g., implementation specific) 
error (80)
additional info: SASL(-1): generic failure: GSSAPI Error:  No 
credentials were supplied, or the credentials were unavailable or 
inaccessible. (unknown mech-code 0 for mech unknown)


I am out of ideas. Do I even have the ldapmodify command correct? (I 
tried with "-U u:" and "-X u:", too.)


Is security/cyrus-sasl2 supposed to work with GSSAPI from security/heimdal?

How should the undefined symbol be fixed properly? Is there anything 
more to fix with cyrus-sasl configure?


Thanks for any ideas,
Jan Henrik
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


FreeBSD Thinkpad t41

2011-01-19 Thread Alokat

Hi,

I have successfully installed FreeBSD on my T41.

But I have some Questions:

em0 doesn't start automatically.
Only when I use /etc/rc.d/routing restart it works.

And the next Point is: how can I get access to my Wlan card?

I have tried

if_ath_load="YES"

and

if_wi_load="YES"

in /boot/loader.conf but both didn't work.

Do I need a special driver? Or did I forgot something else?

Regards,
Alokat
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: The book of pf...

2011-01-19 Thread Peter N. M. Hansteen
Modulok  writes:

> This book comes in two editions. The first was published in December
> 2007, the second, November, 2010. Does anyone have this? And if so
> would I be correct to get the first edition instead? I know FreeBSD's
> pf lags being openBSD's, so I'm not sure which version of the book to
> get, if either are applicable to the version of pf that FreeBSD runs?
> (FreeBSD 8.1)

I started updating the text for the 2nd edition due to the changes
introduced in OpenBSD 4.7, (aka "Henning's monster diff") plus a few
other goodies such as pflow(4) that had turned up since the first
edition's late 2007 release, but I took some care to keep samples in
the older syntax where it's relevant.

That means that for the FreeBSD parts, the second edition is up to
date per roughly early October 2010 (FreeBSD 8.1-stable), with a not
that for FreeBSD, we assume the 8 series.  If you're running an older
release (ie a close descendant of whatever was -stable in late 2007),
the first edition is likely better suited.  

For other differences between the two, you could probably get an idea
by comparing the TOCs from the two editions' web pages (at
http://nostarch.com/pf.htm and http://nostarch.com/pf2.htm
respectively).  The second edition turned into a more thorough rewrite
than I'd originally planned with some bits moving around. But if in
doubt, why not get both? ;)

But yes, for FreeBSD 8.1, you'll be happier with the second edition.
FreeBSD's PF syntax is old-style, but some other relevant network
config details changed between 2007 and 2010, and the second edition
reflects this.

- Peter

-- 
Peter N. M. Hansteen, member of the first RFC 1149 implementation team
http://bsdly.blogspot.com/ http://www.bsdly.net/ http://www.nuug.no/
"Remember to set the evil bit on all malicious network traffic"
delilah spamd[29949]: 85.152.224.147: disconnected after 42673 seconds.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: use of menus crashes Firefox?

2011-01-19 Thread Chuck Swiger
Hi--

On Jan 19, 2011, at 7:37 AM, Keith Seyffarth wrote:
>> Enter "run", or "c" for continue.  If and when Firefox crashes, you
>> will be able to gain more useful information
> 
> That does provide a bunch more information. Thank you.
[ ... ]
> Program received signal SIGSYS, Bad system call.
> 0x29d7f16b in ksem_init () from /lib/libc.so.7
> (gdb) c
> Continuing.

Doing a "bt" would have been helpful right about there, but I think I've got 
enough info to suggest rebuilding your kernel with the following option:

options P1003_1B_SEMAPHORES

Regards,
-- 
-Chuck

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


devel/libsoup-2.32.2 Compile error _md5 problem

2011-01-19 Thread David Southwell

Thanks in advance for help with this one:

 File "/usr/local/bin/g-ir-scanner", line 43, in 
from giscanner.scannermain import scanner_main
  File "/usr/local/lib/gobject-introspection/giscanner/scannermain.py", line 
34, in 
from giscanner.dumper import compile_introspection_binary
  File "/usr/local/lib/gobject-introspection/giscanner/dumper.py", line 26, in 

from .gdumpparser import IntrospectionBinary
  File "/usr/local/lib/gobject-introspection/giscanner/gdumpparser.py", line 
30, in 
from .transformer import TransformerException
  File "/usr/local/lib/gobject-introspection/giscanner/transformer.py", line 
26, in 
from .cachestore import CacheStore
  File "/usr/local/lib/gobject-introspection/giscanner/cachestore.py", line 
24, in 
import hashlib
  File "/usr/local/lib/python2.6/hashlib.py", line 136, in 
md5 = __get_builtin_constructor('md5')
  File "/usr/local/lib/python2.6/hashlib.py", line 63, in 
__get_builtin_constructor
import _md5
ImportError: No module named _md5
gmake[3]: *** [Soup-2.4.gir] Error 1
gmake[3]: Leaving directory 
`/usr/ports/devel/libsoup/work/libsoup-2.32.2/libsoup'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory 
`/usr/ports/devel/libsoup/work/libsoup-2.32.2/libsoup'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/devel/libsoup/work/libsoup-2.32.2'
gmake: *** [all] Error 2
*** Error code 1

Stop in /usr/ports/devel/libsoup.
*** Error code 1
David

Photographic Artist
Permanent Installations & Design
Creative Imagery and Advanced Digital Techniques
High Dynamic Range Photography & Official Portraiture
Combined darkroom & digital creations
& Systems Adminstrator for the vizion2000.net network
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: vm ware

2011-01-19 Thread Phan Quoc Hien
Hello!
I run FreeBSD in vmware workstation with no problem !

On Wed, Jan 19, 2011 at 3:41 PM, rafay awan  wrote:
> Hi,
>     I want to inquire if its possible to install freeBSD on vm ware?
>     is there any live cd iso available?
>
> --
> regards,
> Abdul Rafay
>
>
>
>
>
> +=+
> This message may contain confidential and/or privileged information. If you
> are not the addressee or authorized to receive this for the addressee, you
> must not use, copy, disclose or take any action based on this message or any
> information herein. If you have received this message in error, please
> advise the sender immediately by reply e-mail and delete this message. Thank
> you for your cooperation.
> +=
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
>



-- 
Best regards,
Mr.Hien
E-mail: phanquoch...@gmail.com
Website: www.mrhien.info
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: chromium producing constant hdd access

2011-01-19 Thread Julian H. Stacey
I wrote

> I suggest for follow up:
>   Issue:  List name:
>   Get Maintainer To Fix Make  po...@freebsd.org
>   Disc Access ?   questi...@freebsd.org
> 
> ---
> From owner-freebsd-po...@freebsd.org Mon Jan 17 21:06:00 2011

> To: po...@freebsd.org
...
> Subject: www/chromium MAINTAINER,
>   was Re: chromium producing constant hdd access 

PS That thread + approx 10 follow ups not posted to questions@ are here:
http://lists.freebsd.org/pipermail/freebsd-ports/2011-January/065448.html

Cheers,
Julian
-- 
Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com
Mail plain text;  Not quoted-printable, or HTML or base 64.
Avoid top posting, it cripples itemised cumulative responses.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


FreeBSD 8.1 and Intel Atom System Panic

2011-01-19 Thread Paul Niemi

Hello,

I am having a system panic issue with the Intel D510MO motherboard.  It uses 
an Intel D510 Atom CPU, that is a hyperthreaded, dual core CPU that supports 
Intel 64 Technology.  I am using FreeBSD 8.1_RELEASE AMD64 with the GENERIC 
kernel, and the system crashes with the following error on the console, when 
hyperthreading is enabled in the BIOS.


panic:vm_page_insert: effset already allocated
cpuid:3

If I disable the hytperthreading in the BIOS, then the system is stable.  Does 
anyone know what this error means, or what the hyperthreading support is with 
8.1_RELEASE AMD64?   Do I need to recompile the kernel with different options 
for this CPU, or is this a bug?


Thank you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: chromium producing constant hdd access

2011-01-19 Thread Julian H. Stacey
Hi questions@

Chad Perrin wrote:
> 
> --Nq2Wo0NMKNjxTN9z
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: inline
> Content-Transfer-Encoding: quoted-printable
> 
> On Sun, Jan 16, 2011 at 11:51:43AM +, Alexander Best wrote:
> > hi there,
> >=20
> > i noticed chromium is producing a lot of hdd activity. i think it writes =
> every
> > 1kb of new data directly to disk or so. is there a way to increase chromi=
> ums
> > download buffer somehow. firefox or opera seem to have a much larger down=
> load
> > buffer and write bigger chunks to disk. thus they produce a lot less hdd =
> writes
> > per second.
> >=20
> > has anybody experienced the same behavior?
> 
> I haven't used the Chromium browser in months, since a bunch of
> vulnerabilities arose and the port maintainer's business model evidently
> makes it impossible for him to update the port to fix vulnerabilities
> that are less than a year old.
> 
> --=20
> Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]

I answered this with a To: ports@ + BCC: questions@, to avoid a
double post thread, & split the topic, leaving hdd access on
questions, & seconding the issue of Non Maintenance of chromium to ports@.

BCC alarmed the anti spam freebsd robot, & though I'm subscribed
to questions@, the post to questions@ got referred to moderators,
who did not pass it, here it is.

I suggest for follow up:
Issue:  List name:
Get Maintainer To Fix Make  po...@freebsd.org
Disc Access ?   questi...@freebsd.org

---
>From owner-freebsd-po...@freebsd.org Mon Jan 17 21:06:00 2011
To: po...@freebsd.org
From: "Julian H. Stacey" 
Date: Mon, 17 Jan 2011 20:12:40 +0100
Cc: r...@freebsd.org, Chad Perrin ,
"Gary Jennejohn \(Home\)" 
Subject: www/chromium MAINTAINER,
was Re: chromium producing constant hdd access 

Hi po...@freebsd.org &
cc GaryJ & rene@
bcc: freebsd-questions@freebsd.org

The hdd access thread could continue on questions@ so I left that BCC'd
but issue of MAINTAINER of www/chromium best on ports@ list.

Reference:
> From: Chad Perrin  
> 
> On Sun, Jan 16, 2011 at 11:51:43AM +, Alexander Best wrote:
> > hi there,
> >=20
> > i noticed chromium is producing a lot of hdd activity. i think it writes =
> every
> > 1kb of new data directly to disk or so. is there a way to increase chromi=
> ums
> > download buffer somehow. firefox or opera seem to have a much larger down=
> load
> > buffer and write bigger chunks to disk. thus they produce a lot less hdd =
> writes
> > per second.
> >=20
> > has anybody experienced the same behavior?
> 
> I haven't used the Chromium browser in months, since a bunch of
> vulnerabilities arose and the port maintainer's business model evidently
> makes it impossible for him to update the port to fix vulnerabilities
> that are less than a year old.

ports/www/chromium "MAINTAINER" rene@ (cc'd) leaves it broken (see
mail below), it still won't even compile (I just checked again a
week later).  A CVS roll back would at least get it compiling again,
rene@ has ignored request to roll back.  If rene@ resigns,
MAINTAINER would revert to po...@freebsd.org so others could fix
FreeBSD's current ports/www/chromium


] To: =?ISO-8859-1?Q?Ren=E9_Ladan?= 
] cc: "Gary Jennejohn (Home)" 
] Subject: Re: /pri/FreeBSD/branches/amd64/-current/ports/www/chromium 
] From: "Julian H. Stacey" 
] cc: "Julian H. Stacey" 
] Date: Mon, 10 Jan 2011 18:51:26 +0100
] Sender: j...@berklix.com
] 
] Hi,
] Reference:
] > From:   =?ISO-8859-1?Q?Ren=E9_Ladan?=  
] > Date:   Mon, 10 Jan 2011 18:06:37 +0100 
] > Message-id:  
] 
] =?ISO-8859-1?Q?Ren=E9_Ladan?= wrote:
] > 2011/1/10 Julian H. Stacey :
] > > Hi Rene cc Gary,
] > >
] > > =?ISO-8859-1?Q?Ren=E9_Ladan?= wrote:
] > >> 2011/1/10 Julian H. Stacey :
] > >> > Hi r...@freebsd.org
] > >> > cc Gary J
] > >> >
] > >> > FYI as maintainer of chromium
] > >> >
] > >> > cd /pri/FreeBSD/branches/amd64/-current/ports/www/chromium
] > >> > setenv PORTSDIR /pri/FreeBSD/branches/amd64/-current/ports
] > >> > uname -a
] > >> > FreeBSD fire.js.berklix.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Mon 
Jul 12 00:59:43 CEST 2010     
j...@fire.js.berklix.net:/usr1/src/sys/amd64/compile/FIRE64.small  amd64
] > >> > make
] > >> >        ===>  chromium-6.0.472.63 cannot install: Unknown component 
dconf.
] > >> >
] > >> > I have built chromium before on this box,
] > >> >        "About" key reports: 6.0.472.63(0)
] > >> >        /var/db/pkg/chromium-6.0.472.63
] > >> >
] > >> > It won't rebuild now though,
] > >> > ( I was trying to rebuild to make package for a friend cc'd Gary
] > >> >  who runs current, chrome doesnt build for him too apparently )
] > >> >
] > >> Currently the version of Chromium in the Ports Collection is marked as
] > >> FORBIDDEN because of security problems, and the source distribution
] > >> tarball is unavailable.
] > >>
] > >> There should be a n

Re: use of menus crashes Firefox?

2011-01-19 Thread Keith Seyffarth

> It's not going to help you but I just want to confirm that I'm 
> experiencing the same problem on 8.1-R amd64. It's not happening all the 
> time i.e. everything works fine and then it bites me say only once in a 
> week.

FreeBSD janet.weif.net 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Sat Oct 31
16:21:25 MDT 2009
on a 2.4 GHZ Pentium Dual Core

But, while Firefox 3.5 is much better than Firefox 3.6, I don't think
I've gone a whole day without it crashing since I upgraded GTK
mid-December.

Keith
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: use of menus crashes Firefox?

2011-01-19 Thread Keith Seyffarth
Chuck Swiger  writes:

> Enter "run", or "c" for continue.  If and when Firefox crashes, you
> will be able to gain more useful information

That does provide a bunch more information. Thank you.

Here is the output when Firefox crashed when trying to load a web
page. I can definitely get another one for when Firefox crashes when you
exit, and I can probably get another one for when it crashes when you
reload a page, but that's a little less easy to reproduce.
(to maintain some readability, I removed the "loading" lines)

$ gdb /usr/local/lib/firefox3/firefox-bin 1303
Attaching to program: /usr/local/lib/firefox3/firefox-bin, process 1303
[New Thread 0x2c628be0 (LWP 100152)]
[New Thread 0x2ca0c130 (LWP 100191)]
[New Thread 0x2c628e00 (LWP 100188)]
[New Thread 0x2ca0b470 (LWP 100185)]
[New Thread 0x2b508ef0 (LWP 100186)]
[New Thread 0x2ca0bad0 (LWP 100184)]
[New Thread 0x2ca0bbe0 (LWP 100192)]
[New Thread 0x2ca0b9c0 (LWP 100190)]
[New Thread 0x2ca0b8b0 (LWP 100189)]
[New Thread 0x2a201480 (LWP 100183)]
[New Thread 0x2a201370 (LWP 100182)]
[New Thread 0x2a201260 (LWP 100181)]
[New Thread 0x2a201150 (LWP 100180)]
[New Thread 0x2a201040 (LWP 100179)]
[Switching to Thread 0x2c628be0 (LWP 100152)]
0x29e581a7 in __error () from /lib/libthr.so.3
(gdb) c
Continuing.
[New Thread 0x2ca0af20 (LWP 100187)]
[Thread 0x2ca0bad0 (LWP 100184) exited]
[Thread 0x2ca0af20 (LWP 100187) exited]
[Thread 0x2ca0c130 (LWP 100191) exited]
[New Thread 0x2afc79c0 (LWP 100184)]
[Thread 0x2afc79c0 (LWP 100184) exited]
[New Thread 0x2c628cf0 (LWP 100184)]
[Thread 0x2c628cf0 (LWP 100184) exited]
[New Thread 0x2ca0a590 (LWP 100184)]
[Thread 0x2ca0a590 (LWP 100184) exited]
[New Thread 0x2c628140 (LWP 100154)]
[Thread 0x2c628140 (LWP 100154) exited]
[New Thread 0x2ca0bad0 (LWP 100154)]
[Thread 0x2ca0bad0 (LWP 100154) exited]
[New Thread 0x2ca0af20 (LWP 100154)]
[Thread 0x2ca0af20 (LWP 100154) exited]
[New Thread 0x2ca0c130 (LWP 100154)]
[Thread 0x2ca0c130 (LWP 100154) exited]
[New Thread 0x2afc79c0 (LWP 100154)]
[Thread 0x2afc79c0 (LWP 100154) exited]
[New Thread 0x2c628cf0 (LWP 100154)]
[Thread 0x2c628cf0 (LWP 100154) exited]
[New Thread 0x2ca0a590 (LWP 100154)]
[New Thread 0x2c628140 (LWP 100161)]
[Thread 0x2ca0a590 (LWP 100154) exited]

Program received signal SIGPIPE, Broken pipe.
[Switching to Thread 0x2a201040 (LWP 100179)]
0x29e16213 in write () from /lib/libc.so.7
(gdb) c
Continuing.

Program received signal SIGSYS, Bad system call.
0x29d7f16b in ksem_init () from /lib/libc.so.7
(gdb) c
Continuing.

Program terminated with signal SIGSYS, Bad system call.
The program no longer exists.
(gdb) q

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


Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Hans Petter Selasky
On Wednesday 19 January 2011 15:51:41 Steve Polyack wrote:
> On 01/19/11 08:48, Steve Polyack wrote:
> > On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:
> >> On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:
> >>> We've recently upgraded a few desktop workstations from Dell
> >>> Optiplex 960s to Optiplex 980s.  We were running FreeBSD
> >>> 8.1-RELEASE.  The migration was performed by simply swapping the
> >>> drives into the new systems.  Immediately after switching people
> >>> over, they all began to report bizarre keyboard issues - things like
> >>> infinite key repeats (letters, numbers, "enter") for keys they did
> >>> not hold down.  The key repeats continue indefinitely until another
> >>> key is pressed.  Occasionally, even mouse input will trigger similar
> >>> infinite keyboard input repetition.  In addition to the repeat
> >>> issue, sometimes physical key-presses are not registered by FreeBSD,
> >>> leading to typos and angry developers.
> >>> 
> >>> We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
> >>> systems, and the issue persists.  Because of the observed behavior,
> >>> I'm thinking that this is due to new hardware in the 980s which
> >>> isn't timing or handling interrupts correctly under the FreeBSD
> >>> kernel.
> >>> 
> >>> Looking at a 'pciconf -lvb' from each system, I noticed that the 980
> >>> has two USB controllers which probe under ehci(4), while the 960
> >>> (which does not exhibit this problem), enumerates six uhci(4)
> >>> controllers and two ehci(4) controllers.  To cut to the chase here,
> >>> the 960 users' keyboards probe under a USB1.0 uhci(4), while the
> >>> 980s only have ehci(4) devices to attach to.
> >>> 
> >>> So, I guess what I'm asking is - has anyone else seen any keyboard
> >>> repeat or other USB craziness with ehci(4) ports or otherwise Intel
> >>> PCH controllers?Any fellow Optiplex 980 users?  I'd be more than
> >>> happy to provide pciconf or other output if requested.
> >> 
> >> Try adding the following to /boot/loader.conf then reboot and see if
> >> the "excessive repeat" behaviour changes:
> >> 
> >> hint.kbdmux.0.disabled="1"
> >> 
> >> It would also help if you would state exactly what brand/model of
> >> keyboard is used.  Yes, believe it or not, it matters.  dmesg output
> >> would be helpful in this case.
> > 
> > The keyboard is also a Dell model - model KB1421, or listed as "Dell
> > QuiteKey Keyboard" under dmesg.  The same keyboard does not exhibit
> > the strange behavior when used with the older model of tower (Optiplex
> > 960).
> > 
> >  I'll reboot today with the loader.conf hint you provided.  I'll let
> > 
> > you guys know if it helps.  Thanks!
> 
> The problem still exists with the kbdmux.0.disabled hint.  It definitely
> took effect, as there is no longer a /dev/kbdmux0, and dmesg lists the
> refusal to register the kbdmux module.  Any other ideas?  We've tried
> playing with the hw.usb.ehci.lostinrbug and hw.usb.ehci.no_hs sysctls,
> but they don't make a difference either.
> 
> Looking at the ehci(4) man page, this sticks out at me:
> BUGS
>   The driver is not finished and is quite buggy.
> 
>   There is currently no support for isochronous transfers.

For FreeBSD 8+ this is not true. Probably the manpage has not been updated. 
Hence you are seeing a different number of UHCI controllers, this looks like 
an ACPI problem. USB keyboards usually require a UHCI to enumerate. The EHCI 
can only enumerate High Speed devices.

--HPS
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: vm ware

2011-01-19 Thread Len Conrad
=>Hi,
> I want to inquire if its possible to install freeBSD on vm ware?
> is there any live cd iso available?

I've had no problems installing FreeBSD 6,7,8 as VM into ESXi 4.1 hypervisor.

Latest success was using the VMWare cold converter .iso to virtualize a FreeBSD 
6.2 physical machine and export it to ESXi 4.1 as VM.

The trick that saves lot of pain and time post-virtualization was that we first 
edited /etc/fstab on the physical machine and replace the "sd" devices with 
"da" so FreeBSD kernel finds all the slices, then we shut it down to reboot 
with the cold converter.

Then we look via the VMWare console of the FreeBSD VM /var/run/dmesg.boot file 
to see what interface the hardware probe found and fix up /etc/rc.conf. Then

/etc/rc.d/netif restart
/etc/rc.d/routing restart

We are building a new VM with fbsd 8.1, but until then the 6.2 virtualization 
got us off an over-powered Pentium4 to an 8-core Xeon ESXi.

Len

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


Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Steve Polyack

On 01/19/11 08:48, Steve Polyack wrote:

On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:

On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:

We've recently upgraded a few desktop workstations from Dell
Optiplex 960s to Optiplex 980s.  We were running FreeBSD
8.1-RELEASE.  The migration was performed by simply swapping the
drives into the new systems.  Immediately after switching people
over, they all began to report bizarre keyboard issues - things like
infinite key repeats (letters, numbers, "enter") for keys they did
not hold down.  The key repeats continue indefinitely until another
key is pressed.  Occasionally, even mouse input will trigger similar
infinite keyboard input repetition.  In addition to the repeat
issue, sometimes physical key-presses are not registered by FreeBSD,
leading to typos and angry developers.

We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
systems, and the issue persists.  Because of the observed behavior,
I'm thinking that this is due to new hardware in the 980s which
isn't timing or handling interrupts correctly under the FreeBSD
kernel.

Looking at a 'pciconf -lvb' from each system, I noticed that the 980
has two USB controllers which probe under ehci(4), while the 960
(which does not exhibit this problem), enumerates six uhci(4)
controllers and two ehci(4) controllers.  To cut to the chase here,
the 960 users' keyboards probe under a USB1.0 uhci(4), while the
980s only have ehci(4) devices to attach to.

So, I guess what I'm asking is - has anyone else seen any keyboard
repeat or other USB craziness with ehci(4) ports or otherwise Intel
PCH controllers?Any fellow Optiplex 980 users?  I'd be more than
happy to provide pciconf or other output if requested.

Try adding the following to /boot/loader.conf then reboot and see if
the "excessive repeat" behaviour changes:

hint.kbdmux.0.disabled="1"

It would also help if you would state exactly what brand/model of
keyboard is used.  Yes, believe it or not, it matters.  dmesg output
would be helpful in this case.

The keyboard is also a Dell model - model KB1421, or listed as "Dell 
QuiteKey Keyboard" under dmesg.  The same keyboard does not exhibit 
the strange behavior when used with the older model of tower (Optiplex 
960).


 I'll reboot today with the loader.conf hint you provided.  I'll let 
you guys know if it helps.  Thanks!




The problem still exists with the kbdmux.0.disabled hint.  It definitely 
took effect, as there is no longer a /dev/kbdmux0, and dmesg lists the 
refusal to register the kbdmux module.  Any other ideas?  We've tried 
playing with the hw.usb.ehci.lostinrbug and hw.usb.ehci.no_hs sysctls, 
but they don't make a difference either.


Looking at the ehci(4) man page, this sticks out at me:
BUGS
 The driver is not finished and is quite buggy.

 There is currently no support for isochronous transfers.



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


Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Steve Polyack

On 01/19/11 09:35, Jan Henrik Sylvester wrote:

On 01/-10/-28163 20:59, Steve Polyack wrote:

On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:

On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:

We've recently upgraded a few desktop workstations from Dell
Optiplex 960s to Optiplex 980s. We were running FreeBSD
8.1-RELEASE. The migration was performed by simply swapping the
drives into the new systems. Immediately after switching people
over, they all began to report bizarre keyboard issues - things like
infinite key repeats (letters, numbers, "enter") for keys they did
not hold down. The key repeats continue indefinitely until another
key is pressed. Occasionally, even mouse input will trigger similar
infinite keyboard input repetition. In addition to the repeat
issue, sometimes physical key-presses are not registered by FreeBSD,
leading to typos and angry developers.

We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
systems, and the issue persists. Because of the observed behavior,
I'm thinking that this is due to new hardware in the 980s which
isn't timing or handling interrupts correctly under the FreeBSD
kernel.

Looking at a 'pciconf -lvb' from each system, I noticed that the 980
has two USB controllers which probe under ehci(4), while the 960
(which does not exhibit this problem), enumerates six uhci(4)
controllers and two ehci(4) controllers. To cut to the chase here,
the 960 users' keyboards probe under a USB1.0 uhci(4), while the
980s only have ehci(4) devices to attach to.

So, I guess what I'm asking is - has anyone else seen any keyboard
repeat or other USB craziness with ehci(4) ports or otherwise Intel
PCH controllers? Any fellow Optiplex 980 users? I'd be more than
happy to provide pciconf or other output if requested.

Try adding the following to /boot/loader.conf then reboot and see if
the "excessive repeat" behaviour changes:

hint.kbdmux.0.disabled="1"

It would also help if you would state exactly what brand/model of
keyboard is used. Yes, believe it or not, it matters. dmesg output
would be helpful in this case.


The keyboard is also a Dell model - model KB1421, or listed as "Dell
QuiteKey Keyboard" under dmesg. The same keyboard does not exhibit the
strange behavior when used with the older model of tower (Optiplex 960).

I'll reboot today with the loader.conf hint you provided. I'll let you
guys know if it helps. Thanks!


I have 8.1-RELEASE running on an Optiplex 980 with no keyboard 
problems, but not with a Dell keyboard as we ordered Cherry keyboards 
with our Dells (the person evaluating the Dells thought the keyboard 
was way too light and fragile).


Since I usually have the keyboard plugged into the hub in the display, 
I just tried it directly in the (rear) usb ports with no difference. 
Trying the Fujitsu and Sun keyboards from the other machines in my 
office does not immediately lead to problems, either. (Or how much 
would I have to type to reproduce the problem?)


Maybe it is just the keyboards? Or a bios setting? (I cannot currently 
reboot to check if there are any keyboard related bios settings I 
changed.)




We have the keyboards plugged into the rear ports, and not via a USB 
hub.  The problem is not immediate or constant, but if you spend about 
two hours with the keyboard hooked up to the rear, you will certainly 
run into the problem (assuming its not related to these Dell keyboards...).


As for a BIOS setting, there is nothing relevant in the BIOS with 
regards to the keyboard or USB emulation that I can remember.


Thanks

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


Re: Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Jan Henrik Sylvester

On 01/-10/-28163 20:59, Steve Polyack wrote:

On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:

On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:

We've recently upgraded a few desktop workstations from Dell
Optiplex 960s to Optiplex 980s. We were running FreeBSD
8.1-RELEASE. The migration was performed by simply swapping the
drives into the new systems. Immediately after switching people
over, they all began to report bizarre keyboard issues - things like
infinite key repeats (letters, numbers, "enter") for keys they did
not hold down. The key repeats continue indefinitely until another
key is pressed. Occasionally, even mouse input will trigger similar
infinite keyboard input repetition. In addition to the repeat
issue, sometimes physical key-presses are not registered by FreeBSD,
leading to typos and angry developers.

We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
systems, and the issue persists. Because of the observed behavior,
I'm thinking that this is due to new hardware in the 980s which
isn't timing or handling interrupts correctly under the FreeBSD
kernel.

Looking at a 'pciconf -lvb' from each system, I noticed that the 980
has two USB controllers which probe under ehci(4), while the 960
(which does not exhibit this problem), enumerates six uhci(4)
controllers and two ehci(4) controllers. To cut to the chase here,
the 960 users' keyboards probe under a USB1.0 uhci(4), while the
980s only have ehci(4) devices to attach to.

So, I guess what I'm asking is - has anyone else seen any keyboard
repeat or other USB craziness with ehci(4) ports or otherwise Intel
PCH controllers? Any fellow Optiplex 980 users? I'd be more than
happy to provide pciconf or other output if requested.

Try adding the following to /boot/loader.conf then reboot and see if
the "excessive repeat" behaviour changes:

hint.kbdmux.0.disabled="1"

It would also help if you would state exactly what brand/model of
keyboard is used. Yes, believe it or not, it matters. dmesg output
would be helpful in this case.


The keyboard is also a Dell model - model KB1421, or listed as "Dell
QuiteKey Keyboard" under dmesg. The same keyboard does not exhibit the
strange behavior when used with the older model of tower (Optiplex 960).

I'll reboot today with the loader.conf hint you provided. I'll let you
guys know if it helps. Thanks!


I have 8.1-RELEASE running on an Optiplex 980 with no keyboard problems, 
but not with a Dell keyboard as we ordered Cherry keyboards with our 
Dells (the person evaluating the Dells thought the keyboard was way too 
light and fragile).


Since I usually have the keyboard plugged into the hub in the display, I 
just tried it directly in the (rear) usb ports with no difference. 
Trying the Fujitsu and Sun keyboards from the other machines in my 
office does not immediately lead to problems, either. (Or how much would 
I have to type to reproduce the problem?)


Maybe it is just the keyboards? Or a bios setting? (I cannot currently 
reboot to check if there are any keyboard related bios settings I changed.)


Cheers,
Jan Henrik
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Steve Polyack

On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:

On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:

We've recently upgraded a few desktop workstations from Dell
Optiplex 960s to Optiplex 980s.  We were running FreeBSD
8.1-RELEASE.  The migration was performed by simply swapping the
drives into the new systems.  Immediately after switching people
over, they all began to report bizarre keyboard issues - things like
infinite key repeats (letters, numbers, "enter") for keys they did
not hold down.  The key repeats continue indefinitely until another
key is pressed.  Occasionally, even mouse input will trigger similar
infinite keyboard input repetition.  In addition to the repeat
issue, sometimes physical key-presses are not registered by FreeBSD,
leading to typos and angry developers.

We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
systems, and the issue persists.  Because of the observed behavior,
I'm thinking that this is due to new hardware in the 980s which
isn't timing or handling interrupts correctly under the FreeBSD
kernel.

Looking at a 'pciconf -lvb' from each system, I noticed that the 980
has two USB controllers which probe under ehci(4), while the 960
(which does not exhibit this problem), enumerates six uhci(4)
controllers and two ehci(4) controllers.  To cut to the chase here,
the 960 users' keyboards probe under a USB1.0 uhci(4), while the
980s only have ehci(4) devices to attach to.

So, I guess what I'm asking is - has anyone else seen any keyboard
repeat or other USB craziness with ehci(4) ports or otherwise Intel
PCH controllers?Any fellow Optiplex 980 users?  I'd be more than
happy to provide pciconf or other output if requested.

Try adding the following to /boot/loader.conf then reboot and see if
the "excessive repeat" behaviour changes:

hint.kbdmux.0.disabled="1"

It would also help if you would state exactly what brand/model of
keyboard is used.  Yes, believe it or not, it matters.  dmesg output
would be helpful in this case.

The keyboard is also a Dell model - model KB1421, or listed as "Dell 
QuiteKey Keyboard" under dmesg.  The same keyboard does not exhibit the 
strange behavior when used with the older model of tower (Optiplex 960).


 I'll reboot today with the loader.conf hint you provided.  I'll let 
you guys know if it helps.  Thanks!

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


Re: The book of pf...

2011-01-19 Thread matteo filippetto
>
> Because Peter made mention on misc@ that the second edition was geared
> towards OpenBSD 4.8 and the version of pf that's in FreeBSD is quite a
> bit older.
>
> http://marc.info/?l=openbsd-misc&m=128938065524891&w=2
>
Hi

In the second edition there are also reference and syntax of previous
version of pf ( < 4.8 ).

Best regards
-- 
Matteo Filippetto
http://op83.blogspot.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Keyboard repeat issues with Dell Optiplex 980s

2011-01-19 Thread Steve Polyack

On 01/19/11 08:48, Steve Polyack wrote:

On 1/18/2011 5:56 PM, Jeremy Chadwick wrote:

On Tue, Jan 18, 2011 at 04:40:13PM -0500, Steve Polyack wrote:

We've recently upgraded a few desktop workstations from Dell
Optiplex 960s to Optiplex 980s.  We were running FreeBSD
8.1-RELEASE.  The migration was performed by simply swapping the
drives into the new systems.  Immediately after switching people
over, they all began to report bizarre keyboard issues - things like
infinite key repeats (letters, numbers, "enter") for keys they did
not hold down.  The key repeats continue indefinitely until another
key is pressed.  Occasionally, even mouse input will trigger similar
infinite keyboard input repetition.  In addition to the repeat
issue, sometimes physical key-presses are not registered by FreeBSD,
leading to typos and angry developers.

We've tried doing fresh installs of FreeBSD 8.2-RC2 on two of these
systems, and the issue persists.  Because of the observed behavior,
I'm thinking that this is due to new hardware in the 980s which
isn't timing or handling interrupts correctly under the FreeBSD
kernel.

Looking at a 'pciconf -lvb' from each system, I noticed that the 980
has two USB controllers which probe under ehci(4), while the 960
(which does not exhibit this problem), enumerates six uhci(4)
controllers and two ehci(4) controllers.  To cut to the chase here,
the 960 users' keyboards probe under a USB1.0 uhci(4), while the
980s only have ehci(4) devices to attach to.

So, I guess what I'm asking is - has anyone else seen any keyboard
repeat or other USB craziness with ehci(4) ports or otherwise Intel
PCH controllers?Any fellow Optiplex 980 users?  I'd be more than
happy to provide pciconf or other output if requested.

Try adding the following to /boot/loader.conf then reboot and see if
the "excessive repeat" behaviour changes:

hint.kbdmux.0.disabled="1"

It would also help if you would state exactly what brand/model of
keyboard is used.  Yes, believe it or not, it matters.  dmesg output
would be helpful in this case.

The keyboard is also a Dell model - model KB1421, or listed as "Dell 
QuiteKey Keyboard" under dmesg.  The same keyboard does not exhibit 
the strange behavior when used with the older model of tower (Optiplex 
960).


 I'll reboot today with the loader.conf hint you provided.  I'll let 
you guys know if it helps.  Thanks!



I forgot to attach my dmesg - here it is!
Copyright (c) 1992-2011 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.2-RC2 #1: Mon Jan 17 12:10:53 EST 2011
root@galvatron:/usr/obj/usr/src/sys/GENERIC amd64
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel(R) Core(TM) i5 CPU 750  @ 2.67GHz (2660.02-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x106e5  Family = 6  Model = 1e  Stepping = 5
  
Features=0xbfebfbff
  
Features2=0x98e3fd
  AMD Features=0x28100800
  AMD Features2=0x1
  TSC: P-state invariant
real memory  = 4294967296 (4096 MB)
avail memory = 4082315264 (3893 MB)
ACPI APIC Table: 
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s)
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  2
 cpu2 (AP): APIC ID:  4
 cpu3 (AP): APIC ID:  6
ioapic0: Changing APIC ID to 8
ioapic0  irqs 0-23 on motherboard
lapic0: Forcing LINT1 to edge trigger
kbd1 at kbdmux0
acpi0:  on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
cpu0:  on acpi0
cpu1:  on acpi0
cpu2:  on acpi0
cpu3:  on acpi0
acpi_button0:  on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pcib1:  irq 16 at device 3.0 on pci0
pci1:  on pcib1
vgapci0:  port 0xdc80-0xdcff mem 
0xf600-0xf6ff,0xe000-0xefff,0xf000-0xf1ff irq 16 at 
device 0.0 on pci1
nvidia0:  on vgapci0
vgapci0: child nvidia0 requested pci_enable_busmaster
vgapci0: child nvidia0 requested pci_enable_io
vgapci0: child nvidia0 requested pci_enable_io
nvidia0: [ITHREAD]
hdac0:  mem 
0xf7dfc000-0xf7df irq 17 at device 0.1 on pci1
hdac0: HDA Driver Revision: 20100226_0142
hdac0: [ITHREAD]
pci0:  at device 8.0 (no driver attached)
pci0:  at device 8.1 (no driver attached)
pci0:  at device 8.2 (no driver attached)
pci0:  at device 16.0 (no driver attached)
pci0:  at device 16.1 (no driver attached)
em0:  port 0xecc0-0xecdf mem 
0xf7fe-0xf7ff,0xf7fdc000-0xf7fdcfff irq 21 at device 25.0 on pci0
em0: Using an MSI interrupt
em0: [FILTER]
em0: Ethernet address: 84:2b:2b:a5:d0:45
ehci0:  mem 0xf7fdd000-0xf7fdd3ff irq 16 at 
device 26.0 on pci0
ehci0: [ITHREAD]
usbus0: EHCI version 1.0
usbus0:  on ehci0
hdac1:  mem 0xff87c000-0xff87 
irq 16 at device 27.0 on pci0
hdac1: HDA Driver Revision: 20100226_0142
hdac1: [ITHREAD]
pcib2:  irq 16 at

Re: Bluetooth mouse does not work after reboot

2011-01-19 Thread David Demelier

On 18/01/2011 09:31, David Demelier wrote:

Hello,

I bought a Logitech V470 bluetooth mouse for my laptop. I followed this
website to configure mine :

http://astralblue.livejournal.com/357664.html

It had worked correctly yesterday (when I setup everything) now nothing
happens, after the reboot if I put the mouse in the association state it
does not associate with my laptop (the mouse led is blinking all the time).

There is no messages at all and bthidd, hcsecd are running too.

in my /etc/bluetooth/hosts I have :
00:1f:20:0f:62:31 mouse

in my /etc/bluetooth/hcsecd.conf I have :
[..snip..]
device {
bdaddr 00:1f:20:0f:62:31;
name "Logitech V470";
key nokey;
pin "";
}

in my /etc/bluetooth/bthidd.conf I have :
device {
bdaddr 00:1f:20:0f:62:31;
control_psm 0x11;
interrupt_psm 0x13;
reconnect_initiate true;
battery_power true;
normally_connectable false;
hid_descriptor {
0x05 0x01 0x09 0x02 0xa1 0x01 0x85 0x02
0x09 0x01 0xa1 0x00 0x05 0x09 0x19 0x01
0x29 0x08 0x15 0x00 0x25 0x01 0x75 0x01
0x95 0x08 0x81 0x02 0x05 0x01 0x09 0x30
0x09 0x31 0x16 0x01 0xf8 0x26 0xff 0x07
0x75 0x0c 0x95 0x02 0x81 0x06 0x09 0x38
0x15 0x81 0x25 0x7f 0x75 0x08 0x95 0x01
0x81 0x06 0x05 0x0c 0x0a 0x38 0x02 0x75
0x08 0x95 0x01 0x81 0x06 0xc0 0xc0 0x06
0x00 0xff 0x09 0x01 0xa1 0x01 0x85 0x10
0x75 0x08 0x95 0x06 0x15 0x00 0x26 0xff
0x00 0x09 0x01 0x81 0x00 0x09 0x01 0x91
0x00 0xc0
};
}

So what is the problem now? If you have any clue, thanks.

Kind regards,



It works if I remove the /var/db/bthidd.hids. Why this behavior?

Cheers,

--
David Demelier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: The book of pf...

2011-01-19 Thread Kevin Wilcox
On 19 January 2011 02:28, Christer Solskogen
 wrote:

> On Tue, Jan 18, 2011 at 7:35 PM, Kevin Wilcox  wrote:

>> 1) Definitely get the first version

> Oh, why?

Because Peter made mention on misc@ that the second edition was geared
towards OpenBSD 4.8 and the version of pf that's in FreeBSD is quite a
bit older.

http://marc.info/?l=openbsd-misc&m=128938065524891&w=2

kmw
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: vm ware

2011-01-19 Thread Jon Radel

On 1/19/11 3:41 AM, rafay awan wrote:

Hi,
  I want to inquire if its possible to install freeBSD on vm ware?
  is there any live cd iso available?

See 
http://www.vmware.com/resources/compatibility/search.php?deviceCategory=software


Yes, though I suspect you mean to ask a more specific question which I 
can't discern.


--

--Jon Radel
j...@radel.com




Re: vm ware

2011-01-19 Thread Svein Skogen (Listmail account)
On 19.01.2011 09:41, rafay awan wrote:
> Hi,
>  I want to inquire if its possible to install freeBSD on vm ware?
>  is there any live cd iso available?

I suspect you are talking about VMWare ESXi (the hypervisor). If so, I'm
running a dozen or so FreeBSD VMs here. Absolutely un-problematic.

If you're talking about vmware workstation (or fusion), I know several
people who are running freebsd on those, with no real problems.

As for livecd, follow the links on freebsd.org for downloads.

//Svein

-- 
+---+---
  /"\   |Svein Skogen   | sv...@d80.iso100.no
  \ /   |Solberg Østli 9| PGP Key:  0xE5E76831
   X|2020 Skedsmokorset | sv...@jernhuset.no
  / \   |Norway | PGP Key:  0xCE96CE13
|   | sv...@stillbilde.net
 ascii  |   | PGP Key:  0x58CD33B6
 ribbon |System Admin   | svein-listm...@stillbilde.net
Campaign|stillbilde.net | PGP Key:  0x22D494A4
+---+---
|msn messenger: | Mobile Phone: +47 907 03 575
|sv...@jernhuset.no | RIPE handle:SS16503-RIPE
+---+---
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

 Picture Gallery:
  https://gallery.stillbilde.net/v/svein/




signature.asc
Description: OpenPGP digital signature


vm ware

2011-01-19 Thread rafay awan
Hi,
 I want to inquire if its possible to install freeBSD on vm ware?
 is there any live cd iso available?

-- 
regards,
Abdul Rafay





+=+
This message may contain confidential and/or privileged information. If you
are not the addressee or authorized to receive this for the addressee, you
must not use, copy, disclose or take any action based on this message or any
information herein. If you have received this message in error, please
advise the sender immediately by reply e-mail and delete this message. Thank
you for your cooperation.
+=
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: use of menus crashes Firefox?

2011-01-19 Thread Michael

On 18/01/2011 22:56, Keith Seyffarth wrote:


In firefox 3.6, anything that generates a menu will also crash the
browser.



It's not going to help you but I just want to confirm that I'm 
experiencing the same problem on 8.1-R amd64. It's not happening all the 
time i.e. everything works fine and then it bites me say only once in a 
week.


Michael
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: How to adjust man page line length

2011-01-19 Thread Giorgos Keramidas
On Tue, 18 Jan 2011 12:29:18 -0600, David Kelly  wrote:
> On Tue, Jan 18, 2011 at 06:11:13PM +0100, Giorgos Keramidas wrote:
>> On Mon, 17 Jan 2011 21:40:38 -0600, "David J. Weller-Fahy"
>>  wrote:
>>> To expand on the question in the subject: How does one tell `man`
>>> not to automatically format man pages to 80 columns?  I'm looking
>>> for a fairly easy way to do this, or confirmation it would involve
>>> internal gymnastics I may not be willing to perform.
>>
>> Set the 'columns' attribute of your tty:
>>
>> stty columns 60
>> man xxx
>>
>> This should do it.
>
> *Should*? You posted without trying it? (I tried, did not work).

'Should' as in "I tried it here and it worked".  I'm running a recent
CURRENT snapshot, but I don't think this affects the results.  What does
'stty -a' show in your terminal?  What is your shell's environment
(e.g. the value of COLUMNS)?  What is your PAGER? etc.

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