Re: Dumb IPFW Question

2007-09-27 Thread Ian Smith
On Wed, 26 Sep 2007 20:46:29 +0100 Chris Yocum [EMAIL PROTECTED] wrote:

   Just to explain a bit, I have installed a FreeBSD 6.2 system on a
  machine to act as a natd router.  I turned on the firewall and set the
  firewall rule script to the one from the handbook
  (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipfw.html)
  (Example Ruleset #2 at the bottom).

Despite lots of useful tips, especially regarding stateful rules, there
are a number of problems with some of the information on that page, and
I wouldn't rely on it as a substitute for a thorough study of ipfw(8). 
At the risk of being called on to submit a PR and diff, be particularly
wary of the sections in which the word 'mandatory' appears, and perhaps
compare those rulesets with those in /etc/rc.firewall.  But anyway ..

   After some investigation when I could not get www, I discovered
  that somehow port 53 is blocked even when I explicitly open it.  This
  happens when I uncomment the rule # Reject  Log all unauthorized out
  going connections to the public Internet
  $cmd 450 deny log all from any to any out via $pif.  So essentially,
  when I use that line, I loose my DNS and my www will not work anymore.

I see Chuck already caught your use of 'setup' with udp, which was the
immediate problem.  In fact, the ruleset #2 you used as basis has a rule
for TCP port 53 (needed if you need to transfer zone/s with an outside
DNS server) but had entirely omitted UDP 53 (though the earlier examples
included it), which it seems you must have already noticed.

   Otherwise, it all works great and I could not be happier.  Thank
  you in advance for any help that you may be able to provide.  I am
  sure that it is some small blunder on my part.

One thing lacking in that ruleset is stopping of _outbound_ spoofing of
RFC 1918 etc addresses; refer to the 'simple' section of rc.firewall,
particularly the placement of anti-spoofing rules wrt NATD diversion. 

  # Dup these lines if your ISP has more than one DNS server

Or use an address list in one rule, like addr1,addr2,addr3

  # Get the IP addresses from /etc/resolv.conf file
  $cmd 023 $skip udp from any to isp dns ip 53 out via $pif setup keep-state
  $cmd 024 $skip udp from any to isp dns ip 53 out via $pif setup keep-state
  $cmd 025 $skip udp from any to isp dns ip 53 out via $pif setup keep-state

As you've found, dropping 'setup' will make these work.

  # Allow out ping
  $cmd 080 $skip icmp from any to any out via $pif keep-state

I'm not sure if this is sufficient to allow icmptypes needed by TCP for
MTU discovery? but I allow these types specifically and not statefully. 
  
  # Deny all Netbios service. 137=name, 138=datagram, 139=session
  # Netbios is MS/Windows sharing services.
  # Block MS/Windows hosts2 name server requests 81
  $cmd 320 deny tcp from any to any 137 in via $pif
  $cmd 321 deny tcp from any to any 138 in via $pif
  $cmd 322 deny tcp from any to any 139 in via $pif
  $cmd 323 deny tcp from any to any 81  in via $pif

I've noticed other people just copying these rules from this example,
but 137 and 138 are on UDP, not TCP, while 139 is a TCP service.  Still,
unless you wanted to count these individually, the 'deny everything not
specifically allowed' rule will catch these anyhow.  And if you've got
windows boxes NAT'd on the inside you should block these going OUT too.

eg for TCP:
#% first take out the VAST bulk of TCP bogons / background noise:
crap=135,139,445,1433,2967,2968,4899,5900
crap=${crap},8000,8080,3128
${fwadd} deny log $afew tcp from any to any ${crap} in via ${ext_if} 
setup
# RejectLog all other setup of incoming connections from the outside
${fwadd} deny log $lots tcp from any to any in via ${ext_if} setup
and for UDP:
#% first cut out most of the heavy duty noise (incl broken insiders)
junk=137,138,1433,1434
junk=${junk},3544 # XP home calls home? MS ipV6 'Toredo'
${fwadd} deny udp from any to any ${junk} via ${ext_if}

  #allow in information from the ISP's DNS
  $cmd 361 allow udp from ip dns ip 53 to any in via $pif keep-state
  $cmd 362 allow udp from ip dns ip 53 to any in via $pif keep-state

These are not useful, since you're using outbound UDP keep-state on 53.
If you're running a public DNS server, you'd need to allow inbound DNS
in from anyone, not (just) your ISP.

HTH, Ian

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


Research About FreeSBD

2007-09-27 Thread Sanchez, Danilo
Good Night !

I am working on an Open Source Project and specifically I am researching
about Freebsd as a Company. I would like to know more about your current
market position , financial performance , etc. 

Can I find this information in your web page or may be contact somebody
in your Organization ? 


Kind Regards, 

Danilo B. Sanchez M.
MBA Candidate '08 
F.W. Olin Graduate School of Business 
Babson College 
[EMAIL PROTECTED] 
Phone: 781-879-2445

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


Re: Research About FreeSBD

2007-09-27 Thread Daniel Gerzo
Hello Danilo,

Thursday, September 27, 2007, 8:12:59 AM, you wrote:

 Good Night !

 I am working on an Open Source Project and specifically I am researching
 about Freebsd as a Company. I would like to know more about your current
 market position , financial performance , etc.

 Can I find this information in your web page or may be contact somebody
 in your Organization ? 

Although FreeBSD is not a company, you will find some financial
information and some other things about the project at
http://www.freebsdfoundation.org/.

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


too late to change to security branch?

2007-09-27 Thread Bill Stwalley
I have servers running 6.1 and 6.2.  I use freebsd-update in cron jobs to
install binary security update to the base system, and use cvsup/portupgrade
in cron jobs to install port updates.  By default, cvsup uses CURRENT
branch.

I am tired of some updates breaking something unnecessarily, and am thinking
of changing to SECURITY branch in cvsup.  Is that possible?  Some of my
ports are already locally compiled with customized options.

If that's impossible, can I wait until the release of 6.3, upgrading to it,
and then switch to SECURITY branch in cvsup?

If those are entirely impossible, can I switch to STABLE branch?

I'm confused by this system, please let me know if anything I do doesn't
make sense.

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


(no subject)

2007-09-27 Thread Bill Stwalley

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


CapsLock light with X.org 7.3

2007-09-27 Thread Andrea Venturoli

Hello.

I've seen other mentions of this problems, but no answer.
Since I upgraded X.org from 7.2 to 7.3 all my keyboard lights get stuck 
in the state they were when X fired up.

Any solution?

In case it matters I'm using Italian layout and KDE.

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


Re: PF NAT, how to forward GRE?

2007-09-27 Thread Mel
On Thursday 27 September 2007 02:47:14 Paul Fraser wrote:

 I'd like to forward all incoming GRE traffic on the WAN link to a system
 on the wired network. Could anyone advise how?

I take it you mean gre(4), which defines two IP protocols. So your rules will 
need to include proto gre or proto mobile to identify the traffic. Something 
like:
nat on $wan_if proto gre from $int_if:network to any - ($wan_if)

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


Re: CapsLock light with X.org 7.3

2007-09-27 Thread Beech Rintoul
On Thursday 27 September 2007, Andrea Venturoli said:
 Hello.

 I've seen other mentions of this problems, but no answer.
 Since I upgraded X.org from 7.2 to 7.3 all my keyboard lights get
 stuck in the state they were when X fired up.
 Any solution?

 In case it matters I'm using Italian layout and KDE.

   bye  Thanks
   av.

This is a known issue with xorg, stay tuned for a fix.

Beech


-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



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


Re: too late to change to security branch?

2007-09-27 Thread Beech Rintoul
On Wednesday 26 September 2007, Bill Stwalley said:
 I have servers running 6.1 and 6.2.  I use freebsd-update in cron
 jobs to install binary security update to the base system, and use
 cvsup/portupgrade in cron jobs to install port updates.  By
 default, cvsup uses CURRENT branch.

 I am tired of some updates breaking something unnecessarily, and am
 thinking of changing to SECURITY branch in cvsup.  Is that
 possible?  Some of my ports are already locally compiled with
 customized options.

 If that's impossible, can I wait until the release of 6.3,
 upgrading to it, and then switch to SECURITY branch in cvsup?

 If those are entirely impossible, can I switch to STABLE branch?

 I'm confused by this system, please let me know if anything I do
 doesn't make sense.

 Best, Bill

There are no other branches of ports except current. The release, 
security, stable and current branches only apply to the system 
itself. The exception being the ports that come with a release are 
just a snapshot of the ports tree at the time the release was rolled. 
While we try our best to avoid breakage, it sometimes happens. My 
suggestion is that if you plan on upgrading something mission 
critical, you might want to try the upgrade on another similar box 
first and test. As for compiling with options not already available 
in the port itself, you are basically on your own. If there is a 
particular option that comes with the sources, but is not a port 
option contact the maintainer of that port. As for doing port updates 
with a cron script it's not recommended. You should always read 
UPDATING before installing anything. Believe me it will save you foot 
shooting.

Beech

-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



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


gzip compression problems

2007-09-27 Thread Erik Cederstrand

Hi!

I'm trying to create a custom disk image for installing on a server. The 
plan is to PXE boot the server and dd the image to the hard-disk of the 
server.


The gzipped files I need for the server are 45MB. However, when I create 
a 4GB image, stick the same files in there and gzip the image, the 
resulting file is 251MB.


Most of the image is just empty space, so I was expecting the gzipped 
image to be roughly 45MB. What's going on?


I used the following commands to create the image:

# dd if=/dev/zero of=/path/to/diskimg bs=1k count=4m
# mdconfig -a -t vnode -f /path/to/diskimg -u 4
# fdisk -BI -b /boot/mbr md4
# bsdlabel -B -b /boot/boot -R md4s1 /path/to/disklayout
# newfs /dev/md4s1a
# mount /dev/md4s1a /mnt/
# make installworld DESTDIR=/mnt
# make distribution DESTDIR=/mnt
# make installkernel DESTDIR=/mnt
# umount /mnt
# fsck -t ufs /dev/md4s1a
# mdconfig -d -u 4

The contents of /path/to/disklayout:
   # /dev/md4s1:
   8 partitions:
   #size   offsetfstype   [fsize bsize bps/cpg]
   a: 3G   164.2BSD 2048 163848
   b:   500M*  swap
   c:  **unused0 0

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


master.passwd - convert ldap

2007-09-27 Thread Celso Viana
Hi All,

Somebody already modified scripts migrationtools
(http://www.padl.com/OSS/MigrationTools.html) to convert
master.passwd for ldap? Using scripts original (migrate_passwd.pl)
the conversion is wrong, as below

dn: uid=test,ou=People,dc=padl,dc=com
uid: test
cn: User by test
objectClass: account
objectClass: posixAccount
objectClass: top
objectClass: shadowAccount
userPassword: {crypt}$1$QLrRpB8e$2doc9Ks9GkOdyc2xAvEYi1
shadowLastChange: 1002
shadowMin: 1002
shadowExpire: User by test
shadowFlag: /home/test
loginShell: /bin/csh
uidNumber: 1002
gidNumber: 1002
homeDirectory: /home/test
gecos: User by test

The objects had below received values wrong

shadowLastChange: 1002 - uid
shadowMin: 1002 - gid
shadowExpire: User by test - gecos
shadowFlag: /home/test - directory home of the user

Thanks
-- 
Celso Vianna
BSD User: 51318
http://www.bsdcounter.org

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


Re: Is anybody here running Pidgin (under FreeBSD)?

2007-09-27 Thread Christian Baer
Hey Fans! :-)

Vince wrote:
 Hope this is enough. I stripped some email addresses out but otherwise
 untouched. I only use it for ICQ/MSN and have never bothered trying
 anything more than messaging (no voice etc.)

Dmitry Gorbik wrote:
 Ok, there is my log in attach. No problems coming through gateway
 192.168.1.1... I also have:
 (19:53:30) nat-pmp: found a default gateway
 (19:53:30) nat-pmp: Attempting to retrieve the public ip address for the NAT 
 device at: 192.168.x.x
 (19:53:30) nat-pmp: Timeout: 0s 25us
 (19:53:30) nat-pmp: Response was not received from our gateway! Instead from: 
 216.230.191.191

 All pidgin feautures (file recieving works well).


And last, but not least, Tuc at T-B-O-H.NET wrote:
 Pidgin 2.2.0, installed via ports
 Comments:
 Getting the response from 8.232.191.191 was weird, since that IP
 is outside of the RR.COM domain!
 Debug any help?

First of all, thanks to all three of you for sending me your
debug-messages. I've had a few days of hardcore-work lately (the work that
I get paid for) and didn't get much done on Pidgin. :-/

I did get at chance to take a close look yesterday though and I'm afraid,
I'll probably let this thing go. First of all, I was hoping that you guys
didn't get that nat-pmp messages. A friend of mine who uses Pidgin under
Windows doesn't get them either. If this were the case, I'd habe a pretty
good guess ready as to what lib I'd have to examine - it might even just
have been a quirk in the make and/or configure options.

Since this isn't the case, I'd have to look through a ton of libs and fine
out where this problem is actually coming from. And that could be very
extensive. For all I know at this point, it might even be a problem with
FreeBSD on sparc64 - and *that* is something I really don't feel like
investigating.

I've already started a thread a thread on the Pidgin support mailinglist,
but the response there was everything but promising. I even supplied debug
info using the gdb (as we had on this list too). There was no response
worth mentioning. I got a few questions but not even a rough direction in
which I should look a little harder. The mailing list had extremely little
traffic for the time that I have been on it, so I guess the comunity isn't
all that active. The very thin documentation on the Pidgin home page seems
to suggest this too. The *programming* community is very active - I can
read the sf-statistics too. :-) But that won't help me much if I can't get
in touch with them using normal channels and bugging the developers with
problems is usually not a good idea.

Well, since I keep in touch with a lot of people at my university via IM,
I took a look at the daughters of other mothers :-) out there. Somehow I
got stuck with Kopete which at first looked a bit crappy to me but I was
completely wrong about that. It looks good and it feels good, which means
it's both fun *and* productive to work with. Ok, you have to play around a
bit with the themes for the chat windows (displaying a big avatar for
every line written is pretty silly in my eyes), but you can quite easily
get a window that is both good to look at while still keeping the emphasis
on the communication, not on eye candy. Besides that, I like Kopete's
buddy list because each contact is a meta-contact by default and behind
his or her avatar all the services with wich he or she is online are
listed, so you can choose what protocol to contact this person with. This
is important because file transfer isn't supported with all protocols.
Pidgin requires more effort for this, because you have to open the list
for a meta-contact first.

I will be investigating why Pidgin didn't run on my machine, but I won't
be doing that at full throttle...

BTW. If anyone needs a new buddy in his or her list, let me know. :-) But
contact me via private eMail first, please. I'm not to crazy about
publishing my UIN or whatever on a mailing list that can bei viewed on the
web by anyone.

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


Re: CapsLock light with X.org 7.3

2007-09-27 Thread Harry Matthiesen Jensen
On Thu, Sep 27, 2007 at 01:44:10AM -0800, Beech Rintoul wrote:
 On Thursday 27 September 2007, Andrea Venturoli said:
  Since I upgraded X.org from 7.2 to 7.3 all my keyboard lights get
  stuck in the state they were when X fired up.
  Any solution?
 
 This is a known issue with xorg, stay tuned for a fix.

..and in the meantime use:

xkbvleds -watch 3 

..from a xterm commandline, then you have the NumLock and CapsLock
indications on the desktop ;-)

-- 
Mvh/Brgds Harry
FreeBSD mugin.localhost 7.0-CURRENT #8: i386
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Is your Thunderbird OK?

2007-09-27 Thread Christian Baer
On Wed, 26 Sep 2007 17:00:10 +0900 Byung-Hee HWANG wrote:

 If you can live without the pretty pictures, you can configure Mutt to use
 an external browser like lynx or links to display HTML.
 
 Otherwise, you could give Claws a closer look.
 ^
 After I read your replying mail, I investigated the Claws. I am
 considering for moving from this Evolution to the Claws.

Evolution is quite a bit more than Claws, as it is supposed to be a clone
of Outlook (IIRC). But Cleaws is pretty sexy, because is small and quite
fast.

 But still Thunderbird will remain as the best MUA to me.

Not to me. Thunderbird is also a newsclient and in that capacity there are
several things missing. If you've ever used something like slrn, you'll
miss the scorefile like hell. Thunderbird also has one of the main
weaknesses of any GUI program: It's slow. If you get up to 60 eMails each
day which you not only have to read but also answer, you'll be happy to
have a mail- and news-client that lets you keep your handy on the keyboard
instead of making one had jump between the keyboard and the mouse all the
time.

Since I moved to Unix (it was Linux back then), I have always used
textbased mail- and news-clients. I started off with elm and tin. Unlike
many others, I didn't really have a problem moving on to Mutt. Today I
prefer slrn over tin, but at university I still use tin. Both are fast and
easy to use. I just like the split screen while reading, because then I
can see the thread as well as the current article at the same time.

 Thank you so much!

No problem. Always here to help. :-)

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


Binding application to one ethernet interface

2007-09-27 Thread Eduardo Morras

Hello:

   I have a server with apache that serves pages to an intranet. Now 
we want to add another server application (cvs and pgsql) to another 
intranet. Of course we can buy a new server to do that, but i want to 
know if i can add a new ethernet card to the current server and force 
apache to serve to one intranet and cvs/pgsql to the other intranet.
   I think that by default, freebsd will balance the charge between 
both cards, is it true??



Thanks In Advance

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


Re: Binding application to one ethernet interface

2007-09-27 Thread Olivier Nicole

Hi,

 I have a server with apache that serves pages to an intranet. Now 
 we want to add another server application (cvs and pgsql) to another 
 intranet. Of course we can buy a new server to do that, but i want to 
 know if i can add a new ethernet card to the current server and force 
 apache to serve to one intranet and cvs/pgsql to the other intranet.

Yes, you can have several ethernet cards, each with an IP in a
different subnet. You can run every application on what subnet(s) you
decide, but the exact way to bind one application to one or more IP is
depending on the application itself.

 I think that by default, freebsd will balance the charge between 
 both cards, is it true??

No that is not true. If you have both card in the same subnet, I am
not sure what would happen, but I beleive no load balancing.

Bests,

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


RE: xfce-4.4.1_1 strange behavior with Launch Desktop Icons.

2007-09-27 Thread Lisandro Grullon
Hi Karsten,
I was going through my .xsession-errors and looked at the following messages, 
as it appear, it might be something to do with thunar and soemone else 
previosly mention. Besides the launching of those two icons, my xfce4 is 
working ok. I haven't notice any other bugs yet. If you find something let us 
know, I'll keep searching for a solution. Lisandro

/usr/local/etc/gdm/PreSession/Default: Registering your session with wtmp and 
utmp
/usr/local/etc/gdm/PreSession/Default: running: /usr/local/bin/sessreg -a -w 
/var/log/wtmp -u /var/run/utmp -x /var/gdm/:0.Xservers -h  -l :0 
lgrullon
/usr/local/etc/gdm/Xsession: Beginning session setup...
man hier will explain the way FreeBSD filesystems are normally laid out.
-- David Scheidt [EMAIL PROTECTED]
/usr/local/etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- 
/usr/local/etc/gdm/Sessions/XFce4
/usr/local/bin/startxfce4: X server already running on display :0
xscreensaver: not found
** Message: This build doesn't include support for XF86Misc extension
** Message: Querying Xkb extension
** Message: Xkb extension found
** Message: Querying Xkb extension
** Message: Xkb extension found

** (xfce-mcs-manager:12889): CRITICAL **: find_master: assertion `mixer_handle 
!= -1' failed

** (xfce-mcs-manager:12889): WARNING **: oss: No master volume

(xfdesktop:12892): thunar-vfs-WARNING **: Failed to connect to the HAL daemon: 
Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or 
directory
Error: No running window found




 Date: Wed, 26 Sep 2007 10:39:21 +0200
 From: [EMAIL PROTECTED]
 To: freebsd-questions@freebsd.org
 Subject: Re: xfce-4.4.1_1 strange behavior with Launch Desktop Icons.
 
 On Wed, Sep 26, 2007 at 11:07:20AM +1000, Norberto Meijome wrote:
  On Tue, 25 Sep 2007 13:26:04 -0400
  Lisandro Grullon [EMAIL PROTECTED] wrote:
  
   Dear FBSD users,
   I am running FBSD 6.2R with most of my ports upgrade to the latest. I 
   just finish doing a upgrade of Xorg 7.2 to 7.3 because I was having an 
   issue with my keyboard and mouse using 7.2. In any case the reason I am 
   posting this is because after the upgrade, I launch xfce4 using startx 
   and all went ok, yet when I am in my desktop and I try assessing the 
   home or filesystem icons, they just appear to blink and never get 
   launched, is any of you having this issue, I am not sure if this is a 
   software bug that xfce4 is having. If any experience this, please 
   elaborate. Lisandro
  
  
  Hi Lisandro,
  have you got Thunar installed? those icons launch your file manager, which 
  by default is the Thunar file manager. I am not sure if there is a way to 
  replace it for other.
  
  You may want to check ~/.xsession-errors to see if there are any errors 
  being issued by xfdesktop or Thunar itself.
  
 
 Hi.
 
 I also got into trouble after upgrade 7.2 - 7.3: Starting xfce took a
 very long time. I find the following in my .xsession-errors:
 
 ** (xfdesktop:43005): WARNING **: org.xfce.Trash.QueryTrash failed: The
 name org.xfce.FileManager was not provided by any .service files
 ...
 ** (xfce4-menu-plugin:43029): CRITICAL **: Unable to get keyboard/mouse
 grab.
 
 ** (xfce4-menu-plugin:43029): CRITICAL **: Unable to get keyboard/mouse
 grab.
 
 ** (xfce4-menu-plugin:43029): CRITICAL **: Unable to get keyboard/mouse
 grab.
 
 ** (xfce4-menu-plugin:43029): CRITICAL **: Unable to get keyboard/mouse
 grab.
 
 
 I thought, this is because I can't run hald (crashes the machine
 instantly) and Thunar complains about not finding hald (saw this, when I
 startet xfce via startx on console I think; I can't find it now in the
 logs - so not the exact message, sorry).
 
 Maybe, this information can help you (and me ;) with xfce
 
 Ciao,
 
 Karsten
 
 -- 
 
 Karsten Rothemund [EMAIL PROTECTED] /\
 PGP-Key: 0x7019CAA5   \ /
 Fingerprint: E752 C759 B9B2 2057 E42F  \  ASCII Ribbon Campaign
  50EE 47AC A7CE 7019 CAA5 / \ Against HTML Mail and News

_
Invite your mail contacts to join your friends list with Windows Live Spaces. 
It's easy!
http://spaces.live.com/spacesapi.aspx?wx_action=createwx_url=/friends.aspxmkt=en-us___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: SSH login banner?

2007-09-27 Thread Lisandro Grullon
Hi Erik, 
Thank you for posting this, it might come handy in the near future when I 
implement SSHv2 in my network. Lisandro



 Date: Wed, 26 Sep 2007 15:25:08 +0200
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 CC: freebsd-questions@freebsd.org
 Subject: Re: SSH login banner?
 
 On Wed, Sep 26, 2007 at 09:15:38AM -0400, [EMAIL PROTECTED] wrote:
  I need to apply an SSH user agreement policy so users agrees to the AUP
  _before_ they login.  Everything I read puts the police on the screen
  after login.  Any ideas?  --Joe
 
 The sshd_config(5) manpage documents the following option:
 
  Banner  In some jurisdictions, sending a warning message before authenti-
  cation may be relevant for getting legal protection.  The con-
  tents of the specified file are sent to the remote user before
  authentication is allowed.  This option is only available for
  protocol version 2.  By default, no banner is displayed.
 
 
 Sounds like exactly what you want.
 
 
 
 -- 
 Insert your favourite quote here.
 Erik Trulsson
 [EMAIL PROTECTED]
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

_
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vistamkt=en-USform=QBRE___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Binding application to one ethernet interface

2007-09-27 Thread Rob

Eduardo Morras wrote:
   I have a server with apache that serves pages to an intranet. Now we 
want to add another server application (cvs and pgsql) to another 
intranet. Of course we can buy a new server to do that, but i want to 
know if i can add a new ethernet card to the current server and force 
apache to serve to one intranet and cvs/pgsql to the other intranet.
   I think that by default, freebsd will balance the charge between both 
cards, is it true??


You don't need multiple NICs if it's all going on the same subnet or lan 
segment.  And, no, there is no balancing anyway.


You can assign extra alias IP addresses to the one NIC (rc.conf option). 
Then tell apache to only use one, with a Listen directive in its 
.conf.  You can also setup Apache to do virtual hosts, so one Apache 
serves multiple web sites.  Google for that one - there are lots of 
tutorials out there.


The best thing is to probably do is config multiple addresses on the 
NIC, then run each server process in its own jail so they're isolated 
from each other.  There's a good WIkipedia article on FreeBSD jails I 
was reading just yesterday;  it links to a couple good tutorials.


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


RE: Research About FreeSBD , consult

2007-09-27 Thread Sanchez, Danilo
Daniel 

Thanks very much for your support I really appreciate it. 

I have a 2nd level of questions more related to the current domain of
FreeBSD in the market (% of participation , mindshare , competitive
advantages, others) 

Is there a contact within your Organization I can call/contact to talk
about it please. I would like to interview him/her 

Kind Regards, 

Danilo B. Sanchez M.
MBA Candidate '08 
F.W. Olin Graduate School of Business 
Babson College 
[EMAIL PROTECTED] 
Phone: 781-879-2445


-Original Message-
From: Daniel Gerzo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 27, 2007 2:37 AM
To: Sanchez, Danilo
Cc: freebsd-questions@FreeBSD.org
Subject: Re: Research About FreeSBD

Hello Danilo,

Thursday, September 27, 2007, 8:12:59 AM, you wrote:

 Good Night !

 I am working on an Open Source Project and specifically I am
researching
 about Freebsd as a Company. I would like to know more about your
current
 market position , financial performance , etc.

 Can I find this information in your web page or may be contact
somebody
 in your Organization ? 

Although FreeBSD is not a company, you will find some financial
information and some other things about the project at
http://www.freebsdfoundation.org/.

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


Re: Backup Solution

2007-09-27 Thread David Robillard
 I am relatively new to the FreeBSD game and have a bit of a problem which
I
 am not sure how to tackle. I recently build a server running VMWare ESX
 Server 3 which will eventually run 6-7 small production VM's. These
Virtual
 Machines obviously have the need for backups and it poses quite a problem
 for me unless I connect 6-7 external tape drives and give each VM it's own
 tape device. I have looked into a few solutions using VM products
 (consolidated backup) but it can only be done if you utilise a SAN.

 The server is running RAID 5 with around 700GB of space. Each VM may take
up
 to 50GB and backups might be around 15-20GB per VM. The machine itself has
 an internal LTO3 tape drive, has anyone come across this kind of situation
 before, and if so what would be a good way to backup each VM? It is easy
 enough to backup the image files from the host machine but I need file
level
 backups within each VM also.

 I will be very grateful for suggestions or ways people have tackled this
 kind of problem in a production environment.

We use rdiff-backup to perform incremental backups of VMWare machine files.
It works very well. Check it out at http://www.nongnu.org/rdiff-backup/

Let me know if you need help on the setup.

On the other hand, if you prefer to backup the VMWare machines as if they
were physical ones, then I suggest rsnapshot. Of course, this will only work
with UNIX VMs.
More info here http://www.rsnapshot.org/

Have fun,

David
-- 
David Robillard
UNIX systems administrator  Oracle DBA
CISSP, RHCE  Sun Certified Security Administrator
Montreal: +1 514 966 0122
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dual Opterons don't see all memory

2007-09-27 Thread Paul Schmehl
--On Thursday, September 27, 2007 06:35:53 +0100 Matthew Seaman 
[EMAIL PROTECTED] wrote:



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Erich Dollansky wrote:


Paul Schmehl wrote:

--On September 26, 2007 9:06:57 PM -0700 Eric Osterweil
[EMAIL PROTECTED] wrote:


On Sep 26, 2007, at 8:57 PM, Erich Dollansky wrote:


Eric Osterweil wrote:


make use of it's 6GB of memory, and FreeBSD can only see about 4GB
of it.
Can anyone help me figure out how to make use of the missing GB?
FreeBSD 6.2-RELEASE #0: Fri Jan 12 11:05:30 UTC 2007


this looks like a 32 bit binary to me.

You either need a 64 bit binary or you need to enable PAE.

Just build a custom kernel for 64 bits.



Ahh... To do this, do I just specify the CPUTYPE in the /etc/make.conf
as:
CPUTYPE=amd64
?


No.  Add options SMP to GENERIC or use the SMP conf file that's
already there (and includes GENERIC).  Then recompile the kernel per
the handbook.


he still has to set the CPU type also in this config file to amd64.


If the OP has installed FreeBSD i386 then changing the CPU type in
/etc/make.conf won't magically get him FreeBSD amd64 --- it will just
get him FreeBSD i386 optimized for AMD processors running in 32bit
mode.

As far as I know, there is no simple way to start with a 32-bit
system and the FreeBSD sources and recompile and reinstall everything
into a 64-bit system.  (Although the opposite direction is apparently
possible on 7-CURRENT, but it's a guru-only level of difficulty.)

The best and most effective answer here is to start by downloading
an amd64 installation CD and redo the whole thing from scratch.

Thanks, Matthew.  Guess I should stop assuming that the OP used the right 
distro to begin with


--
Paul Schmehl ([EMAIL PROTECTED])
Senior Information Security Analyst
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/


Missing libgfortran: what package is it in?

2007-09-27 Thread vittorio
I'm trying to update some packages of R. In compiling them freebsd 6.2 fails 
systematically because a libgfortran library is missing (and, as a matter of 
fact, it is!).

What package should I install to have these lib available?

Ciao
Vittorio

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


Re: Binding application to one ethernet interface

2007-09-27 Thread Paul Schmehl
--On Thursday, September 27, 2007 13:30:24 +0200 Eduardo Morras 
[EMAIL PROTECTED] wrote:



Hello:

I have a server with apache that serves pages to an intranet. Now we
want to add another server application (cvs and pgsql) to another
intranet. Of course we can buy a new server to do that, but i want to
know if i can add a new ethernet card to the current server and force
apache to serve to one intranet and cvs/pgsql to the other intranet.
I think that by default, freebsd will balance the charge between both
cards, is it true??

Most applications will listen on *all* interfaces by default.  I'm not 
aware of an application that *cannot* be configured to only listen on one 
IP address, but there may be some.


In the case of apache, you simply edit the Listen attribute and then 
restart the service.


Listen x.x.x.x:80

I don't use postgres, but I'd bet it has the option as well.  Mysql 
certainly does.  You just need to read the man pages for each app (or 
online docs) to find out what config option you need to use and what the 
syntax needs to be.  Or Google it.


BTW, you don't really need a second nic.  You can alias the first one.

In /etc/rc.conf use ifconfig_interface_alias0=IP Netmask

For example, from a live setup:

ifconfig_bce0=inet 66.221.101.248 netmask 255.255.224.0
ifconfig_bce0_alias0=inet 66.221.101.250  netmask 255.255.255.255
ifconfig_bce0_alias1=inet 66.221.101.253  netmask 255.255.255.255

Since you would be using different subnets, you set the netmask 
appropriately for that subnet.  When you alias on the *same* subnet, all 
the alias netmasks have to be non-conflicting, according to the man page, 
so you use the netmask I use above.


--
Paul Schmehl ([EMAIL PROTECTED])
Senior Information Security Analyst
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/


Re: Binding application to one ethernet interface

2007-09-27 Thread Wojciech Puchar
to add another server application (cvs and pgsql) to another intranet. Of 
course we can buy a new server to do that, but i want to know if i can add a 
new ethernet card to the current server and force apache to serve to one 
intranet and cvs/pgsql to the other intranet.


is it another subnet to add other card?

but of course you can do that.

if default scripts for pgsql etc. make running 2 instances difficult 
fix them or use jails.


  I think that by default, freebsd will balance the charge between both 
cards, is it true??

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


Re: Binding application to one ethernet interface

2007-09-27 Thread Wojciech Puchar

depending on the application itself.


I think that by default, freebsd will balance the charge between
both cards, is it true??


No that is not true. If you have both card in the same subnet, I am
not sure what would happen, but I beleive no load balancing.


it will use the first for transmission
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Research About FreeSBD , consult

2007-09-27 Thread Wojciech Puchar

Daniel

Thanks very much for your support I really appreciate it.

I have a 2nd level of questions more related to the current domain of
FreeBSD in the market (% of participation , mindshare , competitive
advantages, others)


the answers are lots, lots a lot of and a lot of.
as FreeBSD (name says it clearly) is FREE, we can't talk about percents of 
market unless you precisely define percent of what.


percent of computers - nonsense measure, as it prefers ones that needs 100 
computers to do work of 1 properly used computer.
percent of work done - define what work exactly? you should define the 
counting method like doing this - 5 points, doing that 3 points etc..

percent of others?

please define clearly.

the only clear answer is what i can say about me - i use only FreeBSD



Is there a contact within your Organization I can call/contact to talk
about it please. I would like to interview him/her


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


strange message when login 7.0 CURRENT

2007-09-27 Thread vuthecuong

Everytime when I login to 7.0 CURRENT, this message
repeated. Is it harmless or harmful? And how can I solve it?
Tnx in advanced

Sep 27 22:08:50 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_authenticate()
Sep 27 22:08:53 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_setcred()
Sep 27 22:09:00 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_setcred()
Sep 27 22:09:06 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_authenticate()
Sep 27 22:10:54 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_authenticate()
Sep 27 22:10:56 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no 
pam_sm_setcred()

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


Intel 965GME + ICH8M have problem

2007-09-27 Thread Roger Yu
Hi,

I install FreeBSD6.2 in Intel 965GME + ICH8M have problem
Using IDE HDD + IDE CDROM is ok, but IDE HDD + USB CDROM is fail.
Could FreeBSD6.2 full support ICH8M or not?

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


Re: strange message when login 7.0 CURRENT

2007-09-27 Thread Dominique Goncalves
Hi,

On 9/27/07, vuthecuong [EMAIL PROTECTED] wrote:
 Everytime when I login to 7.0 CURRENT, this message
 repeated. Is it harmless or harmful? And how can I solve it?
 Tnx in advanced

 Sep 27 22:08:50 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_authenticate()
 Sep 27 22:08:53 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_setcred()
 Sep 27 22:09:00 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_setcred()
 Sep 27 22:09:06 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_authenticate()
 Sep 27 22:10:54 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_authenticate()
 Sep 27 22:10:56 hanhnhu login: in openpam_dispatch(): pam_nologin.so: no
 pam_sm_setcred()

There is a note in src/UPDATING about pam_nologin, I don't know if it
applies to your problem :

20070610:
The pam_nologin(8) module ceases to provide an authentication
function and starts providing an account management function.
Consequent changes to /etc/pam.d should be brought in using
mergemaster(8).  Third-party files in /usr/local/etc/pam.d may
need manual editing as follows.  Locate this line (or similar):

authrequiredpam_nologin.so  no_warn

and change it according to this example:

account requiredpam_nologin.so  no_warn

That is, the first word needs to be changed from auth to
account.  The new line can be moved to the account section
within the file for clarity.  Not updating pam.conf(5) files
will result in nologin(5) ignored by the respective services.

HTH

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



-- 
There's this old saying: Give a man a fish, feed him for a day. Teach
a man to fish, feed him for life.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Missing libgfortran: what package is it in?

2007-09-27 Thread Thierry Thomas

Selon vittorio [EMAIL PROTECTED] le Jeu 27 sep 18:31:44 2007 :


I'm trying to update some packages of R. In compiling them freebsd 6.2 fails
systematically because a libgfortran library is missing (and, as a matter of
fact, it is!).

What package should I install to have these lib available?


It should be provided by lang/gcc42.

Actually, if gcc42 is only registered as a build_depends, this is a bug.

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


Acroread7 wierd error

2007-09-27 Thread Philip M. Gollucci
Hi All,

I've never had trouble with printer/acroread7 whether -STABLE, -CURRENT,
or fc4 vs fc6.

Recently though I fell victim to the nvidia xorg 7.3 snafu with dual
monitors which is one of the places -ignoreABI fails.  The server starts
and all but you can only use 1 of the monitors though both display
correctly because the mouse won't cross them.

So I did the following:
cd /var/db/pkg
sudo pkg_delete *

cd /usr/ports
cvs up -Ddate directly before xorg 7.3 import
(yeah cvsup I know)

I then rebuilt everything from source and I mean everything.

At current, I now have these:

ls -1d nvidia-* *linux* *acro* *firefox*
acroread7-7.0.9_2,1
acroreadwrapper-0.0.20060221_2
firefox-2.0.0.6,1
linux-atk-1.9.1
linux-expat-1.95.8
linux-flashplugin-9.0r48
linux-fontconfig-2.2.3_7
linux-glib2-2.6.6
linux-gtk2-2.6.10
linux-jpeg-6b.34
linux-openssl-0.9.7f
linux-pango-1.8.1
linux-png-1.2.8_2
linux-tiff-3.7.1
linux-xorg-libs-6.8.2_5
linux_base-fc6-6_4
nvidia-driver-100.14.11
nvidia-settings-1.0_12
nvidia-xconfig-1.0_1

grep fc6 /etc/make.conf
OVERRIDE_LINUX_BASE_PORT=fc6

grep 2.6 /etc/sysctl.conf
compat.linux.osrelease=2.6.16

uname -a
FreeBSD philip.hq.rws 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Thu Jul 26
16:44:37 EDT 2007
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

I've now done
sudo rm -rf /usr/ports
sudo cvsup -g -L2 /usr/share/ports/ports-supfile

When I run acroread I get this error it has to be related to this
bouncing back and forth on the ports tree but I can't figure out how to
fix it. Google turns up exactly 0.


*** glibc detected *** /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread:
free(): invalid next size (normal): 0x0977aba8 ***
=== Backtrace: =
/lib/libc.so.6[0x2a079c88]
/lib/libc.so.6(cfree+0x90)[0x2a07d230]
/usr/lib/libfreetype.so.6[0x2a19bcad]
/usr/lib/libfreetype.so.6(ft_mem_free+0x1a)[0x2a19c0ca]
/usr/lib/libfreetype.so.6[0x2a1e72b4]
/usr/lib/libfreetype.so.6[0x2a1e8368]
/usr/lib/libfreetype.so.6[0x2a1e9898]
/usr/lib/libfreetype.so.6(FT_Stream_EnterFrame+0x78)[0x2a19c4c8]
/usr/lib/libfreetype.so.6(FT_Stream_ReadFields+0x92)[0x2a1a1402]
/usr/lib/libfreetype.so.6[0x2a1c2532]
/usr/lib/libfreetype.so.6[0x2a1c3648]
/usr/lib/libfreetype.so.6[0x2a1a1bfe]
/usr/lib/libfreetype.so.6(FT_Open_Face+0x2c7)[0x2a1a3327]
/usr/lib/libfreetype.so.6(FT_New_Face+0x48)[0x2a1a3958]
/usr/lib/libfontconfig.so.1(FcFreeTypeQuery+0x67)[0x2a225a98]
/usr/lib/libfontconfig.so.1(FcFileScan+0x6b)[0x2a224d3b]
/usr/lib/libfontconfig.so.1(FcDirScan+0x1d1)[0x2a2251fc]
/usr/lib/libfontconfig.so.1(FcConfigBuildFonts+0x94)[0x2a21fd51]
/usr/lib/libfontconfig.so.1(FcInitLoadConfigAndFonts+0x26)[0x2a2270b3]
/usr/lib/libfontconfig.so.1(FcInit+0x2e)[0x2a2272b0]
/usr/lib/libfontconfig.so.1(FcConfigGetCurrent+0x29)[0x2a21fc7a]
/usr/lib/libfontconfig.so.1(FcConfigSubstituteWithPat+0x6f4)[0x2a221ab3]
/usr/lib/libfontconfig.so.1(FcConfigSubstitute+0x33)[0x2a221af8]
/usr/lib/libpangoxft-1.0.so.0[0x2a16f539]
/usr/lib/libpangoft2-1.0.so.0[0x2a25e6b4]
/usr/lib/libpangoft2-1.0.so.0[0x2a25e9c4]
/usr/lib/libpangoft2-1.0.so.0[0x2a25ed3f]
/usr/lib/libpango-1.0.so.0(pango_font_map_load_fontset+0x4a)[0x29f0f90f]
/usr/lib/libpango-1.0.so.0[0x29f0dec5]
/usr/lib/libpango-1.0.so.0(pango_itemize_with_base_dir+0xa7)[0x29f0e35b]
/usr/lib/libpango-1.0.so.0[0x29f15459]
/usr/lib/libpango-1.0.so.0[0x29f16007]
/usr/lib/libpango-1.0.so.0(pango_layout_get_size+0x34)[0x29f16f09]
/usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN10UnixDrawer11GetFontInfoER11ADMFontInfo+0x36)[0x2da39046]
/usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN17ADMDrawerSuiteImp11GetFontInfoEP17_Opaque_ADMDrawerP11ADMFontInfo+0x2a)[0x2d9abfea]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN17TADMCreateContext16HandleFontHeightEss+0x60)[0x87ee4e0]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN16CExpressionScope12DoInitializeEP17TInitScopeContextP14TCreateContext+0x129)[0x87f3589]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN16CExpressionScope18DoGlobalInitializeEP17TInitScopeContextP14TCreateContext+0x1e)[0x87f3f0e]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z10readDialogP22ADMCustomDialogMessagePc+0xd5)[0x87eefd5]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z18handlePluginCallerPcS_Pv+0x6d)[0x87c9f5d]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(ExpressViewsMain+0x201)[0x865ab61]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(spEdgeCallPlugin+0x18)[0x8660568]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(SPCallPlugin+0xcd)[0x865c11d]
/usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(SPSendMessage+0xc1)[0x865d861]
/usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN21ADMCustomResourceList18CallCustomResourceEP17ADMCustomResourceP8SPPluginPKclS5_PvS6_S5_+0x13b)[0x2d9f]
/usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN8ADMSpace16UITWindowAdapter18FindDialogResourceEP8SPPluginlPKcb+0x584)[0x2d98af24]

Stress testing/burning in HDDs

2007-09-27 Thread Don O'Neil
I have an array that has a drive that keeps timing out/failing... So I need
to replace it. However, I want to stress test/burn in a replacement disk
first.

What is the best way to do this?

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


Re: Acroread7 wierd error

2007-09-27 Thread Boris Samorodov
Hi!

The question has better chances at current@ or emulation@ MLs.
CCing to the latter, please remove questions while answering.

On Thu, 27 Sep 2007 12:45:15 -0400 Philip M. Gollucci wrote:

 Hi All,

 I've never had trouble with printer/acroread7 whether -STABLE, -CURRENT,
 or fc4 vs fc6.

 Recently though I fell victim to the nvidia xorg 7.3 snafu with dual
 monitors which is one of the places -ignoreABI fails.  The server starts
 and all but you can only use 1 of the monitors though both display
 correctly because the mouse won't cross them.

 So I did the following:
 cd /var/db/pkg
 sudo pkg_delete *

Did you do rm -r /compat/linux/*? You may find some useful tips at
/usr/ports/UPDATING 20070327: AFFECTS: users of emulators/linux_base-fc6.

Other than that can you provide an output of ktrace -i?

 cd /usr/ports
 cvs up -Ddate directly before xorg 7.3 import
 (yeah cvsup I know)

 I then rebuilt everything from source and I mean everything.

 At current, I now have these:

 ls -1d nvidia-* *linux* *acro* *firefox*
 acroread7-7.0.9_2,1
 acroreadwrapper-0.0.20060221_2
 firefox-2.0.0.6,1
 linux-atk-1.9.1
 linux-expat-1.95.8
 linux-flashplugin-9.0r48
 linux-fontconfig-2.2.3_7
 linux-glib2-2.6.6
 linux-gtk2-2.6.10
 linux-jpeg-6b.34
 linux-openssl-0.9.7f
 linux-pango-1.8.1
 linux-png-1.2.8_2
 linux-tiff-3.7.1
 linux-xorg-libs-6.8.2_5
 linux_base-fc6-6_4
 nvidia-driver-100.14.11
 nvidia-settings-1.0_12
 nvidia-xconfig-1.0_1

 grep fc6 /etc/make.conf
 OVERRIDE_LINUX_BASE_PORT=fc6

 grep 2.6 /etc/sysctl.conf
 compat.linux.osrelease=2.6.16

 uname -a
 FreeBSD philip.hq.rws 7.0-CURRENT FreeBSD 7.0-CURRENT #0: Thu Jul 26
 16:44:37 EDT 2007
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

 I've now done
 sudo rm -rf /usr/ports
 sudo cvsup -g -L2 /usr/share/ports/ports-supfile

 When I run acroread I get this error it has to be related to this
 bouncing back and forth on the ports tree but I can't figure out how to
 fix it. Google turns up exactly 0.


 *** glibc detected *** /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread:
 free(): invalid next size (normal): 0x0977aba8 ***
 === Backtrace: =
 /lib/libc.so.6[0x2a079c88]
 /lib/libc.so.6(cfree+0x90)[0x2a07d230]
 /usr/lib/libfreetype.so.6[0x2a19bcad]
 /usr/lib/libfreetype.so.6(ft_mem_free+0x1a)[0x2a19c0ca]
 /usr/lib/libfreetype.so.6[0x2a1e72b4]
 /usr/lib/libfreetype.so.6[0x2a1e8368]
 /usr/lib/libfreetype.so.6[0x2a1e9898]
 /usr/lib/libfreetype.so.6(FT_Stream_EnterFrame+0x78)[0x2a19c4c8]
 /usr/lib/libfreetype.so.6(FT_Stream_ReadFields+0x92)[0x2a1a1402]
 /usr/lib/libfreetype.so.6[0x2a1c2532]
 /usr/lib/libfreetype.so.6[0x2a1c3648]
 /usr/lib/libfreetype.so.6[0x2a1a1bfe]
 /usr/lib/libfreetype.so.6(FT_Open_Face+0x2c7)[0x2a1a3327]
 /usr/lib/libfreetype.so.6(FT_New_Face+0x48)[0x2a1a3958]
 /usr/lib/libfontconfig.so.1(FcFreeTypeQuery+0x67)[0x2a225a98]
 /usr/lib/libfontconfig.so.1(FcFileScan+0x6b)[0x2a224d3b]
 /usr/lib/libfontconfig.so.1(FcDirScan+0x1d1)[0x2a2251fc]
 /usr/lib/libfontconfig.so.1(FcConfigBuildFonts+0x94)[0x2a21fd51]
 /usr/lib/libfontconfig.so.1(FcInitLoadConfigAndFonts+0x26)[0x2a2270b3]
 /usr/lib/libfontconfig.so.1(FcInit+0x2e)[0x2a2272b0]
 /usr/lib/libfontconfig.so.1(FcConfigGetCurrent+0x29)[0x2a21fc7a]
 /usr/lib/libfontconfig.so.1(FcConfigSubstituteWithPat+0x6f4)[0x2a221ab3]
 /usr/lib/libfontconfig.so.1(FcConfigSubstitute+0x33)[0x2a221af8]
 /usr/lib/libpangoxft-1.0.so.0[0x2a16f539]
 /usr/lib/libpangoft2-1.0.so.0[0x2a25e6b4]
 /usr/lib/libpangoft2-1.0.so.0[0x2a25e9c4]
 /usr/lib/libpangoft2-1.0.so.0[0x2a25ed3f]
 /usr/lib/libpango-1.0.so.0(pango_font_map_load_fontset+0x4a)[0x29f0f90f]
 /usr/lib/libpango-1.0.so.0[0x29f0dec5]
 /usr/lib/libpango-1.0.so.0(pango_itemize_with_base_dir+0xa7)[0x29f0e35b]
 /usr/lib/libpango-1.0.so.0[0x29f15459]
 /usr/lib/libpango-1.0.so.0[0x29f16007]
 /usr/lib/libpango-1.0.so.0(pango_layout_get_size+0x34)[0x29f16f09]
 /usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN10UnixDrawer11GetFontInfoER11ADMFontInfo+0x36)[0x2da39046]
 /usr/local/Adobe/Acrobat7.0/ENU/Reader/intellinux/SPPlugins/ADMPlugin.apl(_ZN17ADMDrawerSuiteImp11GetFontInfoEP17_Opaque_ADMDrawerP11ADMFontInfo+0x2a)[0x2d9abfea]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN17TADMCreateContext16HandleFontHeightEss+0x60)[0x87ee4e0]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN16CExpressionScope12DoInitializeEP17TInitScopeContextP14TCreateContext+0x129)[0x87f3589]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_ZN16CExpressionScope18DoGlobalInitializeEP17TInitScopeContextP14TCreateContext+0x1e)[0x87f3f0e]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z10readDialogP22ADMCustomDialogMessagePc+0xd5)[0x87eefd5]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(_Z18handlePluginCallerPcS_Pv+0x6d)[0x87c9f5d]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(ExpressViewsMain+0x201)[0x865ab61]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(spEdgeCallPlugin+0x18)[0x8660568]
 /usr/local/Adobe/Acrobat7.0/ENU/bin/acroread(SPCallPlugin+0xcd)[0x865c11d]
 

Re: Stress testing/burning in HDDs

2007-09-27 Thread Chuck Swiger

On Sep 27, 2007, at 10:43 AM, Don O'Neil wrote:
I have an array that has a drive that keeps timing out/failing...  
So I need
to replace it. However, I want to stress test/burn in a replacement  
disk

first.

What is the best way to do this?


It's reasonable to start with something like a:

   dd if=/dev/your_disk of=/dev/null bs=5120

...to at least try reading every sector on the drive as a basic  
sanity check.  Better would be to install /usr/ports/sysutils/ 
smartmontools and run some SMART self-tests via:


   smartctl -t long /dev/your_disk

smartctl even understands some types of RAID controllers, but not all  
of them


--
-Chuck

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


Re: Stress testing/burning in HDDs

2007-09-27 Thread Oliver Herold
Maybe with stress?

http://weather.ou.edu/~apw/projects/stress/

/usr/ports/sysutils/stress

Cheers, Oliver


On Thu, Sep 27, 2007 at 10:43:24AM -0700, Don O'Neil wrote:
 I have an array that has a drive that keeps timing out/failing... So I need
 to replace it. However, I want to stress test/burn in a replacement disk
 first.
 
 What is the best way to do this?
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

-- 
In the days of old,
When Knights were bold,
And women were too cautious;
Oh, those gallant days,
When women were women,
And men were really obnoxious.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't connecto to www.freebsd.org

2007-09-27 Thread Fernando Apesteguía
Hi!

I write this mail cause from 15 days ago (more or less) I can't
connect to www.freebsd.org typing the address on Firefox. Pings are
resolved and if I type the IP in the address bar, I get the main page,
but then all the links in which I click on are timeout.

At work I can access so I would like to know if I have to call my ISP
(but the DNS seems to work because of the ping) or maybe you're
filtering some IP's

Do not hesitate to contact me if you need further information.

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


Re: Can't connecto to www.freebsd.org

2007-09-27 Thread Mel
On Thursday 27 September 2007 20:22:32 Fernando Apesteguía wrote:

 I write this mail cause from 15 days ago (more or less) I can't
 connect to www.freebsd.org typing the address on Firefox. Pings are
 resolved and if I type the IP in the address bar, I get the main page,
 but then all the links in which I click on are timeout.

Let's see if it's just firefox. What does the following command output?

fetch http://www.freebsd.org/docs.html

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


Re: Stress testing/burning in HDDs

2007-09-27 Thread Wojciech Puchar

What is the best way to do this?


It's reasonable to start with something like a:

 dd if=/dev/your_disk of=/dev/null bs=5120

...to at least try reading every sector on the drive as a basic sanity check.


why so small blocks of 10 sectors?

i use bs=64k at least goes faster.

Better would be to install /usr/ports/sysutils/smartmontools and run some 
SMART self-tests via:


 smartctl -t long /dev/your_disk

smartctl even understands some types of RAID controllers, but not all of 
them


--
-Chuck

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


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


Re: Stress testing/burning in HDDs

2007-09-27 Thread Chuck Swiger

On Sep 27, 2007, at 12:04 PM, Wojciech Puchar wrote:

It's reasonable to start with something like a:

 dd if=/dev/your_disk of=/dev/null bs=5120

...to at least try reading every sector on the drive as a basic  
sanity check.


why so small blocks of 10 sectors?

i use bs=64k at least goes faster.


Agreed, but he asked for a stress-test-- arguably, hitting with a  
size of 512 might be better for that purpose than anything faster.  I  
chose 5120 because many ATA devices seem to have a maximum request/ 
DMA-transfer size of 16 sectors, and 512 * 10 is convenient and fits  
under that.


--
-Chuck

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


My New Email Address

2007-09-27 Thread draculawizard
My email address has changed from [EMAIL PROTECTED]
to [EMAIL PROTECTED]  Please update your records.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dual Opterons don't see all memory

2007-09-27 Thread Wojciech Puchar
I've recently taken ownership of a server (dual Opterons) in my research 
group.  Whereas it was previously running linux, it is now running FreeBSD. 
Everything seems to be going great, except linux was able to make use of it's 
6GB of memory, and FreeBSD can only see about 4GB of it.


Can anyone help me figure out how to make use of the missing GB?


use FreeBSD/amd64 not i386.

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


RE: Can't connecto to www.freebsd.org

2007-09-27 Thread Schmehl, Paul L
 -Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Fernando
Apesteguía
Sent: Thursday, September 27, 2007 1:23 PM
To: freebsd-questions@FreeBSD.ORG
Subject: Can't connecto to www.freebsd.org

Hi

I write this mail cause from 15 days ago (more or less) I can't connect to
www.freebsd.org typing the address on Firefox. Pings are resolved and if I
type the IP in the address bar, I get the main page, but then all the links
in which I click on are timeout.

At work I can access so I would like to know if I have to call my ISP (but
the DNS seems to work because of the ping) or maybe you're filtering some
IP's

Do not hesitate to contact me if you need further information.

--

Sorry for the stupid formatting, but, for the moment, I am forced to use
braindead Outlook as my email client. :-(

DNS has nothing to do with pings.  It is used to resolve hostnames to IP
addresses.  It appears that DNS is not working for you, at least in the case
of www.freebsd.org.  Can you resolve other sites?  For example, can you get
your browser to load www.yahoo.com?

Paul Schmehl ([EMAIL PROTECTED])
Senior Information Security Analyst
University of Texas at Dallas
http://www.utdallas.edu/ir/security/


smime.p7s
Description: S/MIME cryptographic signature


Re: Can't connecto to www.freebsd.org

2007-09-27 Thread Mel
On Thursday 27 September 2007 21:38:02 Schmehl, Paul L wrote:

  I write this mail cause from 15 days ago (more or less) I can't connect
  to www.freebsd.org typing the address on Firefox. Pings are resolved and
^^^
 DNS has nothing to do with pings.

Sure it does. ping hostname resolves address via DNS. Which is why I'm more 
thinking of bogus HTTP_PROXY (which fetch(1) would show) or an ISP forced 
transparent proxy which uses a stale DNS record. 15 days ago the website 
outage and sparked a load of me too mails on this list. I haven't checked if 
DNS was updated at the time, but it makes sense.

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


Re[2]: Research About FreeSBD , consult

2007-09-27 Thread Daniel Gerzo
Hello Danilo,

Thursday, September 27, 2007, 3:33:21 PM, you wrote:

 Daniel 

 Thanks very much for your support I really appreciate it.

You are welcome.

 I have a 2nd level of questions more related to the current domain of
 FreeBSD in the market (% of participation , mindshare , competitive
 advantages, others) 

 Is there a contact within your Organization I can call/contact to talk
 about it please. I would like to interview him/her

You will find contact information at:
http://www.freebsd.org/administration.html and
http://www.freebsdfoundation.org/contact.shtml


-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


newby needing help

2007-09-27 Thread neal

Hello List,

I've been reading the list for a few weeks now and trying 
out 6.2STABLE. I've been using Linux for the past 6years and 
dos/windows a lot longer before that. Now I'm trying out 
something new and I really like it. Even better, there are 
both a mailing list and a newsgroup for support, wahay! no 
[expletive] forums! IMHO something that is done FOR the 
users and for which I am truly grateful.


I've checked out all the main functions I want from FreeBSD 
and had them all working (hehe, but since broke some) so I'm 
happy it will do the things I want so far.


First question, what is recommended regarding doing updates. 
Is it best to just do all of them? I have always had 
problems doing this e.g. with Mandrake and other Linuxs and 
so am reluctant, but if it is usual I'll give it a try. (I'm 
also reluctant as I assume a full update will update xorg to 
7.3 and I have 7.2 installed with the latest nvidia 9# 
driver and it works beautifully so would rather stay with that.


I have read the Handbook, but still have a problem 
understanding how to map my ext2 and ext3 partitions to the 
UFS notation. e.g. I have a drive hda, it has a swap an 
unused space and four partitions one of which is my home 
partition hda7. How do I refer to this home partition using 
ad0??? notation (as this is what I understand I need to do, 
if not please enlighten). I have installed the ext2fs 
utilities/drivers and can mount an ext2 fs written on dvd 
without problems.


I intend to do a completely fresh install and would like to 
compile for my specific pc kit. Would I be best doing this 
following installation and initial setting up? and is it 
possible to load something from a package now and later 
reinstall from ports?


TIA

neal.



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


experiences with the beta nvidia driver

2007-09-27 Thread Aryeh Friedman
Last night I mentioned it is now avaible... has any one tried it with
anything near this combo:

P-35 Chipset
GeForce 5200 GT (PCI)
7-CURRENT

The reason for asking is when I installed it the kernel reconizes my
card but Xorg (7.3) doesn't recognize it (same as before the beta)
 BTW it does not implement --enable-all-gpus it seems right now

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


Re: experiences with the beta nvidia driver

2007-09-27 Thread falz
On 9/27/07, Aryeh Friedman [EMAIL PROTECTED] wrote:
 Last night I mentioned it is now avaible... has any one tried it with
 anything near this combo:

 P-35 Chipset
 GeForce 5200 GT (PCI)
 7-CURRENT

 The reason for asking is when I installed it the kernel reconizes my
 card but Xorg (7.3) doesn't recognize it (same as before the beta)
  BTW it does not implement --enable-all-gpus it seems right now

I'll be testing it tomorrow, with a PCI 5200 and a PCI-E 7100(?), but
with 6.2. I unfortunately am one of the users who simply gets a reboot
when x starts with the driver that's currently in ports, so I'm hoping
I can can at least get further than that.

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


Re: sbcl/lisp question

2007-09-27 Thread P.U.Kruppa

On Thu, 27 Sep 2007, Andreas Davour wrote:


On Wed, 26 Sep 2007, P.U.Kruppa wrote:


Hi,

while playing with SBCL and the editor slime, I found that slime needs some 
(fast loadable) files in /usr/local/lib/sbcl/.. (with .fasl suffix) to be 
set executable.


Was this forgotten by the port authors or is there some tricky LISP way to 
do it automatically (i.e. is it a bug or a feature)?


A FASL file is a compiled lisp file. If you check in that folder there will 
probably be another file there with the same name and the extension .lisp 
instead. There is no need to have a fasl file, the lisp system can load and 
compile the .lisp files as needed. If you feel like speed up the load process 
you can of course compile those files. Note that for the files to be saved 
you must have write permission in that folder, so the easiest way might be to 
start sbcl as root and then it will load and compile the files to FASL. Next 
time you start sbcl the lisp will load the compiled files.


If there's more, or you just forgot to tell us the error messages contained 
aditional problems, please repost with all the errors inlcuded.


Hope that helped. More specific lisp questions can be taken to #lisp @ 
freenode.net where I and others chat and answer questions.

Thanks,

Uli.



/Andreas





Peter Ulrich Kruppa
Wuppertal
Germany

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


Re: newby needing help

2007-09-27 Thread Roland Smith
On Thu, Sep 27, 2007 at 09:11:01PM +, neal wrote:
 I've checked out all the main functions I want from FreeBSD and had them 
 all working (hehe, but since broke some) so I'm happy it will do the things 
 I want so far.
 
 First question, what is recommended regarding doing updates. Is it best to 
 just do all of them?

It depends. If the update of the base system concerns something that you
use, I would definitely install it.

The best way to keep the base system up-to-date is using csup (which is
still referenced in the Handbook in §20.3 as cvsup).

For updating the ports tree I can recommend portsnap. For updating the
ports themselves I use portmaster.

 I have always had problems doing this e.g. with 
 Mandrake and other Linuxs and so am reluctant, but if it is usual I'll give 
 it a try.

The upgrade tools on FreeBSD work quite well. But if you're rebuilding
your own ports it can take quite some time depending on your machine.

 (I'm also reluctant as I assume a full update will update xorg to 
 7.3 and I have 7.2 installed with the latest nvidia 9# driver and it works 
 beautifully so would rather stay with that.

There is a new beta driver available.

 I have read the Handbook, but still have a problem understanding how to map 
 my ext2 and ext3 partitions to the UFS notation. e.g.

The notation is a BSD thing, it has nothing to do with UFS.

 I have a drive hda, 
 it has a swap an unused space and four partitions one of which is my home 
 partition hda7. How do I refer to this home partition using ad0???
 notation 

If you do 'ls ad0*' you'll see what is available. Remember that what DOS
and Linux calls partitions are called slices in FreeBSD. Partitions in
FreeBSD are subdivisions of a slice. E.g. ad0s1a is partition a of slice
1 of ad0. Customarily, slice b is used for swap, and slice c is
unused. You can see this with the 'bsdlabel' command.

 (as this is what I understand I need to do, if not please enlighten). I 
 have installed the ext2fs utilities/drivers and can mount an ext2 fs 
 written on dvd without problems.

I would recommend converting the disk to native UFS2 filesystems. I'm
not sure if mounting an ext2 slice read/write is such a good idea. Make
(in Linux, e.g. Knoppix) a tarball of your data and seve it to another disk or
CD,DVD. Reslice and format the disk with sysinstall, and restore your
backup.

You might find §16.3 of the Handbook enlightening.

 I intend to do a completely fresh install and would like to compile for my 
 specific pc kit. Would I be best doing this following installation and 
 initial setting up?

Yes. Read Chapter 4 of the Handbook about ports. My FreeBSD page has
some tips about setting port variables in make.conf;
http://www.xs4all.nl/~rsmith/freebsd/index.html 

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)


pgpkHoPrDm16I.pgp
Description: PGP signature


Installing FreeBSD 6.2 on 9 TB RAID 6 disk - Guide to GPT?

2007-09-27 Thread James Riendeau
Is there a guide out there for installing on very large disks with  
gpt?  I can't seem to get it to work from what little I can glean  
from the archives and the man page.  I'm trying to install version  
6.2 on a 9 TB RAID 6 disk, and I can't get to a point where I have  
mountable partitions.  I keep seeing a message about an invalid  
superblock whenever I try to mount the new partitions.  I'm sure it's  
something simple I'm missing.


Thanks,

James Riendeau
MMI Computer Support Technician
University of Wisconsin-Madison



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


Re: Exabyte VXA tape drives - anyone using?

2007-09-27 Thread Brian A. Seklecki
Run it through strace(1) and ktrace(1) in Linux and see what devices it
talks to in /dev and see if they can be emulated.  It's probably talking
to /dev/ns{r,a}0 and /dev/ch0, depending on udev/autodev/
foo-bar-latest-greatest linux framework.

You might also check the Amanda/Bacula list archives.

~BAS

On Wed, 2007-06-27 at 12:09 -0400, Rob wrote:
 Linux emulation on FreeBSD?  It's just a simple utility for operating
  running

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


Re: GEOM, Vinum difference

2007-09-27 Thread Brian A. Seklecki
On Wed, 2007-08-22 at 08:51 +0400, Rakhesh Sasidharan wrote:
 Lowell Gilbert wrote:
 
  Rakhesh Sasidharan [EMAIL PROTECTED] writes:
 
  I see that if I want to do disk striping/ concating/ mirroring,
  FreeBSD offers the GEOM utilities and the Vinum LVM (which fits into
  the GEOM architecture). Why do we have two different ways of doing the

...

 definitely a difference. Thanks!
 
 Another (related) question: both gvinum and the geom utilities like 
 gmirror and gstripe etc provide for RAID0, RAID1, and RAID3. Any 
 advantages/ disadvantages of using one instead of the other?

It depends greatly upon your application and needs.  A common practice
in a common 6-disk capable server is to use a RAID1 set of smaller
capacity, faster speed/RPM disks for RAID1 for the system file
systems, while using a combination of larger, slower disks in a RAID1
set, then RAID0'd together for both space, performance, and redundancy.
RAID1+0.

~BAS

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


Re: OT: how to increase RAID space

2007-09-27 Thread Brian A. Seklecki
UFS/FFS probably wont deal well with the underlying logical-physical
disk size changing (bytes/section, number of sectors, etc.).  Even if it
was pure concatenation.

No, an LVM2/VxFS is needed.

Also, shops that can afford SAN and high end RAID tend to be able to
provision temp space to store media while they expand and re-create
volumes.

~BAS

On Wed, 2007-06-27 at 20:21 +1000, Norberto Meijome wrote:
 On Wed, 27 Jun 2007 17:07:32 +0700 (ICT)
 Olivier Nicole [EMAIL PROTECTED] wrote:
 
   that's what a volume manager (such as LVM2 in linux, Veritas Vol Mgr , and
   vinum (I think) in FBSD 4 ) do  - they abstract the hardware storage 
   layer.
  
  That is hardware RAID.
 
 yes, i realise you mentioned it . You'd imagine some raid card manufacturers
 would have something as flexible as LVM built into their cards by now... maybe
 someone does already.. ?
 
 _
 {Beto|Norberto|Numard} Meijome
 
 Those who do not remember the past are condemned to repeat it.
George Santayana
 
 I speak for myself, not my employer. Contents may be hot. Slippery when wet.
 Reading disclaimers makes you go blind. Writing them is worse. You have been
 Warned.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 
 
 
 
 

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


Re: If the mirror sites (all four I've tried now from all over the world) have the FreeBSD 6.1 downloads contain the FreeBSD4.11 image, how is one supposed to download V6.1?

2007-09-27 Thread Giorgos Keramidas
% Date: Fri, 28 Sep 2007 12:23:28 +1200
% Message-ID: [EMAIL PROTECTED]
% From: Brett Davidson [EMAIL PROTECTED]
% Subject: If the mirror sites (all four I've tried now from all over the
% world)
% have the FreeBSD 6.1 downloads contain the FreeBSD4.11 image, how is 
one
% supposed to download V6.1?
% To: freebsd-questions@freebsd.org
%
% I, for one, would really like to get a copy of FreeBSD 6.1.
% :-)

Hi Brett,

Please do not include *MOST* of your message text in the subject and
then just a seemingly 'out of place' continuation of that text in the
email body.  It looks kind of silly in some mail readers, and it is
generally frowned upon by many 'old timers' of email :-)

Where did you look for the 'image' downloads?

I just connected to ftp.FreeBSD.org using Firefox, and the listing of
the directory at:

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386

contains:

| Index of ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386
| 
|
| Up to higher level directory
| Directory: 2.2.9-RELEASE10/24/06  00:00:00
| Directory: 4.11 moved to ftp-archive10/24/06  00:00:00
| Directory: 5.0-CURRENT  10/24/06  00:00:00
| Directory: 5.3 has moved to ftp-archive 10/24/06  00:00:00
| Directory: 5.4 moved to ftp-archive 10/25/06  00:00:00
| Directory: 5.5-RELEASE  10/24/06  00:00:00
| Directory: 6.0 moved to ftp-archive 10/25/06  00:00:00
| Directory: 6.1-RELEASE  10/24/06  00:00:00
| Directory: 6.2-RELEASE  01/13/07  00:00:00
| Directory: ISO-IMAGES   10/24/06  00:00:00
| File: README.TXT  1 KB  11/23/05  00:00:00

The ISO-IMAGES directory contains ISO images for 6.1 and a few more
releases...

What seems to be the problem with finding non-6.1 releases?

- Giorgos

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


Re: If the mirror sites (all four I've tried now from all over the world) have the FreeBSD 6.1 downloads contain the FreeBSD4.11 image, how is one supposed to download V6.1?

2007-09-27 Thread Bill Moran
Brett Davidson [EMAIL PROTECTED] wrote:

 I, for one, would really like to get a copy of FreeBSD 6.1.
 :-)

1) Why use 6.1 when you could use 6.2?
2) What on earth are you talking about?

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


If the mirror sites (all four I've tried now from all over the world) have the FreeBSD 6.1 downloads contain the FreeBSD4.11 image, how is one supposed to download V6.1?

2007-09-27 Thread Brett Davidson

I, for one, would really like to get a copy of FreeBSD 6.1.
:-)


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


Getting vim to work correctly.

2007-09-27 Thread Jay Chandler

Howdy.

Sorry to keep hitting the list with questions today, but does anyone 
know how to get the home, delete, end, page up, etc. keys working 
correctly in vim?


It works in Linux, drives me nuts in FreeBSD...
--
Jay Chandler / KB1JWQ
Living Legend / Systems Exorcist
Today's Excuse: heavy gravity fluctuation, move computer to floor rapidly
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: If the mirror sites (all four I've tried now from all over the world) have the FreeBSD 6.1 downloads contain the FreeBSD4.11 image, how is one supposed to download V6.1?

2007-09-27 Thread Bill Moran
Brett Davidson [EMAIL PROTECTED] wrote:

 Bill Moran wrote:
  Brett Davidson [EMAIL PROTECTED] wrote:

  I, for one, would really like to get a copy of FreeBSD 6.1.
  :-)
 
  1) Why use 6.1 when you could use 6.2?
  2) What on earth are you talking about?
 

 Because the software I'm attempting to use is supported only on 
 FreeBSD 6.1.
 And what I'm talking about is when you download the FreeBSD6.1 ISO images,
 the installed system (according to uname) is 4.11.

This is almost certainly pilot error.

Did the md5 check out?

... and please keep the mailing list in the CC.

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


Control Multiple Hosts

2007-09-27 Thread Jay Chandler

Howdy.

I'm looking for a tool similar to ClusterSSH, albeit without the 
constant segfaulting.  Has anyone used or heard of anything similar that 
allows me to log into multiple machines at once via SSH and echo 
keystrokes from one window to all the connected hosts?  It'd make life a 
crapton easier for me...



--
Jay Chandler / KB1JWQ
Living Legend / Systems Exorcist
Today's Excuse: heavy gravity fluctuation, move computer to floor rapidly
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't connecto to www.freebsd.org

2007-09-27 Thread Beech Rintoul
On Thursday 27 September 2007, Jeff Mohler said:
 On 9/27/07, icantthinkofone [EMAIL PROTECTED] wrote:
  I just found I am having this problem, too.  I can access every
  other site I visit, both large and small.  'make fetchindex' no
  longer works, eg, it times out.  As does 'fetch
  www.freebsd.org/docs' as suggested. ---

 Well dang..

 I tried to visit www.freebsd.org as well, and I got porn instead.

 Who do I thank?

 No..I wont be trying to fix this.



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



-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



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


Re: FreeBSD Tomcat

2007-09-27 Thread Byung-Hee HWANG
On Wed, 2007-09-26 at 21:30 -0700, Yance Kowara wrote:
[...snip...]
 Many of the docs pointed out the need to switch onLinux emulation option in 
 the kernel (Docs using FreeBSD 4.10). Is it stillnecessary to do this or is 
 it now handled by KLDload?
 Attached is pkg_info output. I tried installingeverything from ports 
 collection. Any missing software?
In this case I think you are better to use Linux than to use FreeBSD
because still it's difficult to operate Java stuff on FreeBSD. So I
recommend that you should move to Linux. I/You/He/She/We love FreeBSD,
though;;

Byung-Hee

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


Re: gmirror

2007-09-27 Thread Brian A. Seklecki
The size colum can be human readable number (ex, 5g) and the offset
can be the name of the previous partition.  For the offset and size of
the first and last partitions respectively use *.  Read the
disklabel(8) man page for more details -- it is actually a real well
written one.

I wouldn't worry about exact replication -- the sector sizes and total
sectors of the logical gmirror volume and the underlying phyiscal disk
will always be different -- that's the nature of LVM.

Just make them relatively close and match up the letters.

~~BAS

On Wed, 2007-06-27 at 14:16 -0400, [EMAIL PROTECTED] wrote:
 Quick question, I am configuring gmirror to mirror certain slices on my
 hard drives.. I want to mirror /dev/ad0s1 (700M) to another drive.. I am
 fine with configuring gmirror and getting it running but I am unsure of
 how I create the BSD slices with bsdlabel -e..
 
 When I do a bsdlabel -e /dev/ad0s1 I get:
 
 # /dev/ad0s1:
 8 partitions:
 #size   offsetfstype   [fsize bsize bps/cpg]
   a:   40960004.2BSD 2048 16384 25608
   c:  14297220unused0 0 # raw part,
 don't edit
   d:  1020122   4096004.2BSD 2048 16384 63760
 
 When I initially create the mirror on the backup disk, I run a bsdlabel -e
 /dev/mirror/gm0s1 and this is what it shows:
 
 # /dev/mirror/gm0s1:
 8 partitions:
 #size   offsetfstype   [fsize bsize bps/cpg]
   a:  1429705   16unused0 0
   c:  14297210unused0 0 # raw part,
 don't edit
 
 My initial instinct was to mirror the bsdlabel output from ad0s1 but with
 just the 16 offset for the 'a' slice coming out with:
 
 # /dev/mirror/gm0s1:
 8 partitions:
 #size   offsetfstype   [fsize bsize bps/cpg]
   a:  409584164.2BSD 2048 16384 25608
   c:  14297210unused0 0 # raw part,
 don't edit
   d:  1020122   4095844.2BSD 2048 16384 63760
 
 Is my assumption correct?  Or am I missing something here?
 
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 
 
 
 
 

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


Can't connecto to www.freebsd.org

2007-09-27 Thread icantthinkofone
I just found I am having this problem, too.  I can access every other 
site I visit, both large and small.  'make fetchindex' no longer works, 
eg, it times out.  As does 'fetch www.freebsd.org/docs' as suggested.

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


Re: Can't connecto to www.freebsd.org

2007-09-27 Thread Jeff Mohler
On 9/27/07, icantthinkofone [EMAIL PROTECTED] wrote:

 I just found I am having this problem, too.  I can access every other
 site I visit, both large and small.  'make fetchindex' no longer works,
 eg, it times out.  As does 'fetch www.freebsd.org/docs' as suggested.
 ---


Well dang..

I tried to visit www.freebsd.org as well, and I got porn instead.

Who do I thank?

No..I wont be trying to fix this.



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


Re: FreeBSD Tomcat

2007-09-27 Thread Ivan Rambius Ivanov
Hello,

On 9/28/07, Byung-Hee HWANG [EMAIL PROTECTED] wrote:
 In this case I think you are better to use Linux than to use FreeBSD
 because still it's difficult to operate Java stuff on FreeBSD. So I
 recommend that you should move to Linux.
Actually nowadays it is easy to use java and tomcat on freebsd.

First one has to install a JDK. I myself prefer diablo-jdk. Go to
/usr/ports/java/diablo-jdk15, type

make install

and follow the instructions. Due to java licenses you have to manually
fetch some files from internet and put them in /usr/ports/distfiles.

If you are required to use sun jdk, you can install it from
java/jdk15. Note that it will need an existing jdk to bootstrap. By
default it uses linux-sun-jdk and I had problems with it in the past.
In this case I used diablo-jdk and sun jdk15 installed correctly. From
my experinece, however, I can tell that tomcat runs fine with
diablo-jdk.

Next go to /usr/ports/www/tomcat55/ and install it and you have java and tomcat.

 I/You/He/She/We love FreeBSD,
 though;;
Oh yes, we loves FreeBSD, don't we, my precious?

Regards
Rambius

-- 
Tangra Mega Rock: http://www.radiotangra.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't connecto to www.freebsd.org

2007-09-27 Thread Beech Rintoul
On Thursday 27 September 2007, Beech Rintoul said:
 On Thursday 27 September 2007, Jeff Mohler said:
  On 9/27/07, icantthinkofone [EMAIL PROTECTED] wrote:
   I just found I am having this problem, too.  I can access every
   other site I visit, both large and small.  'make fetchindex' no
   longer works, eg, it times out.  As does 'fetch
   www.freebsd.org/docs' as suggested. ---
 
  Well dang..
 
  I tried to visit www.freebsd.org as well, and I got porn instead.
 
  Who do I thank?
 
  No..I wont be trying to fix this.
 
 
 
  /humor

Try the mirror: http://ww2.sg.freebsd.org it's up.

-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



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


Re: Getting vim to work correctly.

2007-09-27 Thread Predrag Punosevac

Jay Chandler wrote:

Howdy.

Sorry to keep hitting the list with questions today, but does anyone 
know how to get the home, delete, end, page up, etc. keys working 
correctly in vim?


It works in Linux, drives me nuts in FreeBSD...
FreeBSD by default uses nvi (new vi editor its own light version of vim) 
I would try to use that before I waist time with vim. It is included in 
your base distribution no need to compile. The commands are standard vi 
commands.


For light editing you are probably better of to use ee (easy edit) the 
simplest FreeBSD specific editor included in distribution.


This is not to say that vim doesn't work. You have to compile from ports 
and since I do  not use vim I am not probably good  person to answer 
your  question.

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


Re: Getting vim to work correctly.

2007-09-27 Thread Eric Schuele
On 09/27/2007 21:01, Jay Chandler wrote:
 Howdy.
 
 Sorry to keep hitting the list with questions today, but does anyone
 know how to get the home, delete, end, page up, etc. keys working
 correctly in vim?
 
 It works in Linux, drives me nuts in FreeBSD...

They work perfectly fine here.  How is it you expect those keys to
behave?  Define working correctly.

-- 
Regards,
Eric




signature.asc
Description: OpenPGP digital signature


Re: too late to change to security branch?

2007-09-27 Thread Bill Stwalley
On 9/27/07, Beech Rintoul [EMAIL PROTECTED] wrote:

 On Wednesday 26 September 2007, Bill Stwalley said:
  I have servers running 6.1 and 6.2.  I use freebsd-update in cron
  jobs to install binary security update to the base system, and use
  cvsup/portupgrade in cron jobs to install port updates.  By
  default, cvsup uses CURRENT branch.
 
  I am tired of some updates breaking something unnecessarily, and am
  thinking of changing to SECURITY branch in cvsup.  Is that
  possible?  Some of my ports are already locally compiled with
  customized options.
 
  If that's impossible, can I wait until the release of 6.3,
  upgrading to it, and then switch to SECURITY branch in cvsup?
 
  If those are entirely impossible, can I switch to STABLE branch?
 
  I'm confused by this system, please let me know if anything I do
  doesn't make sense.
 
  Best, Bill

 There are no other branches of ports except current. The release,
 security, stable and current branches only apply to the system
 itself. The exception being the ports that come with a release are
 just a snapshot of the ports tree at the time the release was rolled.
 While we try our best to avoid breakage, it sometimes happens. My
 suggestion is that if you plan on upgrading something mission
 critical, you might want to try the upgrade on another similar box
 first and test. As for compiling with options not already available
 in the port itself, you are basically on your own. If there is a
 particular option that comes with the sources, but is not a port
 option contact the maintainer of that port. As for doing port updates
 with a cron script it's not recommended. You should always read
 UPDATING before installing anything. Believe me it will save you foot
 shooting.

 Beech

 --

I run freebsd-update and my cvsup configuration uses *default release=cvs
tag=..  I am actually following security branch, since I do not recompile
the kernel, right?  This cvs tag only matters if I compile the kernel,
right?

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