Make installworld in single-user mode all the time?

2006-03-23 Thread Philippe Lang
Hi,

I'd like to patch a production server, with about 10 jails, running FreeBSD
6.0 Release, in order to get FreeBSD 6.0-p6.

Since this server is being hosted on a remote location, rebooting in
single-user mode before doing the installworld requires me to move to the
hosting center.

Documentation mentions that a reboot in single-user mode is necessary. But
on the opposite, /usr/src/UPDATING says:

 Also, when doing a major release upgrade, it is required that
 you boot into single user mode to do the installworld.

Since this is no major release upgrade, does that mean I can do the
installworld in multi-user mode?

I have tested that on a smaller test server yesterday evening, I have even
done the installworld in running jails, and it worked just fine. Was I lucky
maybe?

Does anyone have a definitive guide to update FreeBSD correctly?

Here is what I did:

--

1) Cleaning
 cd /usr/obj 
 chflags -R noschg * 
 rm -rf 

2) Buildworld  Kernel
 cd /usr/src 
 make buildworld (/usr/src/UPDATING mentions we should avoid the -j option)
 make kernel KERNCONF=MY_KERNEL_CONF

4) When doing a major release upgrade:
 reboot in single-user mode
 fsck -p 
 mount -u / 
 mount -a -t ufs 
 swapon -a 
 adjkerntz -i 

6) Installworld
 cd /usr/src 
 mergemaster -p 
 make installworld 
 mergemaster 
 
7) Update jail1
 mergemaster -p -D /usr/jails/my_jail1
 make installworld DESTDIR=/usr/jails/my_jail1
 mergemaster -D /usr/jails/my_jail1
 
8) Update jail2
 mergemaster -p -D /usr/jails/my_jail2
 make installworld DESTDIR=/usr/jails/my_jail2
 mergemaster -D /usr/jails/my_jail2

9) Reboot

--

Regards,

--
Philippe Lang, Ing. Dipl. EPFL
Attik System
rte de la Fonderie 2
1700 Fribourg
Switzerland
http://www.attiksystem.ch

Tel:  +41 (26) 422 13 75 
Fax:  +41 (26) 422 13 76
Email:[EMAIL PROTECTED]


smime.p7s
Description: S/MIME cryptographic signature


zope-3.2.0 and plone trouble

2006-03-23 Thread Michel Le Cocq

Hi, I just install zope-3.2.0 and made it working just well.

Now I wanted to run plone on it so i go to /usr/portswww/plone and type 
make install, and there, it install zope-2.7.8_1 and also python-2.3.5_1 
(i already had python-2.4.2).  My ports list is up to date.


I can't make plone working in zope 3.2 but it work under zope 2.7

Does someone run plone under zope 3.2

--
Michel Le Cocq
Administrateur Reseau Laga-Lipn

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


Problems installing pear-Auth

2006-03-23 Thread doug
I have installed:

   pear-1.4.6  PEAR framework for PHP
   pear-Auth-1.2.4 PEAR class for creating an authentication system
   pear-DB-1.7.6,1 PEAR Database Abstraction Layer
   php4-4.4.2_1PHP Scripting Language (Apache Module and CLI)
   php4-mysql-4.4.2_1  The mysql shared extension for php
   php4-pcre-4.4.2_1   The pcre shared extension for php
   php4-xml-4.4.2_1The xml shared extension for php

The include_path is not set. It appears to me it should be
/usr/local/share/pear/PEAR/Command/. Should I just set this manually or is 
there a
configuration script and/or another package I am missing?

Thanks for any thoughts.

Doug

_
Douglas Denault
http://www.safeport.com
[EMAIL PROTECTED]
Voice: 301-469-8766
  Fax: 301-469-0601
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Make installworld in single-user mode all the time?

2006-03-23 Thread Kris Kennaway
On Thu, Mar 23, 2006 at 09:25:13AM +0100, Philippe Lang wrote:
 Hi,
 
 I'd like to patch a production server, with about 10 jails, running FreeBSD
 6.0 Release, in order to get FreeBSD 6.0-p6.
 
 Since this server is being hosted on a remote location, rebooting in
 single-user mode before doing the installworld requires me to move to the
 hosting center.

Or set up a serial console so you don't have to in future
(recommended).

 Documentation mentions that a reboot in single-user mode is necessary. But
 on the opposite, /usr/src/UPDATING says:
 
  Also, when doing a major release upgrade, it is required that
  you boot into single user mode to do the installworld.
 
 Since this is no major release upgrade, does that mean I can do the
 installworld in multi-user mode?

You can often get away with it, except when you can't.

 I have tested that on a smaller test server yesterday evening, I have even
 done the installworld in running jails, and it worked just fine. Was I lucky
 maybe?

Somewhat.

 Does anyone have a definitive guide to update FreeBSD correctly?

You've already quoted from it.  The same procedure is in the handbook.

Kris

pgpImqN3KYoyf.pgp
Description: PGP signature


Re: Make installworld in single-user mode all the time?

2006-03-23 Thread Russell E. Meek

Philippe Lang wrote:

Hi,

I'd like to patch a production server, with about 10 jails, running FreeBSD
6.0 Release, in order to get FreeBSD 6.0-p6.

Since this server is being hosted on a remote location, rebooting in
single-user mode before doing the installworld requires me to move to the
hosting center.

Documentation mentions that a reboot in single-user mode is necessary. But
on the opposite, /usr/src/UPDATING says:


Also, when doing a major release upgrade, it is required that
you boot into single user mode to do the installworld.


Since this is no major release upgrade, does that mean I can do the
installworld in multi-user mode?

I have tested that on a smaller test server yesterday evening, I have even
done the installworld in running jails, and it worked just fine. Was I lucky
maybe?

Does anyone have a definitive guide to update FreeBSD correctly?

Here is what I did:

--

1) Cleaning
cd /usr/obj 
chflags -R noschg * 
rm -rf 


2) Buildworld  Kernel
cd /usr/src 
make buildworld (/usr/src/UPDATING mentions we should avoid the -j option)

make kernel KERNCONF=MY_KERNEL_CONF


4) When doing a major release upgrade:

reboot in single-user mode
fsck -p 
mount -u / 
mount -a -t ufs 
swapon -a 
adjkerntz -i 


6) Installworld
cd /usr/src 
mergemaster -p 
make installworld 
mergemaster 
 
7) Update jail1

mergemaster -p -D /usr/jails/my_jail1
make installworld DESTDIR=/usr/jails/my_jail1
mergemaster -D /usr/jails/my_jail1
 
8) Update jail2

mergemaster -p -D /usr/jails/my_jail2
make installworld DESTDIR=/usr/jails/my_jail2
mergemaster -D /usr/jails/my_jail2


9) Reboot

--

Regards,

--
Philippe Lang, Ing. Dipl. EPFL
Attik System
rte de la Fonderie 2
1700 Fribourg
Switzerland
http://www.attiksystem.ch

Tel:  +41 (26) 422 13 75 
Fax:  +41 (26) 422 13 76

Email:[EMAIL PROTECTED]
Here is the way I have always perform installworlds.  Although this 
method may be disregarded and unwarranted, it has yet to fail me.


All functions are performed in multi-user mode.



If using kern_securelevel_enable=YES in rc.conf

ee /etc/rc.conf (change kern_securelevel_enable=YES to 
kern_securelevel_enable=NO)




ee /etc/fstab (remove nosuid,noexec from /tmp if applied)

I have noticed installworld issues if noexec / nosuid are applied to 
mounted /tmp.


-

su -

cd /usr/obj
rm -rf *

cd /usr/src

cvsup -g -L2 -h freebsd11.cvsup.org /root/cvsup file

Place kernel file in /usr/src/sys/arch/conf

make buildworld  make buildkernel KERNCONF=kernel name  make 
installkernel KERNCONF=kernel name  mergemaster -p


reboot

cd /usr/src/

make installworld  mergemaster

ee /etc/rc.conf (change kern_securelevel_enable=NO to 
kern_securelevel_enable=YES)


ee /etc/fstab (add your nodev,noexec,nosuid tags to /tmp)

reboot

cd /usr/obj/
rm -rf *

cd /usr/src/

make cleandir; make cleandir

---

I picked this method (most of it) up off of taosecurity.  I have used it 
countless times with no issues whatsoever on remote servers.


Thanks,

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


chpass shell change problem

2006-03-23 Thread Perica Veljanovski

Hi,

I installed fbsd 6.0 for the fist time, and cannot get chpass user to 
change the Shell to /usr/local/bin/bash !


Whenever I change the shell line and save, i get:
chpass: user information unchanged
The Shell line is changed, but the db is not update apparently!?

note: bash is installed and working properly.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: chpass shell change problem

2006-03-23 Thread Michel Le Cocq

pw usermod toto -s /usr/local/bin/bash

Michel Le Cocq
Administrateur Reseau Laga-Lipn



Perica Veljanovski wrote:

Hi,

I installed fbsd 6.0 for the fist time, and cannot get chpass user 
to change the Shell to /usr/local/bin/bash !


Whenever I change the shell line and save, i get:
chpass: user information unchanged
The Shell line is changed, but the db is not update apparently!?

note: bash is installed and working properly.


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


net-im is not in my supfile..

2006-03-23 Thread Mark Jayson Alvarez
Hi,
 
 I'm trying to install the latest jabberd but first I would like to cvsup the 
latest ports tree. I only want the ports-net-im to speed up the process, 
however, to my surprise, net-im is not in my 
/usr/share/example/cvsup/ports-supfile. Adding that line and commenting 
ports-all doesn't make any difference..
 
 I'm trying to read this link but I'm not sure really what to do..
 
 http://www.freebsd.org/doc/en/articles/committers-guide/ports.html#Q12.4.1.
 
 please help... thanks.
 
 

-
Yahoo! Messenger with Voice. PC-to-Phone calls for ridiculously low rates.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Size of /pub/FreeBSD ?

2006-03-23 Thread Frank Bonnet

Hello

For internal use I need to mirror the /pub/FreeBSD tree
anyone could give the approx size of it ?

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


Re: net-im is not in my supfile..

2006-03-23 Thread Erik Norgaard

Mark Jayson Alvarez wrote:

Hi,
 
 I'm trying to install the latest jabberd but first I would like to cvsup the latest ports tree. I only want the ports-net-im to speed up the process, however, to my surprise, net-im is not in my /usr/share/example/cvsup/ports-supfile. Adding that line and commenting ports-all doesn't make any difference..
 
 I'm trying to read this link but I'm not sure really what to do..
 
 http://www.freebsd.org/doc/en/articles/committers-guide/ports.html#Q12.4.1.
 
 please help... thanks.


Unless you're REALLY low on diskspace just cvsup ports-all instead of 
removing categories you don't want.


Cheers, Erik

--
Ph: +34.666334818  web: www.locolomo.org
S/MIME Certificate: www.daemonsecurity.com/ca/8D03551FFCE04F06.crt
Subject ID:  9E:AA:18:E6:94:7A:91:44:0A:E4:DD:87:73:7F:4E:82:E7:08:9C:72
Fingerprint: 5B:D5:1E:3E:47:E7:EC:1C:4C:C8:3A:19:CC:AE:14:F5:DF:18:0F:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: net-im is not in my supfile..

2006-03-23 Thread Kenyon Ralph
On 3/23/06, Mark Jayson Alvarez [EMAIL PROTECTED] wrote:
  I'm trying to install the latest jabberd but first I would like to cvsup the 
 latest ports tree. I only want the ports-net-im to speed up the process, 
 however, to my surprise, net-im is not in my 
 /usr/share/example/cvsup/ports-supfile. Adding that line and commenting 
 ports-all doesn't make any difference..

Why not leave ports-all uncommented and ports-* commented?  That will
give you the whole ports collection.  You really don't need to change
anything in that file except the *default host line.  See
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


System hangs displaying 'ata4 : DISCONNECT required'

2006-03-23 Thread freebsd
Hi,

I ran into a problem that I don't know how to diagnose.
I got a FreeBSD 6.0 box using an Adaptec SATA (fake)RAID 1210SA. Two 250
GB Maxtor hard drives are connected to this card, as a RAID1 mirror, and
the resulting filesystem is correctly mounted and NFS exported.
When the traffic rises on those disks, especially when I copy a big file
(around 700 MB or so) on the exported file system, the system hangs
displaying ata4 : DISCONNECT required. ata4 is the first SATA controller
on the Adaptec card. The card and the disks are brand new, and the
motherboard is a Tyan Tiger LE (dual Pentium 3).
Do you have any clue, or just maybe a way to analyse this problem ?

Thanks in advance for any advices or clues.

Best Regards,

Guillaume de Vinzelles


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


Re: Size of /pub/FreeBSD ?

2006-03-23 Thread Dimitar Vasilev
2006/3/23, Frank Bonnet [EMAIL PROTECTED]:
 Hello

 For internal use I need to mirror the /pub/FreeBSD tree
 anyone could give the approx size of it ?

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

600G should be fine for about a year. use rsync to mirror from the
closest available mirror.

--
Димитър Василев
Dimitar Vassilev

GnuPG key ID: 0x4B8DB525
Keyserver: pgp.mit.edu
Key fingerprint: D88A 3B92 DED5 917E 341E D62F 8C51 5FC4 4B8D B525
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: chpass shell change problem

2006-03-23 Thread Perica Veljanovski

I rebooted the box and now everything is ok!

chpass user changes work now :)

Michel Le Cocq wrote:

pw usermod toto -s /usr/local/bin/bash

Michel Le Cocq
Administrateur Reseau Laga-Lipn



Perica Veljanovski wrote:


Hi,

I installed fbsd 6.0 for the fist time, and cannot get chpass user 
to change the Shell to /usr/local/bin/bash !


Whenever I change the shell line and save, i get:
chpass: user information unchanged
The Shell line is changed, but the db is not update apparently!?

note: bash is installed and working properly.



___
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: Size of /pub/FreeBSD ?

2006-03-23 Thread Frank Bonnet

Dimitar Vasilev wrote:

2006/3/23, Frank Bonnet [EMAIL PROTECTED]:

Hello

For internal use I need to mirror the /pub/FreeBSD tree
anyone could give the approx size of it ?

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


600G should be fine for about a year. use rsync to mirror from the
closest available mirror.



Ouch ! I think I'll only mirror 6.x data

thank you !


Frank Bonnet

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


Re: Upgrading to n-STABLE or RELENG_x

2006-03-23 Thread Erik Trulsson
On Thu, Mar 23, 2006 at 12:16:23PM +0100, Andreas Davour wrote:
 On Wed, 22 Mar 2006, Kris Kennaway wrote:
 
 On Wed, Mar 22, 2006 at 11:37:54PM +0100, Andreas Davour wrote:
 On Wed, 22 Mar 2006, Kris Kennaway wrote:
 
 On Wed, Mar 22, 2006 at 01:34:14PM -0500, daniel wrote:
 FreeBSD will occasionally release security advisories detailing the
 badness
 surrounding a single package and will often include the following as the
 solution:
 
  1) Upgrade your vulnerable system to 4-STABLE, 5-STABLE, or 6-STABLE,
  or to the RELENG_6_0, RELENG_5_4, RELENG_5_3, RELENG_4_11, or
  RELENG_4_10 security branch dated after the correction date.
 
 What does this mean?  And how do I do it?
 
 Both questions are answered in the handbook.
 
 They are, but why is 6-STABLE even mentioned since RELENG_6 is the cvs
 tag? Or are there a 6-STABLE tag as well?
 
 They are different names for the same thing.
 
 Let me rephrase it. Is it not uneccesary to mention 6-STABLE, since 
 RELENG_6 is the same thing, and the only string you'll ever use when 
 doing the upgrade the advisory advice is in fact RELENG_6?

If RELENG_6 had been mentioned in the quote above it would have been
unnecessary to also mention 6-STABLE, but since RELENG_6 was not mentioned,
it was not redundant to mention 6-STABLE.

One could argue that RELENG_6 should be used *instead* of 6-STABLE, but that
is another question.

 
 It seems redundant, as they are as you say just different names for the 
 same thing, but RELENG_6 is the only one actually used when cvsup'ing?
 
 Maybe freebsd-question is not the right forum for this discussion 
 anyway.

If it relates to FreeBSD, and you are not sure which is the right place to
ask a question, then freebsd-questions@ is the right place.
(If it belongs elsewhere somebody will probably direct you there.)


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


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Alex Zbyslaw

Steve Camp wrote:


What brand / make / model ATA / SATA hard disks do you prefer?

I am looking to purchase some SATA disks in the 160 - 300GB size.
I got a good deal (I think) on a Samsung OEM 250GB disk for $95 at my
local MicroCenter, but read on the web a few days later one gamer /
system builder / geeks-on-call type that he had *4* Samsung OEM disks
all die on him.  So he swore off Samsung.

So whom do you like / recommend?
 

For any brand of disk you will always find *someone* who has had 
trouble.  A single report by someone you don't know is statistically 
insignificant.  4 disks out of how many?  How were they treated before 
they died?  How quickly did they die?  If you can find multiple reports 
like that, then maybe you're on to something.  I have three Samsung 
disks (bargain bucket 160Gb SATA for Windows, and a 200Gb and 250Gb 
SATAII running at SATAI).  I can say that they have been fine for me for 
9 months (touch wood), but that's not worth much either :-)


The sad fact is, that some proportion of hard disks pass quality control 
but still contrive to die.  *Mostly*, a disk that going to die, does so 
quite quickly.  Advice I have seen is that you burn the disk in (run 
benchmarks for 48 hours non-stop, say.  Maybe even a week).  And don't 
trust the disk for a month.  If it's still going after that then it'll 
probably last for years as long as you don't let them overheat.  If it 
dies, that's what the warranty is for!


If there is a serious problem with a particular disk model, then google 
will find it for you.  IBM discovered this to their cost when one of 
their Deskstar models turned out to be scrap disguised as a disk, and 
got a Class action lawsuit in return.  Then they sold the Deskstar line 
to Hitachi :-)  FWIW, my only Deskstar (pre-dating the dodgy model) is 
still going after 5+ years, and my only Hitachi (successor to Deskstar) 
is the same age as Samsungs, and fine too.


If I were going to run RAID-1, I would pick two disks of the same size 
but different brands (Samsung and Hitachi 250Gb say).  If you buy two 
disks of the same brand at the same time from the same supplier, it 
always seems to me that you increase the chance that a) they come from 
the same batch b) therefore if one has some production-line-related 
fault, the other is more likely to have the same fault.


--Alex

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


which controllers(devices) to disable in kernel?

2006-03-23 Thread Perica Veljanovski

Hi,

I bought a new pc with GIGABYTE GA-K8VT800 VIA K8T800 mother board (has 
ata, sata, raid) and a SATA IBM HDD and installed FreeBSD 6.0.


I'm building a custom kernel and I was wondering which 
controllers(devices) I need for my new kernel to support my motherboard 
properly?

Is there a way to see which devices my pc uses from the GENERIC kernel?

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

Re: Continuing Server Crash Saga!

2006-03-23 Thread Alex Zbyslaw

Grant Peel wrote:

I am hoping someone here will tell me upgrading from 6.0 to 6.1 would 
be a trivial task, posing minimal danger, and perhaps point me to a 
decent tutorial or how to ...


Upgrading within a major release, while not trivial, is really not hard 
either as long as *you follow the instructions*.  The handbook has the 
howto.  However, I would still take backups of the system directories 
before upgrading (/ /usr probably /var).  The shortened version can be 
found in /usr/src/UPDATING.

--Alex

PS Do you really *need* quotas?  They won't do much for your performance.

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


Re: sound on Compaq Presario (and kernel question)

2006-03-23 Thread Anna Davour

On Wed, 22 Mar 2006, Ariff Abdullah wrote:


You left out options PREEMPTION in your kernel, which is pretty much
*mandatory* for snd_atiixp driver. Put it back, recompile your kernel,
and try again.


Thanks. It works now!

/wokka
--
Doktorand, Institutionen för kärn- och partikelfysik
Uppsala universitet
http://www3.tsl.uu.se/~akesson/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: which controllers(devices) to disable in kernel?

2006-03-23 Thread Chuck Swiger
Perica Veljanovski wrote:
 I bought a new pc with GIGABYTE GA-K8VT800 VIA K8T800 mother board (has
 ata, sata, raid) and a SATA IBM HDD and installed FreeBSD 6.0.
 
 I'm building a custom kernel and I was wondering which
 controllers(devices) I need for my new kernel to support my motherboard
 properly?

You can comment out the things you don't need which you know you don't need, and
test that kernel and see whether you're happy with it.

 Is there a way to see which devices my pc uses from the GENERIC kernel?

Take a look at dmesg, it will show all of the devices as they are recognized
and configured.

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


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Robert Huff

Alex Zbyslaw writes:

  IBM discovered this to their cost when one of their Deskstar
  models turned out to be scrap disguised as a disk, and got a
  Class action lawsuit in return.  Then they sold the Deskstar line
  to Hitachi :-)

Did they only sell the Deskstar line?  I heard it was the
entire disk drive operation, and I have had excellent results with
their SCSI products.


Robert Huff


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


undefined variable error on startup

2006-03-23 Thread Troy
I'm trying to track down an error I see upon booting.

Mar 18 14:49:01 server term: Undefined variable

I'm not sure what file and what term variable is being set so I can
comment it out.  Any help on how I can track this down I'd appreciate.

Thanks,

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


Re: Size of /pub/FreeBSD ?

2006-03-23 Thread Nathan Vidican

Frank Bonnet wrote:

Hello

For internal use I need to mirror the /pub/FreeBSD tree
anyone could give the approx size of it ?

Thank you


Not sure myself, but at a suggested some 600GB...

I might suggest you only mirror the portions you need; ie: if you only have i386 
hardware, only mirror i386 distros/packages... what's the sense in mirroring 
sparc, or amd64, or alpha sets if you don't need them internally.



--
Nathan Vidican
[EMAIL PROTECTED]
Windsor Match Plate  Tool Ltd.
http://www.wmptl.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: LOR when booting CURRENT (ip_divert.c, PFil hook read/write mutex)

2006-03-23 Thread Robert Huff

Bjoern A. Zeeb writes:

   When booting recent current I get LOR:
  
  lock order reversal:
1st 0xc23d5090 inp (divinp) @ sys/netinet/ip_divert.c:327
2nd 0xc07f21d8 PFil hook read/write mutex (PFil hook read/write mutex) @ 
 sys/net/pfil.c:73
  
  added this LOR with # 181 to 'the LOR page':
   http://sources.zabbadoz.net/freebsd/lor.html#181

This is almost certainly the same as #163, and is PR'd at

http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/86427;

Robert Watson is working on this, though the last entry for the
PR is over five weeks old.



Robert Huff


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


RE: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Tamouh H.
 If I were going to run RAID-1, I would pick two disks of the 
 same size but different brands (Samsung and Hitachi 250Gb 
 say).  If you buy two disks of the same brand at the same 
 time from the same supplier, it always seems to me that you 
 increase the chance that a) they come from the same batch b) 
 therefore if one has some production-line-related fault, the 
 other is more likely to have the same fault.
 
 --Alex
 

Actually, this is an excellent advise for the fact mentioned above, and as well 
some RAID-1 controllers actually malfunction when one of the two identical 
disks goes bad. So you'll have to physically disconnect the bad disk from the 
card. This happened to me on a Promise Controller. You'll even see a notice 
about it in the new Promise controllers User Guide !

Tamouh


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


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Nathan Vidican

Steve Camp wrote:

What brand / make / model ATA / SATA hard disks do you prefer?

I am looking to purchase some SATA disks in the 160 - 300GB size.
I got a good deal (I think) on a Samsung OEM 250GB disk for $95 at my
local MicroCenter, but read on the web a few days later one gamer /
system builder / geeks-on-call type that he had *4* Samsung OEM disks
all die on him.  So he swore off Samsung.

So whom do you like / recommend?

I'm currently organizing a list in my mind that looks something like:

#1 Seagate Barracuda SATA disks
#2 Hitachi Deskstar (formerly IBM)
#3 Fujitsu (models not known)
#4,5,6 Maxtor, Samsung, Western Digital

Intended use is for a server (NFS, maybe SAMBA) in a RAID-1 (mirrored)
configuration.  I am thinking of using an ASUS A8V, A8V-E SE, or one
of the A8N Nvidia Nforce4 motherboards.  OSes to include:  FreeBSD,
Linux, Winbloze (maybe).

Your experiences, expertise, recommendations are most welcome.

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




Hands down, WD or Maxtor for S-ATA drives. Have had problems with S-ATA drives 
made by Seagate, and frankly - just don't trust them. Be careful if using RAID 
arrays though, Western Digital in particular because there are different drive 
models/firmware if using RAID or not (changes the error-correction algorithm).


Performance wise - WD's Raptor series, or (in larger capacities, ie 250/320gb 
s-ata) 'SD'-model'd drives (RAID edition) have been great for us. I've got at 
least 30 servers running WD drives in RAID arrays.


--
Nathan Vidican
[EMAIL PROTECTED]
Windsor Match Plate  Tool Ltd.
http://www.wmptl.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Cheap FreeBSD hosting?

2006-03-23 Thread Nathan Vidican

Scott I. Remick wrote:

Well it seems my perfect FreeBSD webhost, which had great service, great
features, and a great support community has been sold-out to a large
webhost consolidation company with a reputation for ruining every company
they buy. They'll also be switching from FreeBSD to Linux.

Since I desire to eat my own dogfood and continue to have my sites and
pages Powered by FreeBSD I am back in the market looking for a new
webhost.

Currently I pay about $8/month for 12GB of storage, 300GB of
bandwidth/month, and 5 MySQL databases. I need at least 4 databases
(preferably more), and currently average 200-300MB/month transfer
(although I peaked last year one month at 6GB for the month, but that's
rare). I currently use 2.5GB but my space needs will gradually increase.

I'd like to find a comparable plan at a webhost that uses FreeBSD servers.
Pair is out of my league. I've had bad previous experience with iPowerWeb.
Any others?

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




Personally, I go the dedicated server route; you can get a decent dedicated or 
semi-dedicated FreeBSD server for less than $50 if you want cheap... average 
rate runs about $100/month for a dedicated server though.


--
Nathan Vidican
[EMAIL PROTECTED]
Windsor Match Plate  Tool Ltd.
http://www.wmptl.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Size of /pub/FreeBSD ?

2006-03-23 Thread Dimitar Vasilev
2006/3/23, Nathan Vidican [EMAIL PROTECTED]:
 Frank Bonnet wrote:
  Hello
 
  For internal use I need to mirror the /pub/FreeBSD tree
  anyone could give the approx size of it ?
 
  Thank you

 Not sure myself, but at a suggested some 600GB...
See http://lists.freebsd.org/pipermail/freebsd-hubs/2006-March/001415.html
On the Bulgarian mirror we push close 350G now.
Make a difference between a full mirror and a local copy for your needs.
--
Димитър Василев
Dimitar Vassilev

GnuPG key ID: 0x4B8DB525
Keyserver: pgp.mit.edu
Key fingerprint: D88A 3B92 DED5 917E 341E D62F 8C51 5FC4 4B8D B525
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Alex Zbyslaw

Robert Huff wrote:


Alex Zbyslaw writes:

 


IBM discovered this to their cost when one of their Deskstar
models turned out to be scrap disguised as a disk, and got a
Class action lawsuit in return.  Then they sold the Deskstar line
to Hitachi :-)
   



Did they only sell the Deskstar line?  I heard it was the
entire disk drive operation, and I have had excellent results with
their SCSI products.
 

I'm sure they did sell everything, but it wouldn't have had the same 
dramatic effect to say that :-)  IMHO, the duff deskstar was an anomaly 
and it certainly wouldn't (and hasn't!) put me off buying Hitachi.


--Alex

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


Linux migration

2006-03-23 Thread Wayne
Hey Guys,

Can anybody point me to some good resources on mingrating from Linux to
FreeBSD?
Since the threads issue which would have had detrimental effects on MySQL on
FreeBSD has been sorted out with FreeBSD 5 we are looking at the possibility
of migrating from RHEL to FreeBSD for our web services.
Does anybody have any links to some good resources on migration from Linux
to FreeBSD, I know google is my friend but I was hoping that some folks on
here might have an idea of 'best of' that I can use for presenting the
case...

Thanks,
 Wayne


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


Re: mysql start on boot

2006-03-23 Thread Lowell Gilbert
eoghan [EMAIL PROTECTED] writes:

 Can I add something to my rc.conf to have mysql start at boot,
 something like:
 mysql_enable=YES?

That or something like it, yes.  See the script that the port added to
the startup directory (/usr/local/etc/rc.d).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread David Kelly
On Thu, Mar 23, 2006 at 01:45:39PM +, Alex Zbyslaw wrote:
 
 I'm sure they did sell everything, but it wouldn't have had the same
 dramatic effect to say that :-)  IMHO, the duff deskstar was an
 anomaly and it certainly wouldn't (and hasn't!) put me off buying
 Hitachi.

Ditto. IBM screwed up for a while about 5 years ago, got their act
together, and decided they no longer wanted to be in that business.

I've had better luck with IBM/Hitachi and Seagate than Maxtor. Had a
really bad time way way back with some 230 MB (yes, million) Western
Digital drives and haven't been interested enough in a WD offering since
to give them another try.

Having said that, have (4) 300G Seagate drives coming today, (2) ATA,
(2) SATA. Have probably jinxed myself and those drives.

-- 
David Kelly N4HHE, [EMAIL PROTECTED]

Whom computers would destroy, they must first drive mad.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Linux migration

2006-03-23 Thread Daniel A.
On 3/23/06, Wayne [EMAIL PROTECTED] wrote:
 Hey Guys,

 Can anybody point me to some good resources on mingrating from Linux to
 FreeBSD?
 Since the threads issue which would have had detrimental effects on MySQL on
 FreeBSD has been sorted out with FreeBSD 5 we are looking at the possibility
 of migrating from RHEL to FreeBSD for our web services.
 Does anybody have any links to some good resources on migration from Linux
 to FreeBSD, I know google is my friend but I was hoping that some folks on
 here might have an idea of 'best of' that I can use for presenting the
 case...

 Thanks,
  Wayne


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

It really depends.
If your setup is exotic and complex, I dont think you will ever be
able to find a guide. On the other hand, if your setup is simple (eg,
PHP+Apache+MySQL, not clustered) then the migration is so simple, you
wont even need a guide.

Your best bet is to set up a box with FreeBSD, configure it to your
liking, install the software you need, and just simply copy over the
configuration files, database files and user files over to the FreeBSD
box.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Linux migration

2006-03-23 Thread ovidiu

Daniel A. wrote:


On 3/23/06, Wayne [EMAIL PROTECTED] wrote:
 


Hey Guys,

Can anybody point me to some good resources on mingrating from Linux to
FreeBSD?
Since the threads issue which would have had detrimental effects on MySQL on
FreeBSD has been sorted out with FreeBSD 5 we are looking at the possibility
of migrating from RHEL to FreeBSD for our web services.
Does anybody have any links to some good resources on migration from Linux
to FreeBSD, I know google is my friend but I was hoping that some folks on
here might have an idea of 'best of' that I can use for presenting the
case...

Thanks,
Wayne


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

   


It really depends.
If your setup is exotic and complex, I dont think you will ever be
able to find a guide. On the other hand, if your setup is simple (eg,
PHP+Apache+MySQL, not clustered) then the migration is so simple, you
wont even need a guide.

Your best bet is to set up a box with FreeBSD, configure it to your
liking, install the software you need, and just simply copy over the
configuration files, database files and user files over to the FreeBSD
box.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

 


Here is a resource

http://www.freebsdonline.com/index.php?option=com_contenttask=viewid=30Itemid=46

with all needed packages to run under your webserver CMS software like 
Mambo or Joomla.


If you use other version than 5.4, the packages versions might differ, 
but you can find the correct version by ftping to freebsd.org



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


Re: Linux migration

2006-03-23 Thread Wayne
Hi Daniel,

Thanks for your email. I have already done this, but I was looking more
From the perspective of other companies who have done similar, case studies
type things. Would help me out a great deal with my presentation.

Also another thing that I was thinking about since my original mail, things
like chkconfig and commands like say 'service network restart'. Does such a
thing like a redhat layer type project exist so that emgineers who must
convert to freebsd have as much of the day to day commands available to them
while retraining?

Higher ups like knowing things will be as smooth as possible and most of the
inhouse experience is with RHEL so I don't want to end up lumping a lot of
extra work on the people with freebsd experience...

Thanks,
 Wayne


On 23/03/2006 14:35, Daniel A. [EMAIL PROTECTED] wrote:

 On 3/23/06, Wayne [EMAIL PROTECTED] wrote:
 Hey Guys,
 
 Can anybody point me to some good resources on mingrating from Linux to
 FreeBSD?
 Since the threads issue which would have had detrimental effects on MySQL on
 FreeBSD has been sorted out with FreeBSD 5 we are looking at the possibility
 of migrating from RHEL to FreeBSD for our web services.
 Does anybody have any links to some good resources on migration from Linux
 to FreeBSD, I know google is my friend but I was hoping that some folks on
 here might have an idea of 'best of' that I can use for presenting the
 case...
 
 Thanks,
  Wayne
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 It really depends.
 If your setup is exotic and complex, I dont think you will ever be
 able to find a guide. On the other hand, if your setup is simple (eg,
 PHP+Apache+MySQL, not clustered) then the migration is so simple, you
 wont even need a guide.
 
 Your best bet is to set up a box with FreeBSD, configure it to your
 liking, install the software you need, and just simply copy over the
 configuration files, database files and user files over to the FreeBSD
 box.
 
 --
 ** Email Scanned by Elive's Virus Scanning Service -
 http://www.elive.net **
 
 
 
 


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


Re: Remote Single User Mode?

2006-03-23 Thread Eric Schultz

Kris Kennaway wrote:

On Wed, Mar 22, 2006 at 10:11:48AM -0800, Chris Maness wrote:

I administer this box by remote.


Look into setting up a serial console; this is the remote single user
mode you're looking for.


Good morning...

How remote is remote?

If it's just down the hall you can probably get a DB25/DB9 (depending on 
the machine) to RJ45 adapter and use existing CAT5 cable to get to a 
serial console to your desk.  There even exist serial RJ45 switch boxes 
if you have several machines to remote administer.


If it's farther than that, like in another building/city/etc. you can 
always setup a modem on the box's serial port and dial in to that. 
You'll need a modem at your end too, which means either an analog line 
or a analog-to-digital tap for your office phone.


I have no idea whether there any serial-over-IP solutions.  But you 
could build one with FreeBSD!!!


--
Headed for the second star to the right and straight on 'til morning...

  Eric Schultz
  (aka Storkman)

Photos: http://community.webshots.com/user/schultznet
Homepage: http://www.schultznet.ca
Blog: http://schultznet.blogspot.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Availability of a journaling file system

2006-03-23 Thread Mike Jeays
On Thu, 2006-03-23 at 06:50 +, Martin Hepworth wrote:
 Hi
 
 in freebsd this is called softupdates and can be enables using tunefs (see
 the man page).
 
 If not quite journaling as it does things slightly differently, but achieves
 many of the same effects, like reduced fsck time on boot.
 
 --
 martin
 
 On 3/22/06, Luiz Eduardo Guida Valmont [EMAIL PROTECTED] wrote:
 
  I've had some problems earlier this year due to FreeBSD-6.0 crashing
  after a few hours of execution (perhaps it's mal-functioning hd's dma,
  but - simply put - I can't install FreeBSD 2 or 3 times a day to find
  out! ^^). And so I thought of journaling file systems.
 
  I think XFS is being ported to FreeBSD, but last news on the official
  page (http://people.freebsd.org/~rodrigc/xfs/) dates from December
  12th, 2005 (and it's still read-only). So...
 
  Is there a journaling file system (rw ready) available? Which one?
 
  Another question: how can I completly diable hd dma? -.-
 
  --
  []'s,
  Luiz Eduardo
 
  ___
  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]

You can disable DMA with the atacontrol command: for example

atacontrol mode ad0 pio4

I have a Maxtor 40GB which won't work in DMA mode with FreeBSD, although
it seems fine with other OSes.  There is a hefty perfomance hit, of
course!


-- 
Mike Jeays
http://ca.geocities.com/[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: Linux migration

2006-03-23 Thread Jerry McAllister
 
 Hi Daniel,
 
 Thanks for your email. I have already done this, but I was looking more
 From the perspective of other companies who have done similar, case studies
 type things. Would help me out a great deal with my presentation.
 
 Also another thing that I was thinking about since my original mail, things
 like chkconfig and commands like say 'service network restart'. Does such a
 thing like a redhat layer type project exist so that emgineers who must
 convert to freebsd have as much of the day to day commands available to them
 while retraining?

If you really want to run in RedHat land, then just run RedHat.
FreeBSD has its own tools - some of them with the same or similar name
and some different that will do what you need just fine.  But they won't 
turn FreeBSD in to RedHat.   Probably it will be better.

jerry

 
 Higher ups like knowing things will be as smooth as possible and most of the
 inhouse experience is with RHEL so I don't want to end up lumping a lot of
 extra work on the people with freebsd experience...
 
 Thanks,
  Wayne
 
 
 On 23/03/2006 14:35, Daniel A. [EMAIL PROTECTED] wrote:
 
  On 3/23/06, Wayne [EMAIL PROTECTED] wrote:
  Hey Guys,
  
  Can anybody point me to some good resources on mingrating from Linux to
  FreeBSD?
  Since the threads issue which would have had detrimental effects on MySQL 
  on
  FreeBSD has been sorted out with FreeBSD 5 we are looking at the 
  possibility
  of migrating from RHEL to FreeBSD for our web services.
  Does anybody have any links to some good resources on migration from Linux
  to FreeBSD, I know google is my friend but I was hoping that some folks on
  here might have an idea of 'best of' that I can use for presenting the
  case...
  
  Thanks,
   Wayne
  
  
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
  
  It really depends.
  If your setup is exotic and complex, I dont think you will ever be
  able to find a guide. On the other hand, if your setup is simple (eg,
  PHP+Apache+MySQL, not clustered) then the migration is so simple, you
  wont even need a guide.
  
  Your best bet is to set up a box with FreeBSD, configure it to your
  liking, install the software you need, and just simply copy over the
  configuration files, database files and user files over to the FreeBSD
  box.
  
  --
  ** Email Scanned by Elive's Virus Scanning Service -
  http://www.elive.net **
  
  
  
  
 
 
 ___
 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: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Andrew Pantyukhin
Nowadays, there's only one truth: any hard disk is going
to fail under load pretty soon.

Apart from that, keeping disks cooler helps. Using disks
from different manufacturers in redundant arrays helps.
Keeping an eye on smart data helps.

Seagate, Maxtor, WD, Samsung, Hitachi/IBM - all have
their pros and cons. Each manufacturer has its place
both in a desktop PC and in a high-end cluster.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sendmail patch

2006-03-23 Thread DAve

Steve Bertrand wrote:

bash-2.05b# uname -a
FreeBSD web6.tls.net 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE 
#0: Mon Feb 

23
20:45:55 GMT 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

I did,
bash-2.05b# cvsup standard-supfile
bash-2.05b# cd /usr/src
bash-2.05b# patch  /path/to/patch
bash-2.05b# cd /usr/src/lib/libsm
bash-2.05b# make obj  make depend  make

and I get this,
bash-2.05b# make
/usr/src/lib/libsm/Makefile, line 11: Malformed conditional 
(${MK_INET6_SUPPORT} != no) 
/usr/src/lib/libsm/Makefile, line 13: 
if-less endif /usr/src/lib/libsm/Makefile, line 13: Need 

an operator

make: fatal errors encountered -- cannot continue

I used the patch for 4.11 and 5.3

Anyone got any ideas?

DAve
That's two servers with the same error. My 4.X server did 
just fine, as did my 5.4 servers. All my toasters run qmail, 
so of eleven servers, these two are all I have left to do.


The Makefile looks fine, I'm missing something obvious here. 
Google comes up empty handed.


I don't know if it will help or not, but following is the entire
/usr/src/lib/libsm/Makefile from: 


The issue is make fails on the test at line 13 which is the test for 
INET6. I can comment out the test and the next makefile fails for the 
same reason, on other tests.


Your Makefile reads,
.if !defined(NO_INET6)
CFLAGS+=-DNETINET6
.endif

My Makefile reads,
.if ${MK_INET6_SUPPORT} != no
CFLAGS+=-DNETINET6
.endif

My 4.8 Makfile does not have the INET6 test.

I've never seen this before, kinda odd. Maybe it's because I updated 
source, but I am only building sendmail. I had to update my source 
because the supplied patch fails against FBSD 5.2.1. If I gotta build 
world or something silly to fix this I'd just as soon start over with 
5.4 or another MTA.


It just really seems like a simple make issue to me.

DAve



imap# uname -a
FreeBSD imap.eagle.ca 6.0-RELEASE-p5 FreeBSD 6.0-RELEASE-p5 #0: Wed Mar
8 09:39:13 EST 2006


--- start file ---

# $FreeBSD: src/lib/libsm/Makefile,v 1.9 2005/06/07 04:18:25 gshapiro
Exp $

SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
.PATH:  ${SENDMAIL_DIR}/libsm

CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
CFLAGS+=-DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL

.if !defined(NO_INET6)
CFLAGS+=-DNETINET6
.endif

# User customizations to the sendmail build environment
CFLAGS+=${SENDMAIL_CFLAGS}

LIB=sm
 


SRCS+=  sm_os.h

SRCS+=  assert.c debug.c errstring.c exc.c heap.c match.c rpool.c \

strdup.c strerror.c strl.c clrerr.c fclose.c feof.c ferror.c \

fflush.c fget.c fpos.c findfp.c flags.c fopen.c fprintf.c \

fpurge.c fput.c fread.c fscanf.c fseek.c fvwrite.c fwalk.c \

fwrite.c get.c makebuf.c put.c refill.c rewind.c setvbuf.c \

smstdio.c snprintf.c sscanf.c stdio.c strio.c ungetc.c \

vasprintf.c vfprintf.c vfscanf.c vprintf.c vsnprintf.c \

wbuf.c wsetup.c string.c stringf.c \

xtrap.c strto.c test.c path.c strcasecmp.c strrevcmp.c \

signal.c clock.c config.c sem.c shm.c mbdb.c strexit.c cf.c
ldap.c \
niprop.c mpeix.c

CLEANFILES+=sm_os.h

INTERNALLIB=

sm_os.h:
ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h

.include bsd.lib.mk

--- end file ---


DAve


--
This message was checked by forty monkeys and found to not 
contain any SPAM whatsoever.


Your monkeys may vary
___
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]





--
This message was checked by forty monkeys and
found to not contain any SPAM whatsoever.

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


Re: Linux migration

2006-03-23 Thread Wayne



On 23/03/2006 14:54, Jerry McAllister [EMAIL PROTECTED] wrote:
 If you really want to run in RedHat land, then just run RedHat.
 FreeBSD has its own tools - some of them with the same or similar name
 and some different that will do what you need just fine.  But they won't
 turn FreeBSD in to RedHat.   Probably it will be better.
 
 jerry
 

That's a fair point jerry, I was just wondering if something like that
existed. I prefer a lot of parts of FreeBSD to RHEL especially dealing with
the kernel. It was just a thought..
Thanks all the same for you input though..

Regards,
 Wayne


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


Re: Availability of a journaling file system

2006-03-23 Thread ovidiu

Mike Jeays wrote:


On Thu, 2006-03-23 at 06:50 +, Martin Hepworth wrote:
 


Hi

in freebsd this is called softupdates and can be enables using tunefs (see
the man page).

If not quite journaling as it does things slightly differently, but achieves
many of the same effects, like reduced fsck time on boot.

--
martin

On 3/22/06, Luiz Eduardo Guida Valmont [EMAIL PROTECTED] wrote:
   


I've had some problems earlier this year due to FreeBSD-6.0 crashing
after a few hours of execution (perhaps it's mal-functioning hd's dma,
but - simply put - I can't install FreeBSD 2 or 3 times a day to find
out! ^^). And so I thought of journaling file systems.

I think XFS is being ported to FreeBSD, but last news on the official
page (http://people.freebsd.org/~rodrigc/xfs/) dates from December
12th, 2005 (and it's still read-only). So...

Is there a journaling file system (rw ready) available? Which one?

Another question: how can I completly diable hd dma? -.-

--
[]'s,
Luiz Eduardo

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



You can disable DMA with the atacontrol command: for example

atacontrol mode ad0 pio4

I have a Maxtor 40GB which won't work in DMA mode with FreeBSD, although
it seems fine with other OSes.  There is a hefty perfomance hit, of
course!


 

Did you tried with different ATA cable? I've solved this kind of issues 
every time by changing the cable or by lower-ing the settings for ATA, 
like instead of ATA133 to use ATA100, or ATA66.


#atacontrol list
#atacontrol mode ad0 ATA66

Try that, if it works, try ATA100.
Your hard drive, motherboard and your cable, all must be ATA100 to 
support that speed.





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


Re: Sendmail patch

2006-03-23 Thread Tilman Linneweh


On Mar 23, 2006, at 16:06, DAve wrote:

bash-2.05b# make
/usr/src/lib/libsm/Makefile, line 11: Malformed conditional 
(${MK_INET6_SUPPORT} != no)

/usr/src/lib/libsm/Makefile, line 13:

if-less endif /usr/src/lib/libsm/Makefile, line 13: Need

an operator

make: fatal errors encountered -- cannot continue

I used the patch for 4.11 and 5.3



If upgrading to a supported Release isn't an option, you may get away 
with updating your make before trying to

build the new sendmail.

Another alternative might be, to use the sendmail from the ports 
collection.


regards
tilman

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


Re: Availability of a journaling file system

2006-03-23 Thread Mike Jeays
On Thu, 2006-03-23 at 17:13 +0200, ovidiu wrote:
 Mike Jeays wrote:
 
 On Thu, 2006-03-23 at 06:50 +, Martin Hepworth wrote:
   
 
 Hi
 
 in freebsd this is called softupdates and can be enables using tunefs (see
 the man page).
 
 If not quite journaling as it does things slightly differently, but achieves
 many of the same effects, like reduced fsck time on boot.
 
 --
 martin
 
 On 3/22/06, Luiz Eduardo Guida Valmont [EMAIL PROTECTED] wrote:
 
 
 I've had some problems earlier this year due to FreeBSD-6.0 crashing
 after a few hours of execution (perhaps it's mal-functioning hd's dma,
 but - simply put - I can't install FreeBSD 2 or 3 times a day to find
 out! ^^). And so I thought of journaling file systems.
 
 I think XFS is being ported to FreeBSD, but last news on the official
 page (http://people.freebsd.org/~rodrigc/xfs/) dates from December
 12th, 2005 (and it's still read-only). So...
 
 Is there a journaling file system (rw ready) available? Which one?
 
 Another question: how can I completly diable hd dma? -.-
 
 --
 []'s,
 Luiz Eduardo
 
 ___
 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]
 
 
 
 You can disable DMA with the atacontrol command: for example
 
 atacontrol mode ad0 pio4
 
 I have a Maxtor 40GB which won't work in DMA mode with FreeBSD, although
 it seems fine with other OSes.  There is a hefty perfomance hit, of
 course!
 
 
   
 
 Did you tried with different ATA cable? I've solved this kind of issues 
 every time by changing the cable or by lower-ing the settings for ATA, 
 like instead of ATA133 to use ATA100, or ATA66.
 
 #atacontrol list
 #atacontrol mode ad0 ATA66
 
 Try that, if it works, try ATA100.
 Your hard drive, motherboard and your cable, all must be ATA100 to 
 support that speed.
 
 
 
 

Yes, I tried different cables and different DMA settings.  Only PIO mode
works with this disk, motherboard and FreeBSD.  It used to work with an
earlier version of FreeBSD, I think 4.9.  I don't know if FreeBSD has
been a bit 'over-tuned' to work with this disk, or it is simply a disk
that is starting to go bad.  I don't really want to waste any more time
experimenting with it - I have just put the disk on the shelf for now.
-- 
Mike Jeays
http://ca.geocities.com/[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: Sendmail patch

2006-03-23 Thread DAve

Tilman Linneweh wrote:


On Mar 23, 2006, at 16:06, DAve wrote:

bash-2.05b# make
/usr/src/lib/libsm/Makefile, line 11: Malformed conditional 
(${MK_INET6_SUPPORT} != no)

/usr/src/lib/libsm/Makefile, line 13:

if-less endif /usr/src/lib/libsm/Makefile, line 13: Need

an operator

make: fatal errors encountered -- cannot continue

I used the patch for 4.11 and 5.3



If upgrading to a supported Release isn't an option, you may get away 
with updating your make before trying to

build the new sendmail.

Another alternative might be, to use the sendmail from the ports 
collection.


Arrg! This should not be this difficult. Updating an entire server seems 
like a bit of overkill for a Sendmail patch. Though it is an opportunity 
to go back to 4.X.


Dave

--
This message was checked by forty monkeys and
found to not contain any SPAM whatsoever.

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


e-mail relaying without forwarding the entire message?

2006-03-23 Thread Steve Camp
When one MTA attempts to deliver an e-mail message to another MTA, the
conversation looks something like:

- HELO somedomain.com
- 250 Hello somedomain.com
- MAIL FROM: [EMAIL PROTECTED]

- 250 2.1.0 Sender ok
- RCPT TO: [EMAIL PROTECTED]
- 250 2.1.5 Recipient ok
- DATA
- 354 Enter mail
   ...
   - 250 2.0.0 Message accepted for delivery

My question involves redirecting the sending MTA to a different
receiving MTA.  Rather than the initial receiving MTA having to accept
the entire message (all the DATA) and then forward it on to another
MTA, the initial receiving MTA simply redirects the sending MTA to
another MTA -- preferably the MTA that actually handles the e-mail for
[EMAIL PROTECTED].

The conversation that I envision would look something like:

- MAIL FROM: [EMAIL PROTECTED]
- 250 2.1.0 Sender ok
- RCPT TO: [EMAIL PROTECTED]
- XYZ X.W.V Go See someotherserver.otherdomain.com for [EMAIL PROTECTED]

Is such a redirection possible?

Is it hard to configure?

Have I just described relaying?

It seems to me that such a redirect would be useful (by keeping
bandwidth low on the primary MX for a domain) if an
organization handles such a large volume of e-mail that it has an
e-mail server farm, or if a geographically disparate organization
has multiple e-mail servers all connected directly to the internet
(well, probably each through a separate firewall).

Regards,

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


help: fetchyahoo crash in perl on upgrading to 6.1-PRERELEASE #0

2006-03-23 Thread Rajarajan Rajamani
I am having a crash when trying to use fetchyahoo.
Prior to upgrading my box from 5.4 to 6.1 there was no problem.
After upgrading to 6.1 (and cvsup'ing all the ports) 
I did a portupgrade -fa to recompile all of them.
Now I am having the following problem

 fetchyahoo
Logging in securely via SSL as null_function on Thu Mar 23 10:24:39 2006
Segmentation fault (core dumped)

Using truss I found the following 
 truss /usr/local/bin/fetchyahoo --quiet 
 --configfile=$HOME/.fetchyahoorc-null_function
-- snip --
open(/usr/local/lib/perl5/site_perl/5.8.8/mach/Crypt/SSLeay/CTX.pm,0x0,0666) =
fstat(3,0xbfbfbf10)  = 0 (0x0)
read(0x3,0x807b000,0x1000)   = 54 (0x36)
break(0x8578000) = 0 (0x0)
read(0x3,0x807b000,0x1000)   = 0 (0x0)
close(3) = 0 (0x0)
break(0x8579000) = 0 (0x0)
mmap(0x0,12288,(0x3)PROT_READ|PROT_WRITE,(0x1002)MAP_ANON|MAP_PRIVATE,-1,0x0) =
munmap(0x28286000,0x1000)= 0 (0x0)
break(0x857a000) = 0 (0x0)
break(0x857b000) = 0 (0x0)
break(0x857c000) = 0 (0x0)
break(0x857d000) = 0 (0x0)
break(0x857e000) = 0 (0x0)
stat(/dev/urandom,0xbfbfe1d0)  = 0 (0x0)
open(/dev/urandom,0x0,0666)= 3 (0x3)
read(0x3,0x28284303,0x1) = 1 (0x1)

---The line   read(0x3,0x28284303,0x1) = 1 (0x1)
---is repeated 1024 times before the following segmentation fault

read(0x3,0x28284303,0x1) = 1 (0x1)
close(3) = 0 (0x0)
getpid() = 72949 (0x11cf5)
SIGNAL 11 (SIGSEGV)
SIGNAL 11 (SIGSEGV)
Process stopped because of:  16
process exit, rval = 139
Segmentation fault


I have recompiled perl and all the ports that fetchyahoo uses but to no avail.

Any clues ?

Thanks - I have learnt a lot of stuff from this list.

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


Number of routing tables

2006-03-23 Thread Valerio daelli
Hello
I would like to know if exists a sysctl to get the number of
routing tables in the kernel.
I don't want the list of the routing tables, I just want the number.
The command 'netstat -rn|wc -l' could be a good candidate,
but since I want to implement this command on a very busy router,
I don't want it to go 100% CPU just to get a simple count.
If it doesn't exist I will create something based on netstat's source.
Thanks a million (routes)

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


Re: Linux migration

2006-03-23 Thread Daniel A.
On 3/23/06, Wayne [EMAIL PROTECTED] wrote:



 On 23/03/2006 14:54, Jerry McAllister [EMAIL PROTECTED] wrote:
  If you really want to run in RedHat land, then just run RedHat.
  FreeBSD has its own tools - some of them with the same or similar name
  and some different that will do what you need just fine.  But they won't
  turn FreeBSD in to RedHat.   Probably it will be better.
 
  jerry
 

 That's a fair point jerry, I was just wondering if something like that
 existed. I prefer a lot of parts of FreeBSD to RHEL especially dealing with
 the kernel. It was just a thought..
 Thanks all the same for you input though..

 Regards,
  Wayne


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

Well, basically the point of changing to a different OS is lost if you
try to make the new system act like the old one.
I'm not trying to decide anything for you, but if I were to be in your
situation, I would either switch to FreeBSD because there is a clear
reason for me not to stay with Linux, or because there is a clear
reason for me to prefer FreeBSD. In your case, however, it seems that
neither is clear.

Back on topic.
You could ask the users of the system you are wanting to migrate (The
ones who will be directly affected by the changes) if they are willing
to do things the FreeBSD way instead of the Linux way.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Backup Up On Unreliable Link

2006-03-23 Thread Noah

Hi there,

No response so far on the rdiff-backup mail list.

Does anybody have experience and/or recommendations and/or scripts that could
help somebody who usning rdiff-backup up across an unreliable link?  If
rdiff-backup fails in the middle of a backup it regresses to the last backup
that finished successfully.  If you are running this across an unreliable link
you could consistently have a partial backup. 

I would like to know if there are systems to solving this situation.

Hope to get some input from other users.

cheers,

Noah

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


Re: help: fetchyahoo crash in perl on upgrading to 6.1-PRERELEASE #0

2006-03-23 Thread Greg Barniskis

Rajarajan Rajamani wrote:

I am having a crash when trying to use fetchyahoo.
Prior to upgrading my box from 5.4 to 6.1 there was no problem.
After upgrading to 6.1 (and cvsup'ing all the ports) 
I did a portupgrade -fa to recompile all of them.

Now I am having the following problem

[snip]



I have recompiled perl and all the ports that fetchyahoo uses but to no avail.



[snip]

re: perl, did you perform the required perl-after-upgrade tasks (see 
/usr/ports/UPDATING)? Perl going funky after a major upgrade is 
often due to overlooking this.


I've no idea if that is related to your problem or how to address 
your problem if it's not, I just know of several folks who were 
bitten by not submitting themselves to UPDATING wisdom. Your mention 
of perl brought it to mind.


--
Greg Barniskis, Computer Systems Integrator
South Central Library System (SCLS)
Library Interchange Network (LINK)
gregb at scls.lib.wi.us, (608) 266-6348
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Remote Single User Mode?

2006-03-23 Thread Chris Maness

Eric Schultz wrote:

Kris Kennaway wrote:

On Wed, Mar 22, 2006 at 10:11:48AM -0800, Chris Maness wrote:

I administer this box by remote.


Look into setting up a serial console; this is the remote single user
mode you're looking for.


Good morning...

How remote is remote?

If it's just down the hall you can probably get a DB25/DB9 (depending 
on the machine) to RJ45 adapter and use existing CAT5 cable to get to 
a serial console to your desk.  There even exist serial RJ45 switch 
boxes if you have several machines to remote administer.


If it's farther than that, like in another building/city/etc. you can 
always setup a modem on the box's serial port and dial in to that. 
You'll need a modem at your end too, which means either an analog line 
or a analog-to-digital tap for your office phone.


I have no idea whether there any serial-over-IP solutions.  But you 
could build one with FreeBSD!!!


I have a slave name server at the same location.  Maybe I can run a 
serial cable with a crosover between the two of them.

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


Re: e-mail relaying without forwarding the entire message?

2006-03-23 Thread Bill Moran
Steve Camp [EMAIL PROTECTED] wrote:

 When one MTA attempts to deliver an e-mail message to another MTA, the
 conversation looks something like:
 
 - HELO somedomain.com
 - 250 Hello somedomain.com
 - MAIL FROM: [EMAIL PROTECTED]
 
 - 250 2.1.0 Sender ok
 - RCPT TO: [EMAIL PROTECTED]
 - 250 2.1.5 Recipient ok
 - DATA
 - 354 Enter mail
...
- 250 2.0.0 Message accepted for delivery
 
 My question involves redirecting the sending MTA to a different
 receiving MTA.  Rather than the initial receiving MTA having to accept
 the entire message (all the DATA) and then forward it on to another
 MTA, the initial receiving MTA simply redirects the sending MTA to
 another MTA -- preferably the MTA that actually handles the e-mail for
 [EMAIL PROTECTED].
 
 The conversation that I envision would look something like:
 
 - MAIL FROM: [EMAIL PROTECTED]
 - 250 2.1.0 Sender ok
 - RCPT TO: [EMAIL PROTECTED]
 - XYZ X.W.V Go See someotherserver.otherdomain.com for [EMAIL 
 PROTECTED]
 
 Is such a redirection possible?
 
 Is it hard to configure?
 
 Have I just described relaying?

According to RFC-821, it looks like 551 User not local; please try
forward-path should accomplish what you want.

I've never seen this implemented, however, so I don't know if sending MTAs
react to it correctly.

-- 
Bill Moran
Potential Technologies
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]


Re: help: fetchyahoo crash in perl on upgrading to 6.1-PRERELEASE #0

2006-03-23 Thread Rajarajan Rajamani
On 10:04 Thu 23 Mar , Greg Barniskis wrote:
 Rajarajan Rajamani wrote:
 I am having a crash when trying to use fetchyahoo.
 Prior to upgrading my box from 5.4 to 6.1 there was no problem.
 After upgrading to 6.1 (and cvsup'ing all the ports) 
 I did a portupgrade -fa to recompile all of them.
 Now I am having the following problem
 [snip]
 
 
 I have recompiled perl and all the ports that fetchyahoo uses but to no 
 avail.
 
 
 [snip]
 
 re: perl, did you perform the required perl-after-upgrade tasks (see 
 /usr/ports/UPDATING)? Perl going funky after a major upgrade is 
 often due to overlooking this.
 
 [snip]
 Greg Barniskis, Computer Systems Integrator

Yes - I forgot to mention it, but I did this too and perl-after-upgrade
reported 0 packages moved since I had 5.8.8 before upgrading
my OS from 5.4 to 6.1. None of the ports were upgraded since they were
already up to date - that is why I thought portupgrade -fa would just
cause them to use the new so files of 6.1 without causing any trouble.

Other than this one - all my other perl scripts/tools are working ok.

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


Re: Sendmail patch

2006-03-23 Thread DAve

DAve wrote:

Tilman Linneweh wrote:


On Mar 23, 2006, at 16:06, DAve wrote:

bash-2.05b# make
/usr/src/lib/libsm/Makefile, line 11: Malformed conditional 
(${MK_INET6_SUPPORT} != no)

/usr/src/lib/libsm/Makefile, line 13:

if-less endif /usr/src/lib/libsm/Makefile, line 13: Need

an operator

make: fatal errors encountered -- cannot continue

I used the patch for 4.11 and 5.3



If upgrading to a supported Release isn't an option, you may get away 
with updating your make before trying to

build the new sendmail.

Another alternative might be, to use the sendmail from the ports 
collection.


Arrg! This should not be this difficult. Updating an entire server seems 
like a bit of overkill for a Sendmail patch. Though it is an opportunity 
to go back to 4.X.


Dave



I'll look at the port which is already updated.

Thanks,

DAve


--
This message was checked by forty monkeys and
found to not contain any SPAM whatsoever.

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


screen recorder

2006-03-23 Thread eoghan

Hi
I believe there was some talk a while back about an application to 
record screen movements to create demos, much like wink

http://www.debugmode.com/wink/
I cannot find the thread, but could someone refresh me as to an 
application that can achieve? Also can it generate flash (swf) movies of 
the captured screenshots?

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


Re: favorite ATA/SATA hard disk brand?

2006-03-23 Thread Peter Giessel
 
On Thursday, March 23, 2006, at 04:28AM, Nathan Vidican [EMAIL PROTECTED] 
wrote:

Hands down, WD or Maxtor for S-ATA drives.

Out of 6 Maxtor SATA drives we've had, 6 have failed in the first 6 months.
Yeah, we love Maxtor

I would check their warranties, and go with whoever gives the longest.

Maxtor: 2 years
Western Digital: 3 or 5 years (depending on model)
Seagate: 5 years.

If the company that made them has enough confidence in them to give a longer
warranty than anybody else, that says something to me.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: favorite ATA/SATA hard disk brand?

2006-03-23 Thread [EMAIL PROTECTED]@mgEDV.net

well, we bought seagate NL35 series hdd's, because
they're meant to run 24h/d. AND... they give 5 years
warranty (which sounds much better for me than the usual
3 years from the others...)

whatever, good luck with your disks!


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


Re: e-mail relaying without forwarding the entire message?

2006-03-23 Thread Charles Swiger

On Mar 23, 2006, at 10:28 AM, Steve Camp wrote:

The conversation that I envision would look something like:

- MAIL FROM: [EMAIL PROTECTED]
- 250 2.1.0 Sender ok
- RCPT TO: [EMAIL PROTECTED]
- XYZ X.W.V Go See someotherserver.otherdomain.com for  
[EMAIL PROTECTED]


Is such a redirection possible?
Is it hard to configure?


Yes, it's possible, and no, it's fairly easy to configure.  You want:

FEATURE(redirect)

...if using sendmail, which does:

redirectReject all mail addressed to address.REDIRECT with
a ``551 User has moved; please try address'' message.
If this is set, you can alias people who have left
to their new address with .REDIRECT appended.

--
-Chuck

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


Re: screen recorder

2006-03-23 Thread guru
El día Thursday, March 23, 2006 a las 04:40:36PM +, eoghan escribió:

 Hi
 I believe there was some talk a while back about an application to 
 record screen movements to create demos, much like wink
 http://www.debugmode.com/wink/
 I cannot find the thread, but could someone refresh me as to an 
 application that can achieve? Also can it generate flash (swf) movies of 
 the captured screenshots?
 Thanks
 Eoghan

http://groups.google.com/groups/search?q=guru+capturing+vncserver

matthias
-- 
Matthias Apitz / Sisis Informationssysteme GmbH
ein Tochterunternehmen der OCLC PICA B.V. Leiden (NL)
D-82041 Oberhaching, Gruenwalder Weg 28g
Fon: +49 89 / 61308-351, Fax: -399, Mobile +49 170 4527211
http://www.sisis.de/~guru/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: screen recorder

2006-03-23 Thread Micah

eoghan wrote:

Hi
I believe there was some talk a while back about an application to 
record screen movements to create demos, much like wink

http://www.debugmode.com/wink/
I cannot find the thread, but could someone refresh me as to an 
application that can achieve? Also can it generate flash (swf) movies of 
the captured screenshots?

Thanks
Eoghan


The thread is at 
http://lists.freebsd.org/pipermail/freebsd-questions/2006-February/114445.html


For flash you can use net/vnc2swf, it requires a VNC server running on 
the computer you wish to record.


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


Re: Upgrading to n-STABLE or RELENG_x

2006-03-23 Thread Kris Kennaway
On Thu, Mar 23, 2006 at 12:16:23PM +0100, Andreas Davour wrote:
 On Wed, 22 Mar 2006, Kris Kennaway wrote:
 
 On Wed, Mar 22, 2006 at 11:37:54PM +0100, Andreas Davour wrote:
 On Wed, 22 Mar 2006, Kris Kennaway wrote:
 
 On Wed, Mar 22, 2006 at 01:34:14PM -0500, daniel wrote:
 FreeBSD will occasionally release security advisories detailing the
 badness
 surrounding a single package and will often include the following as the
 solution:
 
  1) Upgrade your vulnerable system to 4-STABLE, 5-STABLE, or 6-STABLE,
  or to the RELENG_6_0, RELENG_5_4, RELENG_5_3, RELENG_4_11, or
  RELENG_4_10 security branch dated after the correction date.
 
 What does this mean?  And how do I do it?
 
 Both questions are answered in the handbook.
 
 They are, but why is 6-STABLE even mentioned since RELENG_6 is the cvs
 tag? Or are there a 6-STABLE tag as well?
 
 They are different names for the same thing.
 
 Let me rephrase it. Is it not uneccesary to mention 6-STABLE, since 
 RELENG_6 is the same thing, and the only string you'll ever use when 
 doing the upgrade the advisory advice is in fact RELENG_6?

You'll encounter 6-STABLE often when people talk about it, so you need
to know what it means.

 It seems redundant, as they are as you say just different names for the 
 same thing, but RELENG_6 is the only one actually used when cvsup'ing?

Yes.

Kris


pgpLJiTCxO6NZ.pgp
Description: PGP signature


Undefined symbol error under 6-RELEASE, 6.1-prerelease

2006-03-23 Thread John Goodleaf
I have a 6.1-prerelease system, originally a 6-release. I had installed
KDE and a few things from packages while installing the OS (a clean
install) but most everything has worked.

Recently, I've tried to build python IDEs from ports and they all fail.
Boa-constructor yields the following:

importing wxPython
Traceback (most recent call last):
  File /usr/local/bin/boa.py, line 225, in ?
import wx
  File
/usr/local/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/__init__.py,
line 42, in ?
from wx._core import *
  File
/usr/local/lib/python2.4/site-packages/wx-2.6-gtk2-ansi/wx/_core.py,
line 4, in ?
import _core_
ImportError: /usr/X11R6/lib/libwx_base-2.6.so.0: Undefined symbol
pthread_cleanup_pop

SPE shows pretty much the same error.

WHen I try to install Eric, I get:
===  Installing for eric-3.8.1
===   eric-3.8.1 depends on file: /usr/local/bin/python - found
===   Generating temporary packing list
===  Checking if devel/eric already installed
(cd /usr/ports/devel/eric/work/eric-3.8.1  /usr/local/bin/python
install.py -b /usr/local/bin/  -d /usr/local/lib/python2.4/site-packages )
Sorry, please install PyQt.
Error: /usr/X11R6/lib/libqt-mt.so.3: Undefined symbol pthread_cleanup_pop
*** Error code 1

Stop in /usr/ports/devel/eric.

(Yes, PyQt is installed).

I got these problems before I cvsupped, but rebuilding World did not help.
I then used portupgrade to rebuild ALL the ports (which took a while).
Still hasn't fixed anything.

Could one of you geniuses tell me, a mere mortal, what the heck I'm doing
wrong?

Thanks,
John

PS This is a re-post with different title and more detail. Original
thread, which didn't see much action, is here:
http://docs.freebsd.org/cgi/getmsg.cgi?fetch=2102403+0+archive/2006/freebsd-questions/20060319.freebsd-questions



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


which jdk?

2006-03-23 Thread Miguel
hi, i need to install tomcat 5 in a client's server running 
freebsd-6.0R, i know there is a port in  /usr/ports/www/tomcat55, so far 
so good,  in


http://www.freebsd.org/java/

there are many options, which one  do you recommend, native?:

---
miguel

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


FreeBSD 6.0-RELEASE AMD64 where is VESA support ?

2006-03-23 Thread TonicWater
Why options VESA not work in FreeBSD 6.0-RELEASE for AMD64 ???
How make 1024x768 video mode or other mode in console ?
Please answer me...


-- 
Best regards,
 TonicWater  mailto:[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: screen recorder

2006-03-23 Thread eoghan

Micah wrote:

eoghan wrote:

Hi
I believe there was some talk a while back about an application to 
record screen movements to create demos, much like wink

http://www.debugmode.com/wink/
I cannot find the thread, but could someone refresh me as to an 
application that can achieve? Also can it generate flash (swf) movies 
of the captured screenshots?

Thanks
Eoghan


The thread is at 
http://lists.freebsd.org/pipermail/freebsd-questions/2006-February/114445.html 



For flash you can use net/vnc2swf, it requires a VNC server running on 
the computer you wish to record.


HTH,
Micah


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


Video iPod and FreeBSD 6.0-SECURITY

2006-03-23 Thread Jeff Cross
I recently purchased a Video iPod (30GB) and am unable to mount it as a
drive in FreeBSD.  There is no device created for it when it is
inserted.  All I receive is umass0: Apple iPod, rev 2.00/0.01, addr 2
but no daX device.  Can anyone lend a hand on how I can mount this
device so I can use GNUpod once again?!

I also had a very scary experience happen to me when booting my laptop
in to FreeBSD with the iPod connected.  I blogged about it here...

http://www.averageadmins.com/blog/2006/03/21/what-not-to-do-with-a-video-ipod-and-freebsd/

...and am anxious to know if anyone knows why my laptop failed the
volume checks when mounting the partitions.  It hosed my iPod up
temporarily as well.  If anyone is interested in reading that post and
commenting I would greatly appreciate it.  I now know not to boot my
laptop up with the Video iPod connected!

Thanks in advance!

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


help with libpthread

2006-03-23 Thread Robert Huff

Who is the correct person to talk to about possible issues with
libpthread?


Robert Huff

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


Re: smb_maperror unmapped error 1:158

2006-03-23 Thread Lowell Gilbert
Steel City Phantom [EMAIL PROTECTED] writes:

 Judging from google, this has been asked a few times and never really
 answered.  my bsd box mounts several shares from a win 2000 box.  not
 all of the files that appear in the win 2k box, appear on the bsd box
 in the mount location.  switching over from kde to the console shows a
 list of errors
 
 smb_maperror unmapped error 1:158
 
 any ideas what this could be?

No; there is no such function in the samba port or in the base system
smbfs.  You didn't mention how you were doing the mounting, nor what
version of the OS and other software you were using, so there isn't
anything else I can think of to check for you.  [My system is -STABLE,
with the latest ports.]

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


Re: usb-serial ftdi trouble

2006-03-23 Thread Lowell Gilbert
Lincoln Rutledge [EMAIL PROTECTED] writes:

 Howdy, have kldloaded drivers, and in dmesg see that my usb-serial
 FTDI device is ucom0.  However there is no /dev entry and therefore
 minicom can't work.  I have seen questions about this device from 7/05
 but no answer.
 Is there a simple step I'm missing?  Thanks,

Well, for one, the manual for ucom(4) indicates that the device it
creates is /dev/cuaU?.  Is that present?

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
http://be-well.ilk.org/~lowell/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: smb_maperror unmapped error 1:158

2006-03-23 Thread Lowell Gilbert
Lowell Gilbert [EMAIL PROTECTED] writes:

 Steel City Phantom [EMAIL PROTECTED] writes:
 
  Judging from google, this has been asked a few times and never really
  answered.  my bsd box mounts several shares from a win 2000 box.  not
  all of the files that appear in the win 2k box, appear on the bsd box
  in the mount location.  switching over from kde to the console shows a
  list of errors
  
  smb_maperror unmapped error 1:158
  
  any ideas what this could be?
 
 No; there is no such function in the samba port or in the base system
 smbfs.  You didn't mention how you were doing the mounting, nor what
 version of the OS and other software you were using, so there isn't
 anything else I can think of to check for you.  [My system is -STABLE,
 with the latest ports.]

Oops; I found it a few minutes later.  The error message means that
the error returned by the Windows box was a type that wasn't known to
the error handling routine.  The Samba port refers to that error as:
NT_STATUS_NOT_LOCKED, but I'm not enough of an SMB expert to know
exactly what that means.  
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


monitoring apache log files real-time

2006-03-23 Thread Noah


Hi there,

No response on the apache list.  I hoping there is some good knowledge that
can be gathered from this list.

I have apache-1.3.34 on FreeBSD running with about 50 virtual hosts.  I am
wanting to monitor how much each site is using bandwidth and even better have
real time monitoring so I can see who is getting a lot of hits.  

I have apachetop installed but really its only good for reading a few files at
a time.  I would like to be able to look at the overall usage of my apache
server at one single point in time - hopefully real-time. 

Is there a package out there that suits my needs?  hopefully open=source?

Thanks in advance.

cheers,

Noah

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


Re: Video iPod and FreeBSD 6.0-SECURITY

2006-03-23 Thread Huy Ton That
This same identifical issue happened to me with my Creative Zen MicroPhoto.
Only I just did a reset by removing the battery and putting it back in.

On 3/23/06, Jeff Cross [EMAIL PROTECTED] wrote:

 I recently purchased a Video iPod (30GB) and am unable to mount it as a
 drive in FreeBSD.  There is no device created for it when it is
 inserted.  All I receive is umass0: Apple iPod, rev 2.00/0.01, addr 2
 but no daX device.  Can anyone lend a hand on how I can mount this
 device so I can use GNUpod once again?!

 I also had a very scary experience happen to me when booting my laptop
 in to FreeBSD with the iPod connected.  I blogged about it here...


 http://www.averageadmins.com/blog/2006/03/21/what-not-to-do-with-a-video-ipod-and-freebsd/

 ...and am anxious to know if anyone knows why my laptop failed the
 volume checks when mounting the partitions.  It hosed my iPod up
 temporarily as well.  If anyone is interested in reading that post and
 commenting I would greatly appreciate it.  I now know not to boot my
 laptop up with the Video iPod connected!

 Thanks in advance!

 Jeff Cross
 ___
 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]


How to start a script running at boot time?

2006-03-23 Thread wc_fbsd

Hi,

I have a script I would like to launch at boot time, as a non-root 
user,  to remain running in the background.  What is the best way to 
accomplish this?  I looked through the rc* stuff, and it looks like 
overkill for what I need, plus my scripting isn't that strong either.


I know I can do something like:   su - user -c script_to_run
But I don't even know what's the best place to include that.

Any suggestions, or examples?

   -Thanks,  Wayne

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


Re: How to start a script running at boot time?

2006-03-23 Thread Lowell Gilbert
[EMAIL PROTECTED] writes:

 I have a script I would like to launch at boot time, as a non-root
 user,  to remain running in the background.  What is the best way to
 accomplish this?  I looked through the rc* stuff, and it looks like
 overkill for what I need, plus my scripting isn't that strong either.

Um, okay.  The rc* stuff covers a lot of techniques, including
simple scripts that just get run without worrying about parameters or
so on, but that's your call...

 I know I can do something like:   su - user -c script_to_run
 But I don't even know what's the best place to include that.
 
 Any suggestions, or examples?

How about using @reboot in the user's crontab(5)?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to start a script running at boot time?

2006-03-23 Thread Erik Nørgaard

[EMAIL PROTECTED] wrote:

Hi,

I have a script I would like to launch at boot time, as a non-root 
user,  to remain running in the background.  What is the best way to 
accomplish this?  I looked through the rc* stuff, and it looks like 
overkill for what I need, plus my scripting isn't that strong either.


I know I can do something like:   su - user -c script_to_run
But I don't even know what's the best place to include that.

Any suggestions, or examples?


A sample script could be /etc/rc.d/sysctl, it contains a block 
sysctl_start() which is executed when you run # /etc/rc.d/sysctl start


Using that as a sample you can insert you custom startup code.

Cheers, Erik

--
Ph: +34.666334818  web: www.locolomo.org
S/MIME Certificate: www.daemonsecurity.com/ca/8D03551FFCE04F06.crt
Subject ID:  9E:AA:18:E6:94:7A:91:44:0A:E4:DD:87:73:7F:4E:82:E7:08:9C:72
Fingerprint: 5B:D5:1E:3E:47:E7:EC:1C:4C:C8:3A:19:CC:AE:14:F5:DF:18:0F:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


6.1-BETA4 minimal install

2006-03-23 Thread Andrew Pantyukhin
When I tried to install 6.1-BETA4 from CD today, I
couldn't select the minimal distribution. The X just
doesn't appear when I select the line and press
space or enter. I could select any other distribution
set without a problem.

sysinstall from -stable as of 5 march doesn't seem
to have this issue.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DNS control tools

2006-03-23 Thread Andrew Pantyukhin
On 3/23/06, Steve Camp [EMAIL PROTECTED] wrote:
 Someone is potentially interested in leasing a domain name from me.
 One of the technical points is DNS control.  What DNS tools exist that
 would allow me to maintain the DNS servers, but let this party login
 and administer DNS entries.  I'm thinking along the lines of some sort
 of web-based tool.  A user would login / authenticate themselves, but
 the tool would limit the domains they could manage in some fashion.

 Regards,

 --
 Steve Camp
 [EMAIL PROTECTED]


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


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


Re: mysql for freebsd 6.0

2006-03-23 Thread Ludwig Pummer

kalin mintchev wrote:

  hi all...

  i can't see the mysql 5 version for freebsd 6.0 on the mysql developer
site?
  am i blind or it's on purpose?!?!

  curious...  and actually need it...

  thanks...




/usr/ports/databases/mysql50-server/
/usr/ports/databases/mysql51-server/

I suggest you familiarize yourself with the search feature at 
http://www.freebsd.org/ports/


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


FreeBSD 6.1 - mount_nullfs broken?

2006-03-23 Thread Viren Patel
Hello. I just upgraded a FreeBSD 6.0 system to
6.1-prerelease and now mount_nullfs seems to be broken. I
get the error mount_nullfs: Operation not supported by
device. Nothing has changed in the hardware or the config
files. Here is the output dmesg:

Copyright (c) 1992-2006 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991,
1992, 1993, 1994
The Regents of the University of California. All
rights reserved.
FreeBSD 6.1-PRERELEASE #0: Thu Mar 23 14:53:13 CST 2006
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm) 64 X2 Processor 3800+ (2010.31-MHz
K8-class CPU)
  Origin = AuthenticAMD  Id = 0x20fb1  Stepping = 1
  
Features=0x178bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT
  Features2=0x1SSE3
  AMD
Features=0xe2500800SYSCALL,NX,MMX+,b25,LM,3DNow+,3DNow
real memory  = 1073676288 (1023 MB)
avail memory = 1025048576 (977 MB)
ACPI APIC Table: Nvidia AWRDACPI
ioapic0: Changing APIC ID to 4
ioapic0 Version 1.1 irqs 0-23 on motherboard
acpi0: Nvidia AWRDACPI on motherboard
acpi_bus_number: can't get _ADR
acpi_bus_number: can't get _ADR
acpi0: Power Button (fixed)
acpi_bus_number: can't get _ADR
acpi_bus_number: can't get _ADR
acpi_bus_number: can't get _ADR
acpi_bus_number: can't get _ADR
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port
0x4008-0x400b on acpi0
cpu0: ACPI CPU on acpi0
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pci0: memory at device 0.0 (no driver attached)
isab0: PCI-ISA bridge at device 1.0 on pci0
isa0: ISA bus on isab0
pci0: serial bus, SMBus at device 1.1 (no driver attached)
ohci0: OHCI (generic) USB controller mem
0xfebff000-0xfebf irq 21 at device 2.0 on pci0
ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: OHCI (generic) USB controller on ohci0
usb0: USB revision 1.0
uhub0: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 10 ports with 10 removable, self powered
ehci0: NVIDIA nForce4 USB 2.0 controller mem
0xfebfe000-0xfebfe0ff irq 22 at device 2.1 on pci0
ehci0: [GIANT-LOCKED]
usb1: EHCI version 1.0 usb1: companion controller, 4 ports
each: usb0 usb1: NVIDIA nForce4 USB 2.0 controller on
ehci0
usb1: USB revision 2.0
uhub1: nVidia EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub1: 10 ports with 10 removable, self powered
pci0: multimedia, audio at device 4.0 (no driver attached)
atapci0: nVidia nForce CK804 UDMA133 controller port
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xe000-0xe00f at
device 6.0 on pci0
ata0: ATA channel 0 on atapci0
ata1: ATA channel 1 on atapci0
atapci1: nVidia nForce CK804 SATA300 controller port
0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xcc00-0xcc0f
mem 0xfebfb000-0xfebfbfff irq 21 at device 7.0 on pci0
ata2: ATA channel 0 on atapci1
ata3: ATA channel 1 on atapci1
atapci2: nVidia nForce CK804 SATA300 controller port
0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xb800-0xb80f
mem 0xfebfa000-0xfebfafff irq 22 at device 8.0 on pci0
ata4: ATA channel 0 on atapci2
ata5: ATA channel 1 on atapci2
pcib1: ACPI PCI-PCI bridge at device 9.0 on pci0
pci1: ACPI PCI bus on pcib1
fwohci0: VIA Fire II (VT6306) port 0xac00-0xac7f mem
0xfbfff000-0xfbfff7ff irq 16 at device 6.0 on pci1
fwohci0: OHCI version 1.10 (ROM=1)
fwohci0: No. of Isochronous channels is 4.
fwohci0: EUI64 00:01:29:20:00:03:4d:81
fwohci0: Phy 1394a available S400, 2 ports.
fwohci0: Link S400, max_rec 2048 bytes.
firewire0: IEEE1394(FireWire) bus on fwohci0
fwe0: Ethernet over FireWire on firewire0
if_fwe0: Fake Ethernet address: 02:01:29:03:4d:81
fwe0: Ethernet address: 02:01:29:03:4d:81
fwe0: if_start running deferred for Giant
sbp0: SBP-2/SCSI over FireWire on firewire0
fwohci0: Initiate bus reset
fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode
firewire0: 1 nodes, maxhop = 0, cable IRM = 0 (me)
firewire0: bus manager 0 (me)
pci1: display, VGA at device 9.0 (no driver attached)
nve0: NVIDIA nForce MCP9 Networking Adapter port
0xb400-0xb407 mem 0xfebf9000-0xfebf9fff irq 23 at device
10.0 on pci0
nve0: Ethernet address 00:01:29:d2:25:69
miibus0: MII bus on nve0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
nve0: Ethernet address: 00:01:29:d2:25:69
pcib2: ACPI PCI-PCI bridge at device 11.0 on pci0
pci2: ACPI PCI bus on pcib2
pcib3: ACPI PCI-PCI bridge at device 12.0 on pci0
pci3: ACPI PCI bus on pcib3
pcib4: ACPI PCI-PCI bridge at device 13.0 on pci0
pci4: ACPI PCI bus on pcib4
pcib5: ACPI PCI-PCI bridge at device 14.0 on pci0
pci5: ACPI PCI bus on pcib5
acpi_tz0: Thermal Zone on acpi0
fdc0: floppy drive controller port 0x3f0-0x3f5,0x3f7 irq
6 drq 2 on acpi0
fdc0: [FAST]
fd0: 1440-KB 3.5 drive on fdc0 drive 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4
flags 0x10 on acpi0

/usr/bin/ld: cannot find -lgtk12 - gnome applications will not compile

2006-03-23 Thread Oliver Iberien
I am trying to upgrade to gnucash 1.8.12 on Free BSD 6.0. It fails with a 
message saying that the gal libraries are not installed. The gal-0.24_1 
package is already installed. In attempting to update it through the ports 
system, I consistently get compile failures with:

/usr/bin/ld: cannot find -lgtk12

The same happened with guppi and gwrap. gtk12 is installed and up to date. I 
deinstalled and reinstalled, but it made no difference. 

I have reinstalled all the packages that had been removed and run pkgdb -F to 
reset the dependencies.

Now:

$ gnucash
ERROR: In procedure dynamic-link:
ERROR: file: libgw-gnc, message: Invalid shared object handle 0x28078d00
$  

Before I break anything else, I thought I would write this list. How to I make 
this missing libgtk12 available again? And is there anything else required to 
get gnucash up and running again?

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


/usr/bin/ld: cannot find -lgtk12 - gnome applications will not compile

2006-03-23 Thread Robert Huff

Oliver Iberien writes:

  I am trying to upgrade to gnucash 1.8.12 on Free BSD 6.0. It fails with a 
  message saying that the gal libraries are not installed. The gal-0.24_1 
  package is already installed. In attempting to update it through the ports 
  system, I consistently get compile failures with:
  
  /usr/bin/ld: cannot find -lgtk12

1) This is fallout of the libtool bump (see
/usr/ports/UPDATING).  Check the archives for this newsgroup about
two or three (??) weeks ago for a long thread on what's up and how
to fix it.
2) According to messages here over the last few days, gnucash
will not update correctly due to breakage in the dependencies.
Search for gnucash+guile+slib.


Robert Huff

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


Re: FreeBSD 6.1 - mount_nullfs broken?

2006-03-23 Thread Kris Kennaway
On Thu, Mar 23, 2006 at 04:31:08PM -0600, Viren Patel wrote:
 Hello. I just upgraded a FreeBSD 6.0 system to
 6.1-prerelease and now mount_nullfs seems to be broken. I
 get the error mount_nullfs: Operation not supported by
 device. Nothing has changed in the hardware or the config
 files. Here is the output dmesg:

It's definitely working.

Show us the exact command you're running.

Kris


pgpJWcyErcUxt.pgp
Description: PGP signature


Compiling /usr/sys After CVSUP

2006-03-23 Thread Chris Maness
Is there a way to ONLY compile the deltas after a CVSUP?  I don't think 
the last security notice warranted a kernel recompile (or maybe it did).

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


Re: using KVM switch /dev/psm0 is missing

2006-03-23 Thread hackmiester / Hunter Fuller
On Wednesday 22 March 2006 21:10, Malcolm Fitzgerald wrote:
 Malcolm Fitzgerald wrote:
  I have a no name 2 port KVM switch and a Logitech marble mouse USB
  with a ps/2 adapter.

 Richard Burakowski wrote:
  my cheapo noname kvm presents it's ps2 keyboard and mouse ports as
  usb devices.

 Malcolm Fitzgerald wrote:
  Does yours have USB cabling to match or does it have ps2 cables?

 Richard Burakowski wrote:
  it takes two ps2 (key+mouse) and three usb in - then one usb (2 total)
  out to each box.  then there's the video of course.
  when the kvm switches, the usb devices are detached and then attached
  to the new target, which means there's a discernable lag (couple
  seconds) before they become active.  also requires moused under x11 as
  the /dev/ums entry comes and goes - dosen't have the same issue with
  the keyboard.

 I see, mine only has ps/2 connections, so I'm still looking for psm0
 when the mouse is plugged into the KVM switch. Plugging the mouse
 directly to the box is a solution but it is only KV not KVM.
How could the machine tell the difference? Does your KVM pretend it is a 
keyboard and mouse when you are not switched to that machine? Mine does. In 
that way, I can boot a machine and then switch to it and it will work.


 malcolm

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

-- 
--hackmiester
Walk a mile in my shoes and you will be a mile away in a new pair of shoes.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFD/yYl3ApzN91C7BcRAoVVAJ97uhjh30nQ4hd9bQ90gJqiwsLEfgCeKSrg
bVfqEeJ09WhO6Y51WHEHb6o=
=VTUd
-END PGP SIGNATURE-

-BEGIN GEEK CODE BLOCK-
Version: Geek Code v3.1 (PHP)
GCS/CM/E/IT d-@ s: a- C++$ UBLS*$ P+ L+++$ E- W++$ !N-- !o+ K-- !w-- !O-
M++$ V-- PS@ PE@ Y--? PGP++ !t--- 5--? !X-- !R-- tv-- b+ DI++ D++ G+ e
h r+++ z
--END GEEK CODE BLOCK--

Quick contact info:
Work: [EMAIL PROTECTED]
Personal: [EMAIL PROTECTED]
Large files/spam: [EMAIL PROTECTED]
GTalk:hackmiester/AIM:hackmiester1337/Y!:hackm1ester/IRC:irc.7sinz.net/7sinz


pgp8XKvRx6INI.pgp
Description: PGP signature


Compiling /usr/sys After CVSUP

2006-03-23 Thread Robert Huff

Chris Maness writes:

  Is there a way to ONLY compile the deltas after a CVSUP?  I don't
  think the last security notice warranted a kernel recompile (or
  maybe it did).

Even if there is, it's a bad idea.  Various kernel parts
interact in Strange and Mysterious Ways(tm); adding new bits /here/
may cause the contents of a structure or the calling values to code
_there_ to change.
Very dangerous.  You go first.


Robert Huff

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


Re: usb-serial ftdi trouble

2006-03-23 Thread Lincoln Rutledge

Yes that't it, thank you.

Lowell Gilbert wrote:

Lincoln Rutledge [EMAIL PROTECTED] writes:



Howdy, have kldloaded drivers, and in dmesg see that my usb-serial
FTDI device is ucom0.  However there is no /dev entry and therefore
minicom can't work.  I have seen questions about this device from 7/05
but no answer.
Is there a simple step I'm missing?  Thanks,



Well, for one, the manual for ucom(4) indicates that the device it
creates is /dev/cuaU?.  Is that present?


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


Re: using KVM switch /dev/psm0 is missing

2006-03-23 Thread Malcolm Fitzgerald



Malcolm Fitzgerald wrote:

I have a no name 2 port KVM switch and a Logitech marble mouse USB
with a ps/2 adapter.


Richard Burakowski wrote:

my cheapo noname kvm presents it's ps2 keyboard and mouse ports as
usb devices.


Malcolm Fitzgerald wrote:

Does yours have USB cabling to match or does it have ps2 cables?


Richard Burakowski wrote:
it takes two ps2 (key+mouse) and three usb in - then one usb (2 
total)

out to each box.  then there's the video of course.
when the kvm switches, the usb devices are detached and then attached
to the new target, which means there's a discernable lag (couple
seconds) before they become active.  also requires moused under x11 
as

the /dev/ums entry comes and goes - dosen't have the same issue with
the keyboard.


On Wednesday 22 March 2006 21:10, Malcolm Fitzgerald wrote:


I see, mine only has ps/2 connections, so I'm still looking for psm0
when the mouse is plugged into the KVM switch. Plugging the mouse
directly to the box is a solution but it is only KV not KVM.


On 24/03/2006, at 10:23 AM, hackmiester / Hunter Fuller wrote:

How could the machine tell the difference? Does your KVM pretend it is 
a
keyboard and mouse when you are not switched to that machine? Mine 
does. In

that way, I can boot a machine and then switch to it and it will work.


That may be the trick, I typically boot both machines at the same time. 
The windows box doesn't care, it works every time. I turned off the BSD 
box and rebooted with the KVM selector on its port and everything 
works. There is still the possibility that the KVM switch is flaky.


malcolm

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


Re: smb_maperror unmapped error 1:158

2006-03-23 Thread Steel City Phantom

   im using bsd 6.  i write a script that fires on startup and shutdown
   that mounts the drives.  i mount several, but here is one of the mount
   commands
   mount_smbfs -f 0777 -d 0777 //[EMAIL PROTECTED]/MP3
   /usr/local/drive_h/MP3
   it seems like anything that accesses a file in that share will create
   the error.
   Lowell Gilbert wrote:

Lowell Gilbert [1][EMAIL PROTECTED] writes:



Steel City Phantom [2][EMAIL PROTECTED] writes:



Judging from google, this has been asked a few times and never really
answered.  my bsd box mounts several shares from a win 2000 box.  not
all of the files that appear in the win 2k box, appear on the bsd box
in the mount location.  switching over from kde to the console shows a
list of errors

smb_maperror unmapped error 1:158

any ideas what this could be?


No; there is no such function in the samba port or in the base system
smbfs.  You didn't mention how you were doing the mounting, nor what
version of the OS and other software you were using, so there isn't
anything else I can think of to check for you.  [My system is -STABLE,
with the latest ports.]


Oops; I found it a few minutes later.  The error message means that
the error returned by the Windows box was a type that wasn't known to
the error handling routine.  The Samba port refers to that error as:
NT_STATUS_NOT_LOCKED, but I'm not enough of an SMB expert to know
exactly what that means.
___
[EMAIL PROTECTED] mailing list
[4]http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [5][EMAIL PROTECTED]

References

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


Problem with Hard Disk

2006-03-23 Thread victor leon
Hi i would like to install Freebsd 6.0  but my Hard Disk (SAMSUNG ST0822N 80
GB) is not detected (im using it to write this mail) sorry my english is not
good see you Victor Leon
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mysql for freebsd 6.0

2006-03-23 Thread Greg 'groggy' Lehey
On Thursday, 23 March 2006 at  0:52:18 -0500, kalin mintchev wrote:

   hi all...

   i can't see the mysql 5 version for freebsd 6.0 on the mysql developer
 site?
   am i blind or it's on purpose?!?!

No, it's on its way.  We should have a version up within a week or so.
But you're the first person I've seen who wants to install from the
MySQL site.  Why do you prefer this approach over the Ports
Collection?

FWIW, there are differences between the version that we (MySQL) supply
and the version that we (FreeBSD) supply, notably in the compiler
options and installation paths.  We're actively trying to ensure that
both versions will be the same.  If anybody on this list has
suggestions which version is better, I'd be interested in hearing
them.

Greg
--
Greg Lehey, Senior Software Engineer
MySQL AB, http://www.mysql.com/
Echunga, South Australia
Phone: +61-8-8388-8286   Mobile: +61-418-838-708
VoIP:  sip:[EMAIL PROTECTED], sip:[EMAIL PROTECTED]

Are you MySQL certified?  http://www.mysql.com/certification/


pgp9elj5bqN6k.pgp
Description: PGP signature


Re: Java and tomcat

2006-03-23 Thread Chris Hill

On Wed, 22 Mar 2006, eoghan wrote:


Aguiar Magalhaes wrote:

Hi list,

I´d like to install java (virtual machine) and tomcat
on the freebsd 6.0..

Are they full compatible ??  Are they in ports ?? 
Help me please,


Aguiar


Hi
Tomcat is:
/usr/ports/www/tomcat55
and there's detailed info on Java here:
http://www.freebsd.org/java/
Hope that helps...
Eoghan


There are at least a couple of ways to find out if a thing is in ports. 
To look for foobar, you could:


$ cd /usr/ports
$ make search key=foobar

...or go to http://www.freebsd.org/ports/index.html and type your search 
term into the box.


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

(no subject)

2006-03-23 Thread antonio zacca
Hello
I am a consummer from JP and have shopping a CD for
FreeBSD4.9 on BSDmall where linked from this site.
I am sure to remember date of order is end of FEB
so Its been almost all a month but nothing to reach me
from BSDmall. I sent e-mail to them twice for checking
of shipping for my order but even no answer.
now what I want to ask here is BSDmall is working or
not? if they are working with no torable why they
ignore me? credit card company already have charged
for this shopping. I know It takes approx ten to
couple
of weeks for trancportation from US to JP coz I have
often shoped from Oversee particuler from US alots.
if someone have time and get my hand for me please
thanks for any reply

PS: my name is Yoshiya Imai
I have no infomation of order coz BSDmall never   
 have sent any e-mail to me









__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


business of BSDmall

2006-03-23 Thread antonio zacca
Hello
I am a consummer from JP and have shopping a CD for
FreeBSD4.9 on BSDmall where linked from this site.
I am sure to remember date of order is end of FEB
so Its been almost all a month but nothing to reach me
from BSDmall. I sent e-mail to them twice for checking
of shipping for my order but even no answer.
now what I want to ask here is BSDmall is working or
not? if they are working with no torable why they
ignore me? credit card company already have charged
for this shopping. I know It takes approx ten to
couple
of weeks for trancportation from US to JP coz I have
often shoped from Oversee particuler from US alots.
if someone have time and get my hand for me please
thanks for any reply

PS: my name is Yoshiya Imai
I have no infomation of order coz BSDmall never   
 have sent any e-mail to me









__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mysql for freebsd 6.0

2006-03-23 Thread kalin mintchev
 On Thursday, 23 March 2006 at  0:52:18 -0500, kalin mintchev wrote:

   hi all...

   i can't see the mysql 5 version for freebsd 6.0 on the mysql developer
 site?
   am i blind or it's on purpose?!?!

 No, it's on its way.  We should have a version up within a week or so.
 But you're the first person I've seen who wants to install from the
 MySQL site.  Why do you prefer this approach over the Ports
 Collection?

well... lately i'm having trouble with ports that don't update on time and
i have to 'fish' which mirrors are updated and which not. like for the new
asterisk port for example...

also for stuff that is 'really' important i usually build from src -
apache, php, qmail etc.

so i usually go to the src for mysql too.
nothing against ports really, i like them... i guess i'm just used to
build from src and besides i don't know how to pass options to ports while
installing... like --prefix=/here/ --enable-this, --disable-that kinda
options/flags...

 FWIW, there are differences between the version that we (MySQL) supply
 and the version that we (FreeBSD) supply, notably in the compiler
 options and installation paths.  We're actively trying to ensure that
 both versions will be the same.  If anybody on this list has
 suggestions which version is better, I'd be interested in hearing
 them.

 Greg
 --
 Greg Lehey, Senior Software Engineer
 MySQL AB, http://www.mysql.com/
 Echunga, South Australia
 Phone: +61-8-8388-8286   Mobile: +61-418-838-708
 VoIP:  sip:[EMAIL PROTECTED], sip:[EMAIL PROTECTED]

 Are you MySQL certified?  http://www.mysql.com/certification/



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


Re: mysql for freebsd 6.0

2006-03-23 Thread kalin mintchev

 /usr/ports/databases/mysql50-server/
 /usr/ports/databases/mysql51-server/

 I suggest you familiarize yourself with the search feature at
 http://www.freebsd.org/ports/

thanks. familiar with it... doesn't always work...   look for
mplayer-plugin for example...  i've tried to build this for the last 2
months...  from ports...






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


RE: business of BSDmall

2006-03-23 Thread fbsd_user
BSD mall is separate company.
This questions list has nothing to do with it.
Version 4.9 is very old.
The current version is 6.0.
That may be strong indicator that bsdmall is no longer current.
You can download an .iso file and burn it to your own blank cd,
and use that to install from.

Instruction are in the handbook at www.freebsd.org.

Instruction for getting the .iso file and burning the cd using
ms/windows
are in the install guide at   www.a1poweruser.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of antonio
zacca
Sent: Thursday, March 23, 2006 9:05 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: business of BSDmall


Hello
I am a consummer from JP and have shopping a CD for
FreeBSD4.9 on BSDmall where linked from this site.
I am sure to remember date of order is end of FEB
so Its been almost all a month but nothing to reach me
from BSDmall. I sent e-mail to them twice for checking
of shipping for my order but even no answer.
now what I want to ask here is BSDmall is working or
not? if they are working with no torable why they
ignore me? credit card company already have charged
for this shopping. I know It takes approx ten to
couple
of weeks for trancportation from US to JP coz I have
often shoped from Oversee particuler from US alots.
if someone have time and get my hand for me please
thanks for any reply

PS: my name is Yoshiya Imai
I have no infomation of order coz BSDmall never
 have sent any e-mail to me









__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
___
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: which controllers(devices) to disable in kernel?

2006-03-23 Thread Jason C. Wells

Perica Veljanovski wrote:

Hi,

I bought a new pc with GIGABYTE GA-K8VT800 VIA K8T800 mother board (has 
ata, sata, raid) and a SATA IBM HDD and installed FreeBSD 6.0.


I'm building a custom kernel and I was wondering which 
controllers(devices) I need for my new kernel to support my motherboard 
properly?

Is there a way to see which devices my pc uses from the GENERIC kernel?


Don't forget to read NOTES.  Some devices are not intuitively obvious. 
You need SCSI to run a USB mass storage device even if you don't have a 
SCSI host adapter.


dmesg like the other fellow said.  There is one caveat.  If you have 
some obscure hardware it may not show in dmesg output because it was 
never built into GENERIC.  For this hardware you might look at the chips 
on the mainboard or in the hardware manual.  You the take the chip's 
identifier (for lack of a better word) and grep the kernel config files 
to find the right driver.


And oh yeah, you could use these docs:

http://www.freebsd.org/releases/6.0R/hardware-i386.html

But that's less adventurous.

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


Re: clam av gui?

2006-03-23 Thread Dan Bye
On 22/03/06, eoghan [EMAIL PROTECTED] wrote:
 Hi
 I am running clam av and was wondering if there's an available gui for
 it (using gnome 2.12).

http://www.clamav.net/3rdparty.html#gui

A quick scan of the website would have told you as much.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >