Re: NDISulator - Broadcom - crash

2006-08-07 Thread Dhénin Jean-Jacques

hi,

I am looking for the same information.

Thanks in advance.

2006/8/7, Lorin Lund <[EMAIL PROTECTED]>:


...
I tried ndisgen with bcmwl5.inf and bcmwl5.sys.

...





If anyone who has their WiFi working with bcmwl5 drivers would send me

their
kernel modules I would like to see if they work with my system.

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





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


Re: perl problem

2006-08-07 Thread Giorgos Keramidas
On 2006-08-03 10:50, RJ45 <[EMAIL PROTECTED]> wrote:
> Hello using imapsync to make a transition from imapuw to a
> cyrus server make the imapsync perl process to die on FreeBSD
> 6.1 because it uses more than 512MB of memory.
> 
> this does not happen using imapsync with the same transfer
> operations on hte same mailboxes on a Linux fedora box the
> memory used also is less than 512MB.
> 
> recompiling ther kernel of FreeBSD rising the memory to 1GB
> does not fix this at all. Seems like the perl process on
> FreeBSD explodes in memory.

You don't have to rebuild your kernel to raise the maximum data
segment size.  Just set kern.maxdsiz in /boot/loader.conf and
boot with the new setting.

> How can I do to fix this issue, any hints ?

Increasing kern.maxdsiz and checking that the user limits are not
still set to 512 MB may help a bit, but if the program still
tries to allocate enormous amounts of memory I'm not sure if this
is going to help a lot.

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


Re: Using pre-built packages with portmanager

2006-08-07 Thread Jonathan McKeown
On Saturday 05 August 2006 19:16, cpghost wrote:

> How do I get portmanager to upgrade ports, using
>   1. pre-built packages from /usr/ports/packages (ONLY),
> and only if there's no binary package there,
>   2. build from source as usual?
>
> Additional limit (preventing use of portupgrade -P) is that only
> local (/usr/ports/packages), and no remote packages should be
> used.

Edit /usr/local/etc/pkgtools.conf and add

ENV['PKG_FETCH'] = '/usr/bin/false'

portupgrade will look for a local package, then try and fetch a package 
remotely using false(1) - which will fail because that's what false(1) does - 
and portupgrade will then build the port.

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


Re: Reducing the timeout on a TCP connection

2006-08-07 Thread Igor Robul
On Tue, Aug 01, 2006 at 03:21:07PM -0400, Bill Moran wrote:
> In response to "Ted Mittelstaedt" <[EMAIL PROTECTED]>:
> 
> > This is why the snmp protocol uses UDP, Bill.
> > 
> > You need to use something other than TCP for
> > monitoring.
> 
> Well ... if I'm monitoring a server that uses TCP (PostgreSQL) I can't
> rightly establish whether or not it's successfully accepting connections
> unless I used TCP as well.
> 
> I understand where you're coming from, but I can't see how I can use
> UDP to solve my problem.
You can do 2-step monitoring:
 1) Monitor1 monitors PostgreSQL via Unix domain socket, possible also
it monitors presense of postmaster process
 2) Monitor2 monitors Monitor1 and you "connect" to Monitor2  via UDP.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Midnight Commander in base distribution set

2006-08-07 Thread Giorgos Keramidas
On 2006-08-04 08:38, Scott Oertel <[EMAIL PROTECTED]> wrote:
> Bryan Bonifacio wrote:
> >The ports and packages are also available from the CD-ROMs (either the 
> >first or the second).
>
> I use midnight commander on a daily basis, can anyone recommend a
> better, more lightweight tool then  mc?

What's the job and who is going to do it?

The "best tool" for a job is not always so easy to guess beforehand :P

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread questions
While I'm definately interested in the statistical reporting,  I do have
one suggestion:

Add a random "sleep" time to the update.

Otherwise,  the reporting server is gonna get HAMMERED once a month,
assuming this project gains any kind of momentum.

A random sleep timer at the beginning of the script over (for example) a 3
hour window could make the load bearable for the checkin server.Just
something to consider.


>
> I've now committed v2.0 of the 300.statistics periodic script ... this one
> adds the device reporting that we'd talked about previously, and the
> summary reports now reflect the driver(s) in use for those deciding to
> report ...
>
> This Phase of the script is optional, and not enabled by default ... I
> can't think of any reason why you wouldn't want to report it, but just in
> case someone feels it poses a problem, its an opt-in report ...
>
> pkg-message updated to reflect the extra line you need to add to
> /etc/periodic.conf:
>
>  monthly_statistics_report_devices=yes
>
> I've written it to report driver + chip= information from pciconf -l,
> since even pciconf -lv doesn't seem to use card= ... the summary report
> will be extended next to show both vendor and chip statistics ...
>
> Let me know of any problems ...
>
> 
> Marc G. Fournier   Hub.Org Networking Services
> (http://www.hub.org)
> Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
> Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
> ___
> 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: BSDstats Project v2.0 ...

2006-08-07 Thread Daniel Gerzo
Hello Marc,

Monday, August 7, 2006, 5:42:27 AM, you wrote:

> I've now committed v2.0 of the 300.statistics periodic script ... this one
> adds the device reporting that we'd talked about previously, and the 
> summary reports now reflect the driver(s) in use for those deciding to
> report ...

> I've written it to report driver + chip= information from pciconf -l, 
> since even pciconf -lv doesn't seem to use card= ... the summary report
> will be extended next to show both vendor and chip statistics ...

Maybe it would be better if you strip the ending number from the
driver, so the page will list total number of driver usage not fxp0,
fxp1 totals and so on.

> Let me know of any problems ...

Seems like some people are already trying to be funny, because
according to the page there are already people running (~40)
FreeBSD 8.0-CURRENT :-) It's sad to see this to be happening.

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


Re: Howto insert string. (Was: Re: [freebsd-questions] awk quickie.)

2006-08-07 Thread Kurt Wall
On Sun, Aug 06, 2006 at 03:47:32PM -0700, Gary Kline wrote:
> 
>   I've got 80 or so html/php files. Most do have 
> 
>
> 
>   but a whole slew do not/are missing the BG color code.
>   So is there some scripto-magic way of finding out which fles are 
>   missing the above string?  I know how, using an ed/ex script to
>   insert this string.  

I'd probably do "grep -vi bgcolor filename"

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


SAMBA as Domain Controller on FreeBSD 6.1

2006-08-07 Thread James G. Corteciano
Hello everyone!

Good Day!

I am using FreeBSD 6.1/6.x version of Operating System. I plan to 
switch my existing PDC Win2k Advanced server to FreeBSD with the 
power of Samba. Anybody may I know of how would you setup SAMBA as 
PDC in FreeBSD 6.x? I know this is not good question for asking HOWTO 
but the good procedures and right samba configurations might lead me 
up during installation process.

I am hoping for your kind consideration and favorable response.

Great many thanks.

Regards,

James G. Corteciano




-- 
___
Get your free email from http://mymail.bsdmail.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Howto insert string. (Was: Re: [freebsd-questions] awk quickie.)

2006-08-07 Thread Kurt Wall
On Mon, Aug 07, 2006 at 07:13:03AM -0400, Kurt Wall wrote:
> On Sun, Aug 06, 2006 at 03:47:32PM -0700, Gary Kline wrote:
> > 
> > I've got 80 or so html/php files. Most do have 
> > 
> >  
> > 
> > but a whole slew do not/are missing the BG color code.
> > So is there some scripto-magic way of finding out which fles are 
> > missing the above string?  I know how, using an ed/ex script to
> > insert this string.  
> 
> I'd probably do "grep -vi bgcolor filename"

[bad form to reply to my own post, etc.]

Doh! You want to *insert* the string, not (just) find the ones that 
don't have it. My ed/ex chops blow, so with sed:

sed -i '' 's///' file_name

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


Re: urgent: I just rm-r a directory

2006-08-07 Thread Ian Lord

Thanks to all how had replyed to me :)

I'm from a dos/windows world so I was hoping for an "undelete 
utility" On fat partitions data is not deleted, it's just flag as 
deleted,  so I though it was the same for freebsd.


Seems like I'll have to call the company that store our tapes offsite 
to recover :)


Thanks to all

At 20:34 2006-08-06, jan gestre wrote:

On 8/7/06, Ian Lord <[EMAIL PROTECTED]> wrote:


I did a rm-r by mistake on a directory... any way to recover ?

Help please :(

_


if you don't have back ups of the directory concerned, i'm sorry to inform
you that you won't be able to recover it. a word of advise, at least make
the rm with -i switch to make it interactive, that way it will ask you first
before deleting, good thing though it's not your "/" you deleted :D
___
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]"


eaccelerator hit: log msgs

2006-08-07 Thread dick hoogendijk
Installing eAccelerator with apache2.2.3/php4 was easy enough.
It is indeed a lot faster, BUT,

However, my httpd-error.log very fast with lots and lots of rules like:

EACCELERATOR hit:"/usr/local/www/horde/imp/config/servers.php"
etc, etc..

I don't want these lines to appear.

How and where can this be disabled?

System: FreeBSD-6.1 with the latest ports collection

-- 
dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.1 ++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: urgent: I just rm-r a directory

2006-08-07 Thread Vesselin Peev

Hello,

Note that the files contents itself are still on the disk if they haven't 
been overwritten by later disk operations. If you do not have a backup and 
you know what you are looking for, you can use commands such as "grep" or 
"strings" over the disk partition. You can find explanatory pages on the 
Internet about that, such as 
http://bluesmoon.blogspot.com/2004/08/undelete-in-freebsd.html.
(And if you don't want to take any chances, there are companies specialising 
in data recovery.)


Regards,
Vesselin.


From: Ian Lord <[EMAIL PROTECTED]>
To: freebsd-questions@freebsd.org
Subject: Re: urgent: I just rm-r a directory
Date: Mon, 07 Aug 2006 08:44:48 -0400

Thanks to all how had replyed to me :)

I'm from a dos/windows world so I was hoping for an "undelete utility" On 
fat partitions data is not deleted, it's just flag as deleted,  so I though 
it was the same for freebsd.


Seems like I'll have to call the company that store our tapes offsite to 
recover :)


Thanks to all

At 20:34 2006-08-06, jan gestre wrote:

On 8/7/06, Ian Lord <[EMAIL PROTECTED]> wrote:


I did a rm-r by mistake on a directory... any way to recover ?

Help please :(

_


if you don't have back ups of the directory concerned, i'm sorry to inform
you that you won't be able to recover it. a word of advise, at least make
the rm with -i switch to make it interactive, that way it will ask you 
first

before deleting, good thing though it's not your "/" you deleted :D
___
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]"



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


Re: eaccelerator hit: log msgs

2006-08-07 Thread Daniel Gerzo
Hello dick,

Monday, August 7, 2006, 2:49:52 PM, you wrote:

> Installing eAccelerator with apache2.2.3/php4 was easy enough.
> It is indeed a lot faster, BUT,
> However, my httpd-error.log very fast with lots and lots of rules like:

> EACCELERATOR hit:"/usr/local/www/horde/imp/config/servers.php"
> etc, etc..

> I don't want these lines to appear.
> How and where can this be disabled?

put this into php.ini:
eaccelerator.debug = 0

> System: FreeBSD-6.1 with the latest ports collection

next time please read eaccelerator's documentation :-)

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


Re: urgent: I just rm-r a directory

2006-08-07 Thread Vesselin Peev
See also the recent discussion "remind me ... (file undelete on FreeBSD 
5.4)", 
http://groups.google.bg/group/mailing.freebsd.fs/browse_thread/thread/1d84ba42a36cde93/773ec6ce75b8e6e1 
. Note the mentioned locations and tools, "ports/sysutils/autopsy", 
"sleuthkit", "unrm" and "lazarus".



From: Ian Lord <[EMAIL PROTECTED]>
To: freebsd-questions@freebsd.org
Subject: Re: urgent: I just rm-r a directory
Date: Mon, 07 Aug 2006 08:44:48 -0400

Thanks to all how had replyed to me :)

I'm from a dos/windows world so I was hoping for an "undelete utility" On 
fat partitions data is not deleted, it's just flag as deleted,  so I though 
it was the same for freebsd.


Seems like I'll have to call the company that store our tapes offsite to 
recover :)


Thanks to all

At 20:34 2006-08-06, jan gestre wrote:

On 8/7/06, Ian Lord <[EMAIL PROTECTED]> wrote:


I did a rm-r by mistake on a directory... any way to recover ?

Help please :(

_


if you don't have back ups of the directory concerned, i'm sorry to inform
you that you won't be able to recover it. a word of advise, at least make
the rm with -i switch to make it interactive, that way it will ask you 
first

before deleting, good thing though it's not your "/" you deleted :D
___
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]"



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


GVINUM Configuration file Quickie -- Swap and Var on Raid-0 striped

2006-08-07 Thread backyard1454-nospam
I have a simple quick little question for somemore
more familiar with gvinum then myself. I've read
through examples and what not and have come up with
the following config file. I basically want 3g of swap
space on a striped RAID-0 for swap space, tmp will use
some of the swap space through an md device. Var will
get the remaining space for its thing. 

I have set the stripe size for swap at 4096 to match
the block size of swap memory and mazimize output
across devices. I've set the stripe size of var at 64k
so it can handle small logs and what not. I don't know
if those values are the optimal though. I selected the
subdisk size for my swap partition and left as 0 for
var, as my reading suggests this should take whatever
is left.

# gvinum.conf.RAW
drive foo device /dev/da0s1a 
drive bar device /dev/da1s1a
volume mem
plex org striped 4096
sd length 1534m drive foo
sd length 1534m drive bar
volume variable
plex org striped 64k
sd length 0 drive foo
sd length 0 drive bar
# EOF gvinum.conf.RAW

after creating the partitions I need with:

fdisk -I /dev/da0; fdisk -I /dev/da1
bsdlabel -we /dev/da0s1; bsdlabel -we /dev/da1s1

I should be able to
gvinum -f gvinum.conf.RAW

to make the volumes I want correct?

also I know the fdisk command uses the whole drive but
does that command switch dangerouly dedicate the
drives? these drives will not be used for booting so I
don't care about anything but capacity and output
speed.

I can handle the rest of the configuration but I want
the raid building experience to be relatively
painless.

thanks

-brian


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


GVINUM Configuration file Quickie -- Swap and Var on Raid-0 striped

2006-08-07 Thread backyard
sorry if you get this twice I forgot which address was
my list address and the moderator mayget to my other
post...

I have a simple quick little question for somemore
more familiar with gvinum then myself. I've read
through examples and what not and have come up with
the following config file. I basically want 3g of swap
space on a striped RAID-0 for swap space, tmp will use
some of the swap space through an md device. Var will
get the remaining space for its thing. 

I have set the stripe size for swap at 4096 to match
the block size of swap memory and mazimize output
across devices. I've set the stripe size of var at 64k
so it can handle small logs and what not. I don't know
if those values are the optimal though. I selected the
subdisk size for my swap partition and left as 0 for
var, as my reading suggests this should take whatever
is left.

# gvinum.conf.RAW
drive foo device /dev/da0s1a 
drive bar device /dev/da1s1a
volume mem
plex org striped 4096
sd length 1534m drive foo
sd length 1534m drive bar
volume variable
plex org striped 64k
sd length 0 drive foo
sd length 0 drive bar
# EOF gvinum.conf.RAW

after creating the partitions I need with:

fdisk -I /dev/da0; fdisk -I /dev/da1
bsdlabel -we /dev/da0s1; bsdlabel -we /dev/da1s1

I should be able to
gvinum -f gvinum.conf.RAW

to make the volumes I want correct?

also I know the fdisk command uses the whole drive but
does that command switch dangerouly dedicate the
drives? these drives will not be used for booting so I
don't care about anything but capacity and output
speed.

I can handle the rest of the configuration but I want
the raid building experience to be relatively
painless.

thanks

-brian


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


Re: eaccelerator hit: log msgs

2006-08-07 Thread dick hoogendijk
On Mon, 7 Aug 2006 15:30:30 +0200
Daniel Gerzo <[EMAIL PROTECTED]> wrote:
> put this into php.ini:
> eaccelerator.debug = 0
> next time please read eaccelerator's documentation :-)

I did. I also read the eaccelerator.ini.example file but did not know
(or guess) that these options could go into php.ini. Sorry. Now I know
I can finetune eaacelerator if needed ;-)

-- 
dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.1 ++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using pre-built packages with portmanager

2006-08-07 Thread cpghost
On Mon, Aug 07, 2006 at 10:24:48AM +0200, Jonathan McKeown wrote:
> On Saturday 05 August 2006 19:16, cpghost wrote:
> 
> > How do I get portmanager to upgrade ports, using
> >   1. pre-built packages from /usr/ports/packages (ONLY),
> > and only if there's no binary package there,
> >   2. build from source as usual?
> >
> > Additional limit (preventing use of portupgrade -P) is that only
> > local (/usr/ports/packages), and no remote packages should be
> > used.
> 
> Edit /usr/local/etc/pkgtools.conf and add
> 
> ENV['PKG_FETCH'] = '/usr/bin/false'
> 
> portupgrade will look for a local package, then try and fetch a package 
> remotely using false(1) - which will fail because that's what false(1) does - 
> and portupgrade will then build the port.

That's a great idea for portupgrade! Thank you!

It's still not clear how portmanager (instead of portupgrade) would
behave, but I'll give it a try.

> Jonathan

Thanks again,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


error when installing /usr/ports/x11-toolkits/gtk20

2006-08-07 Thread Alan Curtis

When doing a portupgrade, I ran into this error. Any ideas?

gdkdrawable-x11.c:32:24: cairo-xlib.h: No such file or directory
gdkdrawable-x11.c: In function `_gdk_x11_drawable_update_size':
gdkdrawable-x11.c:264: warning: implicit declaration of function
`cairo_xlib_surface_set_size'
gdkdrawable-x11.c: In function `gdk_x11_ref_cairo_surface':
gdkdrawable-x11.c:1479: warning: implicit declaration of function
`cairo_xlib_surface_create'
gdkdrawable-x11.c:1482: warning: assignment makes pointer from integer
without a cast
gdkdrawable-x11.c:1484: warning: implicit declaration of function
`cairo_xlib_surface_create_for_bitmap'
gdkdrawable-x11.c:1487: warning: assignment makes pointer from integer
without a cast
*** Error code 1

Stop in /usr/ports/x11-toolkits/gtk20/work/gtk+-2.8.20/gdk/x11.
*** Error code 1

Stop in /usr/ports/x11-toolkits/gtk20/work/gtk+-2.8.20/gdk.
*** Error code 1

Stop in /usr/ports/x11-toolkits/gtk20/work/gtk+-2.8.20/gdk.
*** Error code 1

Stop in /usr/ports/x11-toolkits/gtk20/work/gtk+-2.8.20.
*** Error code 1

Stop in /usr/ports/x11-toolkits/gtk20/work/gtk+-2.8.20.
*** Error code 1
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using pre-built packages with portmanager

2006-08-07 Thread RW
On Saturday 05 August 2006 18:16, cpghost wrote:
> Building packages for multiple machines on a fast CPU,
> with portmanager's -bu option populates a /usr/ports/packages tree.
> So far, so good.
>
> What I'd like though, is to be able to reuse that tree (mounted via
> NFS or rsynced over) on other machines with much slower CPUs.
>
> The fast build machine and the other slow machines are not synchronized
> w.r.t. the set of installed ports. What is needed is that portmanager
> uses packages from /usr/ports/packages if available, and compiles from
> source the remaining ports.

A key design feature of portmanager is that everything is built with 
up-to-date dependencies, having this kind of feature would, in general, 
defeat that.

In any case according to the man page -b means "Keep backup packages of the 
old versions." 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Using pre-built packages with portmanager

2006-08-07 Thread cpghost
On Mon, Aug 07, 2006 at 04:03:00PM +0100, RW wrote:
> On Saturday 05 August 2006 18:16, cpghost wrote:
> > Building packages for multiple machines on a fast CPU,
> > with portmanager's -bu option populates a /usr/ports/packages tree.
> > So far, so good.
> >
> > What I'd like though, is to be able to reuse that tree (mounted via
> > NFS or rsynced over) on other machines with much slower CPUs.
> >
> > The fast build machine and the other slow machines are not synchronized
> > w.r.t. the set of installed ports. What is needed is that portmanager
> > uses packages from /usr/ports/packages if available, and compiles from
> > source the remaining ports.
> 
> A key design feature of portmanager is that everything is built with 
> up-to-date dependencies, having this kind of feature would, in general, 
> defeat that.

Why would that? The port trees themselves are synchronized; just the
set of installed ports ain't. The packages generated on the different
machines are absolutely identical AFAICS; including their dependencies.
There's no point in recompiling them separately if the result is the
same on all machines. That's why I'd like to reuse the newly created
packages.

> In any case according to the man page -b means "Keep backup packages of the 
> old versions." 

>From portmanager(1):

  -bu or --back-up
  Make packages of updated ports

The new/updated ports are being created with pkg_create(1) (after
compilation). It's not about old versions...

Thanks,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: so for kicks, i just ...

2006-08-07 Thread RW
On Monday 07 August 2006 02:57, Jonathan Horne wrote:
> i just decided to take a box, and installworld, without going to single
> user mode.  from what i can see, the update was completely successful.  of
> course, other then myself (su'd to root), there were no other users logged
> in).
>
> i wonder how many people are brave enough, and do actually installworld
> without changing to single user mode?  i wonder what is truly at risk from
> not going to single mode?

I always do that on point releases. but given the infrequency of releases it 
doesn't seem worth saving any effort there. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: SAMBA as Domain Controller on FreeBSD 6.1

2006-08-07 Thread bsd
> Hello everyone!
>
> Good Day!
>
> I am using FreeBSD 6.1/6.x version of Operating System. I plan to
> switch my existing PDC Win2k Advanced server to FreeBSD with the
> power of Samba. Anybody may I know of how would you setup SAMBA as
> PDC in FreeBSD 6.x? I know this is not good question for asking HOWTO
> but the good procedures and right samba configurations might lead me
> up during installation process.
>
> I am hoping for your kind consideration and favorable response.
>
> Great many thanks.
>
> Regards,
>
> James G. Corteciano
>

James,

There are good examples on the Samba site. You just have to be aware that
file locations are different on Freebsd and some commands don't exist.
Having said that they are a godd source.

Rob

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


Re: SAMBA as Domain Controller on FreeBSD 6.1

2006-08-07 Thread Atom Powers

Also check out The Official Samba 3 HowTo and Reference Guide.
First chapter gives you the configurations you need to set up a PDC.
Then it goes into all the nasty details.

On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> Hello everyone!
>
> Good Day!
>
> I am using FreeBSD 6.1/6.x version of Operating System. I plan to
> switch my existing PDC Win2k Advanced server to FreeBSD with the
> power of Samba. Anybody may I know of how would you setup SAMBA as
> PDC in FreeBSD 6.x? I know this is not good question for asking HOWTO
> but the good procedures and right samba configurations might lead me
> up during installation process.
>
> I am hoping for your kind consideration and favorable response.
>
> Great many thanks.
>
> Regards,
>
> James G. Corteciano
>

James,

There are good examples on the Samba site. You just have to be aware that
file locations are different on Freebsd and some commands don't exist.
Having said that they are a godd source.

Rob

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




--
--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: so for kicks, i just ...

2006-08-07 Thread backyard


--- RW <[EMAIL PROTECTED]> wrote:

> On Monday 07 August 2006 02:57, Jonathan Horne
> wrote:
> > i just decided to take a box, and installworld,
> without going to single
> > user mode.  from what i can see, the update was
> completely successful.  of
> > course, other then myself (su'd to root), there
> were no other users logged
> > in).
> >
> > i wonder how many people are brave enough, and do
> actually installworld
> > without changing to single user mode?  i wonder
> what is truly at risk from
> > not going to single mode?
> 
> I always do that on point releases. but given the
> infrequency of releases it 
> doesn't seem worth saving any effort there. 
> ___
> freebsd-questions@freebsd.org mailing list
>
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
> 

I used to do it on every install and only had issue
once, which was more and issue with mergemaster and
going line by line and not knowing to answer l and
r... with the merge option, something another
installworld fixed for me... But like yourself I never
have anybody but myself logged in. I got some old
serial multiplexors with a 10-base2 ethernet
connection for a serial console. for when I need to
actually worry about real users.

Has anybody had SERIOUS problems installingworld with
load on the system? It just seems like a potentially
bad idea, and have since started going to single user
for my updates nowadays.

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


Re: How do I set Mixer settings in stone.

2006-08-07 Thread Ariff Abdullah
On Sun, 6 Aug 2006 20:39:34 -0700
"Nikolas Britton" <[EMAIL PROTECTED]> wrote:
> After every reboot I need to run 'mixer ogain 85'. I'd like to never
  ^^
> have to do this again. How do I tell this to FreeBSD? I've tried
> yelling at him, for example:
> 
> FreeBSD! Stop resetting the mixer ogain! damit!
> 
> But this never works.
> 
> 
Don't use "reboot", "halt" while in multi-user mode.
Use "shutdown -{r,h} now", instead.

http://www.freebsd.org/cgi/query-pr.cgi?pr=96501

Just... DON'T :)


--
Ariff Abdullah
FreeBSD


pgpLkYutKdtfN.pgp
Description: PGP signature


Re: Using pre-built packages with portmanager

2006-08-07 Thread RW
On Monday 07 August 2006 16:12, cpghost wrote:
> On Mon, Aug 07, 2006 at 04:03:00PM +0100, RW wrote:

> > A key design feature of portmanager is that everything is built with
> > up-to-date dependencies, having this kind of feature would, in general,
> > defeat that.
>
> Why would that? The port trees themselves are synchronized; just the
> set of installed ports ain't. The packages generated on the different
> machines are absolutely identical AFAICS; including their dependencies.
> There's no point in recompiling them separately if the result is the
> same on all machines. That's why I'd like to reuse the newly created
> packages.

But it would be very complicated for portmanager to determine whether a 
package file meets it's exacting standards for "up-to-date", especially since 
most people that would want to use such a feature, would want to get 6-stable 
packages. 

The developer always said that he wanted it to be a simple way of keeping a 
system up-to-date from source, and not general purpose ports/package tool. 
And AFAIK he's lost interest in it.

What you might do is compile your collection of packages, install them with 
portupgrade and optionally run portmanager after to clean up any problems.


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


Re: Using pre-built packages with portmanager

2006-08-07 Thread cpghost
On Mon, Aug 07, 2006 at 05:40:23PM +0100, RW wrote:
> On Monday 07 August 2006 16:12, cpghost wrote:
> > On Mon, Aug 07, 2006 at 04:03:00PM +0100, RW wrote:
> 
> > > A key design feature of portmanager is that everything is built with
> > > up-to-date dependencies, having this kind of feature would, in general,
> > > defeat that.
> >
> > Why would that? The port trees themselves are synchronized; just the
> > set of installed ports ain't. The packages generated on the different
> > machines are absolutely identical AFAICS; including their dependencies.
> > There's no point in recompiling them separately if the result is the
> > same on all machines. That's why I'd like to reuse the newly created
> > packages.
> 
> But it would be very complicated for portmanager to determine whether a 
> package file meets it's exacting standards for "up-to-date", especially since 
> most people that would want to use such a feature, would want to get 6-stable 
> packages. 
> 
> The developer always said that he wanted it to be a simple way of keeping a 
> system up-to-date from source, and not general purpose ports/package tool. 
> And AFAIK he's lost interest in it.

That's sad. It was such a nice tool.

> What you might do is compile your collection of packages, install them with 
> portupgrade and optionally run portmanager after to clean up any problems.

Yup, that's the trick! Thanks again for the hints! :)

Regards,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sendmail Question; unable to send mail as normal user

2006-08-07 Thread Frank Staals

Frank Staals wrote:
I tried to setup my own mail and smtp-server with help from this 
webpage:  http://www.puresimplicity.net/~hemi/freebsd/sendmail.html . 
I sucessfully installed imap-uw and I got it up successfully. 
Allthough the stmp-part doesn't work for 100% yet: I can send mail as 
root :



Thanks in advance

Jonathan Horne wrote:

greetings frank, this reply is out of the list.

you need to at a minimum take a look at the file /etc/mail/access, or, as an 
even better alternative, consider installing/configuring sasl2-saslauthd and 
have people who send thru authenticate via plain.


if you would like to see an article i wrote on this, if you follow it line by 
line, you should have no problems getting it to work.


http://dfwlpiki.dfwlp.org/index.php/Deploying_a_FreeBSD_Server#Configuring_Mail_Services

if i can be of any assistance with my article, feel free to drop me a line.  i 
can be reached via this email address, or on aim/yahoo as LoudRedZ71.


cheers and good luck,
jonathan

On Friday 04 August 2006 17:08, you wrote:
  

I tried to setup my own mail and smtp-server with help from this






  
I've gotten a bit further this weekend but I'm not 'there' yet. I could 
sucessfully send a e-mail by using 'mail' as normal user at my server. 
Allthough when I tried to send an e-mail from my laptop with my server 
as smtp server it kept prompting for my password and this is what was 
displayed in /var/log/maillog :


Aug  5 11:40:36 FStaals sm-mta[101]: k759eEva000101: Riza.FStaals.LAN 
[192.168.2.5] did not issue MAIL/EXPN/VRFY/ETRN during connection to IPv4


When I googled if I could find a solution I came to this page :  
http://www.issociate.de/board/post/246978/did_not_issue_MAIL/EXPN/VRFY/ETRN_during_connection_to_MTA.html 
The solution oppered there was to add ' mech_list: login plain' to 
/usr/local/lib/sasl2/Sendmail.conf . So I did and it kind of worked, 
allthough now I can only send e-mail to other users at my server ( for 
example root ), when I try to mail to an external adress my log 'says' 
my message is rejected:


Aug  5 13:10:30 FStaals sm-mta[1495]: k75BATko001495: 
ruleset=check_rcpt, arg1=<
[EMAIL PROTECTED]>, relay=Riza.FStaals.LAN [192.168.2.5], reject=550 
5.7.1 
[EMAIL PROTECTED]>... Relaying denied
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: lost input channel 
from Ri

za.FStaals.LAN [192.168.2.5] to IPv4 after rcpt
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: 
from=<[EMAIL PROTECTED]>,
size=373, class=0, nrcpts=0, proto=ESMTP, daemon=IPv4, 
relay=Riza.FStaals.LAN [1

92.168.2.5]


I'm not sure what I have to do to get working correctly and I was hoping 
someone could give me some hints what I'm doing wrong. Also I'm not sure 
if it's a good idea to add the 'mech_list: login plain' to sasl2's 
Sendmail.conf ? Last but not least : I want sendmail to use SSL and 
listen to port 465. sockstat shows It isn't listening to that port, but 
I think it should, does anyone happen to know what it is I'm doing wrong 
at that point:


[EMAIL PROTECTED] sockstat -4 | grep sendmail
root sendmail   1410  3  tcp4   *:25  *:*
root sendmail   1410  5  tcp4   *:587 *:*

[EMAIL PROTECTED] cat /etc/mail/FStaals.net.cf | grep smtps
O DaemonPortOptions=Port=smtps, Name=TLSMTA, M=s

Many thanks,

--
-Frank Staals




--
-Frank Staals


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


Re: Howto insert string. (Was: Re: [freebsd-questions] awk quickie.)

2006-08-07 Thread Garrett Cooper

Kurt Wall wrote:

On Mon, Aug 07, 2006 at 07:13:03AM -0400, Kurt Wall wrote:
  

On Sun, Aug 06, 2006 at 03:47:32PM -0700, Gary Kline wrote:

	I've got 80 or so html/php files. Most do have 

	 


but a whole slew do not/are missing the BG color code.
	So is there some scripto-magic way of finding out which fles are 
	missing the above string?  I know how, using an ed/ex script to
	insert this string.  
  

I'd probably do "grep -vi bgcolor filename"



[bad form to reply to my own post, etc.]

Doh! You want to *insert* the string, not (just) find the ones that 
don't have it. My ed/ex chops blow, so with sed:


sed -i '' 's///' file_name

Kurt
You may just want to use CSS as well instead of hardcoding in HTML 
values like that. The background-color property is pretty much common 
and universal in all browsers, since CSS 1.0(/1.1?).

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


Re: Sendmail Question; unable to send mail as normal user

2006-08-07 Thread Derek Ragona

Make sure you have the following files in /etc/mail setup:
local-host-names
domaintable
mailertable

These last two need a database file too which is make by:
/usr/sbin/makemap hash domaintable < domaintable
/usr/sbin/makemap hash mailertable < mailertable

-Derek


At 12:41 PM 8/7/2006, Frank Staals wrote:

Frank Staals wrote:
I tried to setup my own mail and smtp-server with help from this 
webpage:  http://www.puresimplicity.net/~hemi/freebsd/sendmail.html . I 
sucessfully installed imap-uw and I got it up successfully. Allthough the 
stmp-part doesn't work for 100% yet: I can send mail as root :



Thanks in advance

Jonathan Horne wrote:

greetings frank, this reply is out of the list.

you need to at a minimum take a look at the file /etc/mail/access, or, as 
an even better alternative, consider installing/configuring 
sasl2-saslauthd and have people who send thru authenticate via plain.


if you would like to see an article i wrote on this, if you follow it 
line by line, you should have no problems getting it to work.


http://dfwlpiki.dfwlp.org/index.php/Deploying_a_FreeBSD_Server#Configuring_Mail_Services

if i can be of any assistance with my article, feel free to drop me a 
line.  i can be reached via this email address, or on aim/yahoo as LoudRedZ71.


cheers and good luck,
jonathan

On Friday 04 August 2006 17:08, you wrote:


I tried to setup my own mail and smtp-server with help from this








I've gotten a bit further this weekend but I'm not 'there' yet. I could 
sucessfully send a e-mail by using 'mail' as normal user at my server. 
Allthough when I tried to send an e-mail from my laptop with my server as 
smtp server it kept prompting for my password and this is what was 
displayed in /var/log/maillog :


Aug  5 11:40:36 FStaals sm-mta[101]: k759eEva000101: Riza.FStaals.LAN 
[192.168.2.5] did not issue MAIL/EXPN/VRFY/ETRN during connection to IPv4


When I googled if I could find a solution I came to this page :
http://www.issociate.de/board/post/246978/did_not_issue_MAIL/EXPN/VRFY/ETRN_during_connection_to_MTA.html 
The solution oppered there was to add ' mech_list: login plain' to 
/usr/local/lib/sasl2/Sendmail.conf . So I did and it kind of worked, 
allthough now I can only send e-mail to other users at my server ( for 
example root ), when I try to mail to an external adress my log 'says' my 
message is rejected:


Aug  5 13:10:30 FStaals sm-mta[1495]: k75BATko001495: ruleset=check_rcpt, 
arg1=<
[EMAIL PROTECTED]>, relay=Riza.FStaals.LAN [192.168.2.5], reject=550 
5.7.1 
[EMAIL PROTECTED]>... Relaying denied
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: lost input channel 
from Ri

za.FStaals.LAN [192.168.2.5] to IPv4 after rcpt
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: 
from=<[EMAIL PROTECTED]>,
size=373, class=0, nrcpts=0, proto=ESMTP, daemon=IPv4, 
relay=Riza.FStaals.LAN [1

92.168.2.5]


I'm not sure what I have to do to get working correctly and I was hoping 
someone could give me some hints what I'm doing wrong. Also I'm not sure 
if it's a good idea to add the 'mech_list: login plain' to sasl2's 
Sendmail.conf ? Last but not least : I want sendmail to use SSL and listen 
to port 465. sockstat shows It isn't listening to that port, but I think 
it should, does anyone happen to know what it is I'm doing wrong at that point:


[EMAIL PROTECTED] sockstat -4 | grep sendmail
root sendmail   1410  3  tcp4   *:25  *:*
root sendmail   1410  5  tcp4   *:587 *:*

[EMAIL PROTECTED] cat /etc/mail/FStaals.net.cf | grep smtps
O DaemonPortOptions=Port=smtps, Name=TLSMTA, M=s

Many thanks,

--
-Frank Staals




--
-Frank Staals


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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


/tmp permissions

2006-08-07 Thread dick hoogendijk
Today I read that /tmp always is "noexec".
That should probably be on linux, because on my fbsd-6.1 box it's "rw"
and that's it.

Question: should I change /tmp to "rw,noexec" to be safer?

-- 
dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.1 +++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sendmail Question; unable to send mail as normal user

2006-08-07 Thread Greg Groth
I've gotten a bit further this weekend but I'm not 'there' yet. I could 
sucessfully send a e-mail by using 'mail' as normal user at my server. 
Allthough when I tried to send an e-mail from my laptop with my server 
as smtp server it kept prompting for my password and this is what was 
displayed in /var/log/maillog :


Aug  5 11:40:36 FStaals sm-mta[101]: k759eEva000101: Riza.FStaals.LAN 
[192.168.2.5] did not issue MAIL/EXPN/VRFY/ETRN during connection to IPv4


When I googled if I could find a solution I came to this page :  
http://www.issociate.de/board/post/246978/did_not_issue_MAIL/EXPN/VRFY/ETRN_during_connection_to_MTA.html 
The solution oppered there was to add ' mech_list: login plain' to 
/usr/local/lib/sasl2/Sendmail.conf . So I did and it kind of worked, 
allthough now I can only send e-mail to other users at my server ( for 
example root ), when I try to mail to an external adress my log 'says' 
my message is rejected:


Aug  5 13:10:30 FStaals sm-mta[1495]: k75BATko001495: 
ruleset=check_rcpt, arg1=<
[EMAIL PROTECTED]>, relay=Riza.FStaals.LAN [192.168.2.5], reject=550 
5.7.1 
[EMAIL PROTECTED]>... Relaying denied
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: lost input channel 
from Ri

za.FStaals.LAN [192.168.2.5] to IPv4 after rcpt
Aug  5 13:10:34 FStaals sm-mta[1495]: k75BATko001495: 
from=<[EMAIL PROTECTED]>,
size=373, class=0, nrcpts=0, proto=ESMTP, daemon=IPv4, 
relay=Riza.FStaals.LAN [1

92.168.2.5]


I'm not sure what I have to do to get working correctly and I was hoping 
someone could give me some hints what I'm doing wrong. Also I'm not sure 
if it's a good idea to add the 'mech_list: login plain' to sasl2's 
Sendmail.conf ? Last but not least : I want sendmail to use SSL and 
listen to port 465. sockstat shows It isn't listening to that port, but 
I think it should, does anyone happen to know what it is I'm doing wrong 
at that point:


[EMAIL PROTECTED] sockstat -4 | grep sendmail
root sendmail   1410  3  tcp4   *:25  *:*
root sendmail   1410  5  tcp4   *:587 *:*

[EMAIL PROTECTED] cat /etc/mail/FStaals.net.cf | grep smtps
O DaemonPortOptions=Port=smtps, Name=TLSMTA, M=s

Many thanks,



Telnet to port 25 on the mail server.  Once connected, issue an EHLO 
command and look for the AUTH line - for example:


# telnet localhost 25
Trying ::1...
Connected to localhost.servername.com.
Escape character is '^]'.
220 mail.servername.com ESMTP Sendmail 8.13.4/8.13.4; Mon, 7 Aug 2006 
13:11:37 -0500 (CDT)


EHLO localhost

250-mail.servername.com Hello localhost.servername.com [127.0.0.1], 
pleased to meet you

250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-AUTH PLAIN LOGIN
250-DELIVERBY
250 HELP

If you don't see PLAIN LOGIN, you have a problem in how Sendmail was 
compiled.  As far as getting SSL up and running, I had better luck using 
stunnel instead of compiling SSL into each service.  With one 
certificate to manage, I now have SSL encryption on IMAP, POP3, SMTP & 
HTTP.  Of course the sites that are being protected are for internal use 
at our company, so no one complains that we're using a self-signed 
certificate and the names don't match, YMMV.


 If Sendmail does return the right AUTH parameters, and you're still 
having issues, test saslauthd.  Make sure you have the following in 
Sendmail.conf:


pwcheck_method: saslauthd

I have not needed to add "'mech_list: login plain'" to Sendmail.conf to 
get this to work.


Make sure saslauthd is running.  If not then:

/usr/local/etc/rc.d/./saslauthd start

test the authentication:

# /usr/local/sbin/testsaslauthd -u username -p password
0: OK "Success."

If you get an error with saslauthd at this point, the problem is there. 
 If this works OK, but you're not getting the right AUTH response 
during your telnet connection, your problem is probably how Sendmail was 
compiled.


HTH.

If all seems to be in order, and you're still having issues, what other 
ports do you have on the machine?  I've run into problems the same as 
yours with both Postfix and Sendmail after installing quite a few other 
ports.  During my last rebuild, I installed Postfix and sasl2 out of the 
gate, and have had no issues.  I think in my case, something else I 
installed before the MTA & SASL2 screwed something up, but I could not 
determine where the fault was and ended up reinstalling.


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


Re: /tmp permissions

2006-08-07 Thread Russell Meek

Quoting dick hoogendijk <[EMAIL PROTECTED]>:


Today I read that /tmp always is "noexec".
That should probably be on linux, because on my fbsd-6.1 box it's "rw"
and that's it.

Question: should I change /tmp to "rw,noexec" to be safer?

--
dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 6.1 +++ The Power to Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



Dick,

Yes, noexec is a good this security wise.  You could also add nosuid  
depending upon what you may need /tmp for.


Most "kiddie scripts" will attempt to run items out of /tmp, by adding  
noexec you prevent items from executing out of the applied directory.


Thanks,

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


Re: /tmp permissions

2006-08-07 Thread Matthew Seaman
dick hoogendijk wrote:
> Today I read that /tmp always is "noexec".
> That should probably be on linux, because on my fbsd-6.1 box it's "rw"
> and that's it.
> 
> Question: should I change /tmp to "rw,noexec" to be safer?

It will screw up your ability to do 'make buildworld', but other than
that, is generally harmless.

In order for something like that to be effective though, you'ld have
to ensure that there weren't any world writeable directories on your
system on partitions that allowed processes to be exec'd from them.
Similarly you'ld have to ensure that any account liable to compromise
does not have any directories around where it can write files and
execute them from.  Which is actually quite reasonable to do for most 
of the UIDs that exist solely to own network server processes.

However, at that level of paranoia, judicious use of chroot(2) or
jail(2) would be indicated -- so banishing network servers into corners
of your disk space with no /tmp accessible on them at all.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


FYI: USB wireless on FreeBSD 6.1 Release via ural driver

2006-08-07 Thread Andrew Gould
Given the occasional question regarding wireless
adapters on this list, and that I didn't see this in
the hardware notes, I thought I'd post a message:

The D-Link DWL-G122 version B1 is compatible with
FreeBSD 6.1 Release on the i386 architecture.  This is
a USB, 802.11g adapter.  Please note that the hardware
version number is important as some manufacturers like
to change chipsets without changing model numbers.

This adapter uses the ural driver.  When I plugged the
adapter into the USB port, it was identified correctly
as ural0.  Network configuration using ifconfig was
standard, except that the wlan_wep module had to be
loaded manually before the adapter could be configured
with a WEP code.

You can find a list of compatible, adapters in the
ural man page.  Remember to pay close attention to
hardware version numbers.

Best regards,

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


Need help! Apache core dumps when running startssl

2006-08-07 Thread Andreas Widerøe Andersen

Hi,
I recently upgraded one of my production servers to FreeBSD 4.11 p19 and
then upgraded all ports. I'm now running Apache 1.3.36 mod_ssl and Php 4.4.2
.

I had Squirrelmail running on https and now I can't start Apache with ssl.
Every time it coredumps. I've tried snakeoil and my own cert. Same thing
happens.

This is the error message I can see from my httpd-error.log:

[Mon Aug  7 20:20:03 2006] [notice] caught SIGTERM, shutting down

ssl-engine log:

[07/Aug/2006 20:29:01 16880] [info]  Server: Apache/1.3.36, Interface:
mod_ssl/2.8.27, Library: OpenSSL/0.9.8b
[07/Aug/2006 20:29:01 16880] [info]  Init: 1st startup round (still not
detached)
[07/Aug/2006 20:29:01 16880] [info]  Init: Initializing OpenSSL library
[07/Aug/2006 20:29:01 16880] [info]  Init: Loading certificate & private key
of SSL-aware server my.domain.com:443
[07/Aug/2006 20:29:01 16880] [info]  Init: Seeding PRNG with 136 bytes of
entropy
[07/Aug/2006 20:29:01 16880] [info]  Init: Generating temporary RSA private
keys (512/1024 bits)

from messages:

Aug  7 20:34:52 server /kernel: pid 17041 (httpd), uid 0: exited on signal
11 (core dumped)

That's it. I can't find any other logs and I can't tell what's wrong.

What could it be and what can I do? I have checked the httpd.conf file and
compared the previous version with the new dist. Same directives related to
ssl virtualhost as far as I can see.

Hope to get some input.

Thanks & Best regards,
Andreas W. Andersen
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sendmail Question; unable to send mail as normal user

2006-08-07 Thread Frank Staals

Greg Groth wrote:
I've gotten a bit further this weekend but I'm not 'there' yet. I 
could sucessfully send a e-mail by using 'mail' as normal user at my 
server. Allthough when I tried to send an e-mail from my laptop with 
my server as smtp server it kept prompting for my password and this 
is what was displayed in /var/log/maillog :






Many thanks,



Telnet to port 25 on the mail server.  Once connected, issue an EHLO 
command and look for the AUTH line - for example:


# telnet localhost 25
Trying ::1...
Connected to localhost.servername.com.
Escape character is '^]'.
220 mail.servername.com ESMTP Sendmail 8.13.4/8.13.4; Mon, 7 Aug 2006 
13:11:37 -0500 (CDT)


EHLO localhost

250-mail.servername.com Hello localhost.servername.com [127.0.0.1], 
pleased to meet you

250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-AUTH PLAIN LOGIN
250-DELIVERBY
250 HELP

If you don't see PLAIN LOGIN, you have a problem in how Sendmail was 
compiled.

Hmm I guess that sould be the problem then:

[EMAIL PROTECTED] telnet localhost 25
Trying ::1...
Trying 127.0.0.1...
Connected to localhost.eu.org
Escape character is '^]'.
220 Fstaals.net ESMTP Sendmail 8.13.3/8.13.3; Mon, 7 Aug 2006 20:31:30 
+0200 (CE

ST)
EHLO localhost
250-Fstaals.net Hello localhost.eu.org [127.0.0.1], pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-DELIVERBY
250 HELP

I compiled sendmail with the following options:

[EMAIL PROTECTED] cat /etc/make.conf
# SASL (cyrus-sasl v2) sendmail build flags...
SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS=-L/usr/local/lib
SENDMAIL_LDADD=-lsasl2
# Adding to enable alternate port (smtps) for sendmail...
SENDMAIL_CFLAGS+= -D_FFR_SMTP_SSL
# added by use.perl 2006-03-02 22:35:07
PERL_VER=5.8.8
PERL_VERSION=5.8.8

What should I do fix this ? Appart from those lines in /etc/make.conf I 
didn't change anything regarding to the build of sendmail


Regards,

--
-Frank Staals


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


Re: /tmp permissions

2006-08-07 Thread Jan Grant
On Mon, 7 Aug 2006, dick hoogendijk wrote:

> Today I read that /tmp always is "noexec".
> That should probably be on linux, because on my fbsd-6.1 box it's "rw"
> and that's it.
> 
> Question: should I change /tmp to "rw,noexec" to be safer?

Not necessaily, but you might want to consider adding "nosymfollow"

-- 
jan grant, ISYS, University of Bristol. http://www.bris.ac.uk/
Tel +44 (0)117 3317661   http://ioctl.org/jan/
Whenever I see a dog salivate I get an insatiable urge to ring a bell.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Howto insert string. (Was: Re: [freebsd-questions] awk quickie.)

2006-08-07 Thread Gary Kline
On Mon, Aug 07, 2006 at 10:47:47AM -0700, Garrett Cooper wrote:
> Kurt Wall wrote:
> >On Mon, Aug 07, 2006 at 07:13:03AM -0400, Kurt Wall wrote:
> >  
> >>On Sun, Aug 06, 2006 at 03:47:32PM -0700, Gary Kline wrote:
> >>
> >>>   I've got 80 or so html/php files. Most do have 
> >>>
> >>>
> >>>
> >>>   but a whole slew do not/are missing the BG color code.
> >>>   So is there some scripto-magic way of finding out which fles are 
> >>>   missing the above string?  I know how, using an ed/ex script to
> >>>   insert this string.  
> >>>  
> >>I'd probably do "grep -vi bgcolor filename"
> >>
> >
> >[bad form to reply to my own post, etc.]
> >
> >Doh! You want to *insert* the string, not (just) find the ones that 
> >don't have it. My ed/ex chops blow, so with sed:
> >
> >sed -i '' 's///' file_name
> >
> >Kurt
> You may just want to use CSS as well instead of hardcoding in HTML 
> values like that. The background-color property is pretty much common 
> and universal in all browsers, since CSS 1.0(/1.1?).
> -Garrett

Good thought, indeed.  Some (many) years back when I was looking at
preparing a book-length doc for the web with HTML I actually did
use the style-sheet method.  IIRC, it worked well with HTML-2.0.
But with my Jotting stuff it got a little fancier, bit-by-bit
until I had at least two jpegs/*php plus very light blue 
formatting [15%, 70%, 15%], and a textured.jpg "paper" bg on the 
70%.  That's 3 jpegs.   I don't know if you can do something like
that with CSS.  I wound up creating *one* html/php template, and
mouse cut-and-pasting my segue, then the meditation
and after a few hours it was good enough... .  

I'll check into the style sheets; thanks!

gary

PS:  I also checked out Don Knuth's TeX stuff, but that's way
 overkill :-)


-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

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


Intel 865GLC motherboad: microphone doesn'y work

2006-08-07 Thread Ilia Chipitsine

Dear Sirs,

is anybody running FreeBSD-6.1S on such motherboard ?

it complains on codecs... and microphone doesn't work (I used Ekiga):

jane# dmesg | grep pcm
pcm0:  mem 0xffa7f800-0xffa7f9ff,0xffa7f400-0xffa7f4ff 
irq 17 at device 31.5 on pci0
pcm0: primary codec not ready!
pcm0: 
jane#



jane# mixer
Mixer vol  is currently set to 100:100
Mixer pcm  is currently set to 100:100
Mixer speaker  is currently set to  75:75
Mixer line is currently set to  75:75
Mixer mic  is currently set to  75:75
Mixer cd   is currently set to  75:75
Mixer rec  is currently set to  75:75
Mixer igainis currently set to  75:75
Mixer ogainis currently set to  50:50
Mixer line1is currently set to  75:75
Mixer phin is currently set to  75:75
Mixer phoutis currently set to  75:75
Recording source: mic


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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, [EMAIL PROTECTED] wrote:


While I'm definately interested in the statistical reporting,  I do have
one suggestion:

Add a random "sleep" time to the update.

Otherwise,  the reporting server is gonna get HAMMERED once a month,
assuming this project gains any kind of momentum.

A random sleep timer at the beginning of the script over (for example) a 3
hour window could make the load bearable for the checkin server.Just
something to consider.


To be totally honest, 'load n the checkin server' isn't something I'm 
terribly worried about ... right now, we are at ~200 hosts checking in, 
from various time zones (see http://bsdstats.hub.org/bsd_statistics.php 
for countries that have checked in so far) ... so, even at month end, 
taking into consideration time zones, I don't expect a major hit ... now, 
if we get to 10's of thousands of hosts, which I'd *love*, then I may 
worry, but by then, I'll have a Dual-Core Dual CPU server in place that I 
can move the whole thing over onto ...


IMHO, its going to be a slow ramp up over a long period of time, but, as I 
mentioned earlier ... it has to start somewhere, and we've accomplished 
that ... now to get everyone actually checking in, now that will be a feat 
to see :)


I've also contacted folks @ NetBSD, OpenBSD and DragonflyBSD about 
participating ... again, our aim is to show that the *BSD camp is a market 
to look at, not just a group of hobbiests ...


 > >


I've now committed v2.0 of the 300.statistics periodic script ... this one
adds the device reporting that we'd talked about previously, and the
summary reports now reflect the driver(s) in use for those deciding to
report ...

This Phase of the script is optional, and not enabled by default ... I
can't think of any reason why you wouldn't want to report it, but just in
case someone feels it poses a problem, its an opt-in report ...

pkg-message updated to reflect the extra line you need to add to
/etc/periodic.conf:

 monthly_statistics_report_devices=yes

I've written it to report driver + chip= information from pciconf -l,
since even pciconf -lv doesn't seem to use card= ... the summary report
will be extended next to show both vendor and chip statistics ...

Let me know of any problems ...


Marc G. Fournier   Hub.Org Networking Services
(http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
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]"




Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sendmail Question; unable to send mail as normal user

2006-08-07 Thread Greg Groth

Hmm I guess that sould be the problem then:

[EMAIL PROTECTED] telnet localhost 25
Trying ::1...
Trying 127.0.0.1...
Connected to localhost.eu.org
Escape character is '^]'.
220 Fstaals.net ESMTP Sendmail 8.13.3/8.13.3; Mon, 7 Aug 2006 20:31:30 
+0200 (CE

ST)
EHLO localhost
250-Fstaals.net Hello localhost.eu.org [127.0.0.1], pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-DELIVERBY
250 HELP

I compiled sendmail with the following options:

[EMAIL PROTECTED] cat /etc/make.conf
# SASL (cyrus-sasl v2) sendmail build flags...
SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS=-L/usr/local/lib
SENDMAIL_LDADD=-lsasl2
# Adding to enable alternate port (smtps) for sendmail...
SENDMAIL_CFLAGS+= -D_FFR_SMTP_SSL
# added by use.perl 2006-03-02 22:35:07
PERL_VER=5.8.8
PERL_VERSION=5.8.8

What should I do fix this ? Appart from those lines in /etc/make.conf I 
didn't change anything regarding to the build of sendmail


Regards,



Need more info.  How did you recompile Sendmail?  For instance, I did a 
minimal install, updated my ports, installed cvsup-without-gui & 
fastest-cvsup, cvsupped my sources, ran a buildworld to get the base 
system up to date, then added the following to make.conf:


SENDMAIL_CFLAGS=-I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS=-L/usr/local/lib
SENDMAIL_LDADD=-lsasl2

installed sasl2 by compiling from the ports

then I recompiled Sendmail as follows:

cd /usr/src/usr.sbin/sendmail
make clean
make obj
make depend
make
make install

Once that was done, I went into /etc/mail and added the following to
freebsd.mc

define(`confAUTH_MECHANISMS',`PLAIN LOGIN')dnl
TRUST_AUTH_MECH(`PLAIN LOGIN')dnl

After saving the file, I ran the following in /etc/mail:

make all
make install
make restart

After which a telnet session showed the correct AUTH paramenters.

In the instances I had a screwup in which I could not resolve, I've made 
the following bonehead moves:


1. Ran make installworld without dropping to single-user mode
2. cvsupped to the wrong source tree due to my ignorance of the tags in 
the cvsup file.


My latest misadventures with getting PLAIN LOGIN working were on systems 
where I did everything correctly, but installed a number of ports prior 
to messing with the MTA.  This included Apache, PHP, MySQL, 
Squirrelmail, XOrg, KDE-lite, and whatever dependencies were needed. 
The same issue occured with trying to get PLAIN AUTH working with 
Postfix, and on a second box with Sendmail.  I ended up reinstalling, 
and focused on getting the MTA and SASL2 working immediately after 
getting the system up to date, and had no issues.


IMHO, worry about getting PLAIN LOGIN working before messing with 
compiling SSL support into Sendmail.  In my experience, configuring SSL 
can be a pain, making sure everything is where it's supposed to be.


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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Daniel Gerzo wrote:


Hello Marc,

Monday, August 7, 2006, 5:42:27 AM, you wrote:


I've now committed v2.0 of the 300.statistics periodic script ... this one
adds the device reporting that we'd talked about previously, and the
summary reports now reflect the driver(s) in use for those deciding to
report ...



I've written it to report driver + chip= information from pciconf -l,
since even pciconf -lv doesn't seem to use card= ... the summary report
will be extended next to show both vendor and chip statistics ...


Maybe it would be better if you strip the ending number from the
driver, so the page will list total number of driver usage not fxp0,
fxp1 totals and so on.


Agreed, I have to clean that up, but I can do that one the server side, 
without affecting the client side at all ... the only thing that I'm not 
sending across the wire is the none#@ entries, since, as far as I could 
determine, they represent devices found, but not in use ...


Seems like some people are already trying to be funny, because according 
to the page there are already people running (~40) FreeBSD 8.0-CURRENT 
:-) It's sad to see this to be happening.


Yup ... but, two things ... in most cases, finding 'funny ppl' won't be 
*too* difficult the way I have the backend setup (some are bound to always 
slip through, mind you), but the hope is that if enough legit ppl do check 
in, the 'fakers' will represent a small percentage of the total ...


We'll see how well practical and theory match up over time, mind you :)


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Thin terminals for FreeBSD

2006-08-07 Thread Nagy László


 Hello,

I need to setup an environment where some users (10 to 20 employees) 
will use terminals to run programs. They need to run a few popular 
programs: thunderbird, firefox, adobe acrobat, openoffice and gaim. This 
site will be a customer service. We decided to reduce the costs by using 
Open Source software and cheap terminal computers. This is a good 
solution because most of the users will read messages and images on the 
screen and they can share the same processor and memory easily. I know 
that I can setup cheap computers and use its X server as a terminal for 
another central computer. This solution still requires new (or used) 
computers. I would like to reduce the costs to the minimum. Here are 
some key questions that I could not answer:


- Is there a more cost-effective solution? (Something that I did not 
think of)
- How much RAM will I need? Will FireFox Thunderbird and OpenOffice load 
shared objects and reduce the overall memory usage? Or should I reserve 
256MB of memory for each client?
- Do I need to use gigabit ethernet? Or is it enough to use a normal 100 
Mbps wired network? I heard that there can be bandwidth problems when 
using many terminals, but I do not have experience.

- Are there any pitfalls that I need to be aware of?

It would be perfect to provide links to some articles or manuals - I do 
not need anyone to write detailed instuctions and do my job. I'm asking 
for help because the handbook was not very useful in this case. I only 
found this:


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/term.html#TERM-X

It does not help too much, and there is no know-how. I really need to 
know what hardware I need to buy.



Thank you

  Laszlo

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


freebsd commercial support

2006-08-07 Thread Tofik Suleymanov

Hello,

Is it possible to  commercially support FreeBSD without requesting any 
permission from the FreeBSD Foundation ?



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


Re: Help fixing sendmail crassh

2006-08-07 Thread Andreas Widerøe Andersen

Hi,

On 7/2/06, Giorgos Keramidas <[EMAIL PROTECTED]> wrote:


On 2006-07-02 11:32, Andreas Wider?e Andersen <[EMAIL PROTECTED]> wrote:
> Hi,
> Sendmail exits about every 30 minutes. I suspect it has to do with some
> mailqueues running, but I don't know how to stop or fix it.
>
> Running FreeBSD 4.11 p19
> Sendmail 8.13.1
>
> from /var/log/messages
>
> Jul  1 20:41:02 malibu /kernel: pid 50923 (sendmail), uid 0: exited on
signal 11
> Jul  1 21:08:59 malibu /kernel: pid 51058 (sendmail), uid 0: exited on
signal 11
> Jul  1 21:39:00 malibu /kernel: pid 51252 (sendmail), uid 0: exited on
signal 11
> Jul  1 22:07:39 malibu /kernel: pid 51374 (sendmail), uid 0: exited on
signal 11

Are other programs crashing with signal 11 too?  This may be a hardware
problem.  I've been running Sendmail on FreeBSD for ages without any
sign of signal 11:

# cd /var/log
# ( bzcat $( ls -d1 messages*bz2 | sort -r) ; cat messages ) | grep
'sendmail.*signal'
#



This shows a lot of Sendmail Signal 11 errors.


I was hoping someone could give me a hand here so I can get this issue
> resolved.

* What local configuration changes have you made to the standard
  freebsd.mc and freebsd.submit.mc files?



My freebsd.mc file from /etc/mail:

divert(0)
VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.10.2.19 2003/12/31
17:42:16 gshapiro Exp $')
OSTYPE(freebsd4)
DOMAIN(generic)

FEATURE(access_db, `hash -o -T /etc/mail/access')
FEATURE(blacklist_recipients)
FEATURE(local_lmtp)
FEATURE(mailertable, `hash -o /etc/mail/mailertable')
FEATURE(virtusertable, `hash -o /etc/mail/virtusertable')

dnl Uncomment to allow relaying based on your MX records.
dnl NOTE: This can allow sites to use your server as a backup MX without
dnl   your permission.
dnl FEATURE(relay_based_on_MX)

dnl DNS based black hole lists
dnl 
dnl DNS based black hole lists come and go on a regular basis
dnl so this file will not serve as a database of the available servers.
dnl For that, visit
dnl
http://directory.google.com/Top/Computers/Internet/Abuse/Spam/Blacklists/

dnl Uncomment to activate Realtime Blackhole List
dnl information available at http://www.mail-abuse.com/
dnl NOTE: This is a subscription service as of July 31, 2001
dnl FEATURE(dnsbl)
dnl Alternatively, you can provide your own server and rejection message:
dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `"550 Mail from "
$&{client_addr} " rejected, see htt
p://mail-abuse.org/cgi-bin/lookup?" $&{client_addr}')

dnl Dialup users should uncomment and define this appropriately
dnl define(`SMART_HOST', `your.isp.mail.server')

dnl Uncomment the first line to change the location of the default
dnl /etc/mail/local-host-names and comment out the second line.
dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw')
define(`confCW_FILE', `-o /etc/mail/local-host-names')

dnl Enable for both IPv4 and IPv6 (optional)
DAEMON_OPTIONS(`Name=IPv4, Family=inet')
dnl DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O')

define(`confBIND_OPTS', `WorkAroundBroken')
define(`confNO_RCPT_ACTION', `add-to-undisclosed')
define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy')
MAILER(local)
MAILER(smtp)

freebsd.submit.mc

divert(0)dnl
VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.submit.mc,v 1.1.2.1 2003/10/30
22:38:33 gshapiro Exp $'
)
define(`confCF_VERSION', `Submit')dnl
define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from complaining
define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet
define(`confTIME_ZONE', `USE_TZ')dnl
define(`confDONT_INIT_GROUPS', `True')dnl
define(`confBIND_OPTS', `WorkAroundBroken')dnl
dnl
dnl If you use IPv6 only, change [127.0.0.1] to [IPv6:::1]
FEATURE(`msp', `[127.0.0.1]')dnl


* Have you checked your memory for errors (see the sysutils/memtest and

  the sysutils/memtest86 ports).



Testing now, but don't think there are memory problems. The system works
fine besides Sendmail. Before I rebooted last time the server had an uptime
of  592 days.

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


Re: Thin terminals for FreeBSD

2006-08-07 Thread Derek Ragona
In these days of commodity PC pricing running X-terminals isn't really cost 
effective.  You'd be better off buying 10 - 20 identical PC's loading and 
configuring one, and then clone the drive for the rest.


Using X-terminals will likely cost more per unit, and produce more load on 
the server, the only positive to X-terminals is in configuration and 
maintenance.


That's my 2 cents anyway.

-Derek



At 02:19 PM 8/7/2006, =?ISO-8859-2?Q?Nagy_L=E1szl=F3?= wrote:


 Hello,

I need to setup an environment where some users (10 to 20 employees) will 
use terminals to run programs. They need to run a few popular programs: 
thunderbird, firefox, adobe acrobat, openoffice and gaim. This site will 
be a customer service. We decided to reduce the costs by using Open Source 
software and cheap terminal computers. This is a good solution because 
most of the users will read messages and images on the screen and they can 
share the same processor and memory easily. I know that I can setup cheap 
computers and use its X server as a terminal for another central computer. 
This solution still requires new (or used) computers. I would like to 
reduce the costs to the minimum. Here are some key questions that I could 
not answer:


- Is there a more cost-effective solution? (Something that I did not think of)
- How much RAM will I need? Will FireFox Thunderbird and OpenOffice load 
shared objects and reduce the overall memory usage? Or should I reserve 
256MB of memory for each client?
- Do I need to use gigabit ethernet? Or is it enough to use a normal 100 
Mbps wired network? I heard that there can be bandwidth problems when 
using many terminals, but I do not have experience.

- Are there any pitfalls that I need to be aware of?

It would be perfect to provide links to some articles or manuals - I do 
not need anyone to write detailed instuctions and do my job. I'm asking 
for help because the handbook was not very useful in this case. I only 
found this:


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/term.html#TERM-X

It does not help too much, and there is no know-how. I really need to know 
what hardware I need to buy.



Thank you

  Laszlo

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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.



--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


How to filter the contents of two text files ..

2006-08-07 Thread Odhiambo Washington

Hi

Some little help is needed here ...

I have two text files, each has just a single column of data

FileA has 2798 entries, while FileB has 4242 entries;
There are entries in FileA that are also in FileB... 

I'd like to filter against the two files, so I only get those entries in FileB
that don't occur only in FileA 

I am thinking about using `diff` but again it doesn't look quite straight to me.

How do I get the data from FileB that isn't in FileA ?

There could be many possible ways but I am simply brain dead at the 
moment.



-Wash

http://www.netmeister.org/news/learn2quote.html

DISCLAIMER: See http://www.wananchi.com/bms/terms.php

--
+==+
|\  _,,,---,,_ | Odhiambo Washington<[EMAIL PROTECTED]>
Zzz /,`.-'`'-.  ;-;;,_ | Wananchi Online Ltd.   www.wananchi.com
   |,4-  ) )-,_. ,\ (  `'-'| Tel: +254 20 313985-9  +254 20 313922
  '---''(_/--'  `-'\_) | GSM: +254 722 743223   +254 733 744121
+==+

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Mark Kane
On Mon, Aug 07, 2006, at 00:42:27 -0300, Marc G. Fournier wrote:
> 
> I've now committed v2.0 of the 300.statistics periodic script ...
> this one adds the device reporting that we'd talked about previously,
> and the summary reports now reflect the driver(s) in use for those
> deciding to report ...

Great project idea, and glad to see it's growing :). Every time I
refresh the page to check a host I add, I see several more since the
last refresh just a few minutes before. The new percentage display added
in the last few minutes is nice too.

I haven't followed the whole thread so I'm not sure if this has been
suggested yet or not, but my idea would be to make another table
of just the major releases. Like an easy view on who's running
6.1-RELEASE regardless of patch numbers, or 5.5-RELEASE, or
4.11-RELEASE, just so people can get a quick idea on who's running
which releases without having to look through every one including
patch levels (kind of a quick summary). Or maybe even numbers and
percentages for "4.x", vs "5.x", vs "6.x", etc, and another table for
"i386", "amd64", "sparc64", etc, so companies providing drivers or
closed source binaries can quickly see the numbers for those.

Just an idea :)

-Mark

-- 
Internet Radio:
Party107 (Trance/Electronic) - http://www.party107.com
Rock 101.9 The Edge (Rock) - http://www.rock1019.net

IRC:
MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941)

GnuPG Public Key:
http://www.mkproductions.org/mk_pubkey.asc
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Supermicro X6DVL-EG-2 Compatibility

2006-08-07 Thread Mark Kane
On Sun, Aug 06, 2006, at 19:19:14 -0700, Nikolas Britton wrote:
> I have a X7DBE that mostly works with FreeBSD 6.x/i386.
> 
> http://www.supermicro.com/products/motherboard/Xeon1333/5000P/X7DBE.cfm
> 
> The Ethernet controllers (Intel PRO/1000 EB) don't work with FreeBSD
> 6.1 but this is being fixed on -STABLE as we speak, there is a em(4)
> patch waiting for commit... I have not tried to use the 6 port onboard
> SATA RAID controller... From experience I just assume it not support
> at all. Your motherboard is a generation behind my board so things
> should probably work out pretty good for you. here's my dmesg:

Hi, and thanks for the info. SATA and network are big ones since the
primary drive will be SATA and the onboard ethernet is the one that
will need to be used.

I ordered the server and am having the datacenter put FreeBSD 6.1-R on
it now. They also confirmed it should work based on their experiences.
I'll post a follow-up when everything is all good.

Thanks again.

-Mark

-- 
Internet Radio:
Party107 (Trance/Electronic) - http://www.party107.com
Rock 101.9 The Edge (Rock) - http://www.rock1019.net

IRC:
MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941)

GnuPG Public Key:
http://www.mkproductions.org/mk_pubkey.asc
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Chris
Mark Kane wrote:
> On Mon, Aug 07, 2006, at 00:42:27 -0300, Marc G. Fournier wrote:
>> I've now committed v2.0 of the 300.statistics periodic script ...
>> this one adds the device reporting that we'd talked about previously,
>> and the summary reports now reflect the driver(s) in use for those
>> deciding to report ...
> 
> Great project idea, and glad to see it's growing :). Every time I
> refresh the page to check a host I add, I see several more since the
> last refresh just a few minutes before. The new percentage display added
> in the last few minutes is nice too.
> 
> I haven't followed the whole thread so I'm not sure if this has been
> suggested yet or not, but my idea would be to make another table
> of just the major releases. Like an easy view on who's running
> 6.1-RELEASE regardless of patch numbers, or 5.5-RELEASE, or
> 4.11-RELEASE, just so people can get a quick idea on who's running
> which releases without having to look through every one including
> patch levels (kind of a quick summary). Or maybe even numbers and
> percentages for "4.x", vs "5.x", vs "6.x", etc, and another table for
> "i386", "amd64", "sparc64", etc, so companies providing drivers or
> closed source binaries can quickly see the numbers for those.
> 
> Just an idea :)
> 
> -Mark
> 


Just my .02 worth - that Sparc64 listing  Is mine
Wheee!


-- 
Best regards,
Chris

If builders built buildings the way programmers wrote
programs, then the first woddpecker that came along would
destroy civilization.
___
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 filter the contents of two text files ..

2006-08-07 Thread Dan Nelson
In the last episode (Aug 07), Odhiambo Washington said:
> Some little help is needed here ...
> 
> I have two text files, each has just a single column of data
> 
> FileA has 2798 entries, while FileB has 4242 entries; There are
> entries in FileA that are also in FileB...
> 
> I'd like to filter against the two files, so I only get those entries
> in FileB that don't occur only in FileA 

If your files are sorted, you can use the 'comm' command.

-- 
Dan Nelson
[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: BSDstats Project v2.0 ...

2006-08-07 Thread Chris
Chris wrote:
> Mark Kane wrote:
>> On Mon, Aug 07, 2006, at 00:42:27 -0300, Marc G. Fournier wrote:
>>> I've now committed v2.0 of the 300.statistics periodic script ...
>>> this one adds the device reporting that we'd talked about previously,
>>> and the summary reports now reflect the driver(s) in use for those
>>> deciding to report ...
>> Great project idea, and glad to see it's growing :). Every time I
>> refresh the page to check a host I add, I see several more since the
>> last refresh just a few minutes before. The new percentage display added
>> in the last few minutes is nice too.
>>
>> I haven't followed the whole thread so I'm not sure if this has been
>> suggested yet or not, but my idea would be to make another table
>> of just the major releases. Like an easy view on who's running
>> 6.1-RELEASE regardless of patch numbers, or 5.5-RELEASE, or
>> 4.11-RELEASE, just so people can get a quick idea on who's running
>> which releases without having to look through every one including
>> patch levels (kind of a quick summary). Or maybe even numbers and
>> percentages for "4.x", vs "5.x", vs "6.x", etc, and another table for
>> "i386", "amd64", "sparc64", etc, so companies providing drivers or
>> closed source binaries can quickly see the numbers for those.
>>
>> Just an idea :)
>>
>> -Mark
>>
> 
> 
> Just my .02 worth - that Sparc64 listing  Is mine
> Wheee!
> 
> 


Let me clearify -

6.1-RELEASE sparc64 1   0.47%

That one is mine.

-- 
Best regards,
Chris

Ignorance should be painful.

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Mark Kane wrote:


On Mon, Aug 07, 2006, at 00:42:27 -0300, Marc G. Fournier wrote:


I've now committed v2.0 of the 300.statistics periodic script ...
this one adds the device reporting that we'd talked about previously,
and the summary reports now reflect the driver(s) in use for those
deciding to report ...


Great project idea, and glad to see it's growing :). Every time I
refresh the page to check a host I add, I see several more since the
last refresh just a few minutes before. The new percentage display added
in the last few minutes is nice too.

I haven't followed the whole thread so I'm not sure if this has been
suggested yet or not, but my idea would be to make another table
of just the major releases. Like an easy view on who's running
6.1-RELEASE regardless of patch numbers, or 5.5-RELEASE, or
4.11-RELEASE, just so people can get a quick idea on who's running
which releases without having to look through every one including
patch levels (kind of a quick summary). Or maybe even numbers and
percentages for "4.x", vs "5.x", vs "6.x", etc, and another table for
"i386", "amd64", "sparc64", etc, so companies providing drivers or
closed source binaries can quickly see the numbers for those.

Just an idea :)


Refresh the page, I've add a new table since, which I believe is what you 
are asking for :)


Also, Antony, in Australia, is going to be doing some work on overall look 
of the pages, improve the presentation, give is a BSD feel to it ... I'm a 
grunt, hate making things look pretty :)



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: freebsd commercial support

2006-08-07 Thread Jerry McAllister
> 
> Hello,
> 
> Is it possible to  commercially support FreeBSD without requesting any 
> permission from the FreeBSD Foundation ?

Yes, as long as you retain the license information that comes with
all the various parts.

jerry

> 
> Thanks,
> Tofig Suleymanov
> ___
> 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: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Chris wrote:


Just my .02 worth - that Sparc64 listing  Is mine Wheee!


There are two Sparc64 listings ... both yours?

The 8 in Panama are all mine :)


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Mark Kane
On Mon, Aug 07, 2006, at 17:18:04 -0300, Marc G. Fournier wrote:
> Refresh the page, I've add a new table since, which I believe is what
> you are asking for :)

Exactly. Just a couple minutes after I hit send, I saw that there and
thought wow, that was fast! Then again I didn't see my post on the list
yet so I thought maybe you already had that idea :)

-Mark

-- 
Internet Radio:
Party107 (Trance/Electronic) - http://www.party107.com
Rock 101.9 The Edge (Rock) - http://www.rock1019.net

IRC:
MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941)

GnuPG Public Key:
http://www.mkproductions.org/mk_pubkey.asc
___
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 filter the contents of two text files ..

2006-08-07 Thread Charles Swiger

On Aug 7, 2006, at 3:40 PM, Odhiambo Washington wrote:

I have two text files, each has just a single column of data

FileA has 2798 entries, while FileB has 4242 entries;
There are entries in FileA that are also in FileB...

I'd like to filter against the two files, so I only get those  
entries in FileB

that don't occur only in FileA 


See "man comm"; also note that you will have to sort the contents of  
files first.


--
-Chuck

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


/etc/fstab error and I can't start the system normally

2006-08-07 Thread micman
Hello.

PROBLEM
I tried and configured FreeBSD 6.1 for many days and I mounted my FAT extended 
partition to exchange my files between Windows and my new Operating System. 
That was OK. After I tried to mount automatically at boot this partition and I 
make an error (grammatical error): I wrote “acd0s5” instead of “ad0s5” in 
/etc/fstab. 
Now, when I start the system, I receive this message at the end of the boot 
process:
"Can't open (No such file or directory)
/dev/acd0s5: UNEXPECTED INCONSISTENCY; RUN fsck_msdosfs MANUALLY.
THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED INCONSISTENCY:
msdosfs: /dev/acd0s5 (/mnt/win)
Automatic file system check failed; help!
Aug 7 20:08:07 int: /bin/sh on /etc/rc terminated abnormally, going to single 
user mode
Enter full pathname of shell or RETURN for /bin/sh:"
 
QUESTIONS
Can I rewrite the file /etc/fstab in text mode?
If it's possible, how can I do this?

I tried fsck_manually and also to boot by option '6' ("Escape to loader") but I 
was not able to resolve the problem.
If someone can help me, thank you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Mark Kane wrote:


On Mon, Aug 07, 2006, at 17:18:04 -0300, Marc G. Fournier wrote:

Refresh the page, I've add a new table since, which I believe is what
you are asking for :)


Exactly. Just a couple minutes after I hit send, I saw that there and
thought wow, that was fast! Then again I didn't see my post on the list
yet so I thought maybe you already had that idea :)


I just added one in that is half way between the two ... so it shows 
major.minor releases, not just major, but stripping off everything after 
the - 


I'm going to start playing with the devices report next ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: /etc/fstab error and I can't start the system normally

2006-08-07 Thread backyard


--- micman <[EMAIL PROTECTED]> wrote:

> Hello.
> 
> PROBLEM
> I tried and configured FreeBSD 6.1 for many days and
> I mounted my FAT extended partition to exchange my
> files between Windows and my new Operating System.
> That was OK. After I tried to mount automatically at
> boot this partition and I make an error (grammatical
> error): I wrote “acd0s5” instead of “ad0s5” in
> /etc/fstab. 
> Now, when I start the system, I receive this message
> at the end of the boot process:
> "Can't open (No such file or directory)
> /dev/acd0s5: UNEXPECTED INCONSISTENCY; RUN
> fsck_msdosfs MANUALLY.
> THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED
> INCONSISTENCY:
> msdosfs: /dev/acd0s5 (/mnt/win)
> Automatic file system check failed; help!
> Aug 7 20:08:07 int: /bin/sh on /etc/rc terminated
> abnormally, going to single user mode
> Enter full pathname of shell or RETURN for /bin/sh:"
>  
> QUESTIONS
> Can I rewrite the file /etc/fstab in text mode?
> If it's possible, how can I do this?
> 
> I tried fsck_manually and also to boot by option '6'
> ("Escape to loader") but I was not able to resolve
> the problem.
> If someone can help me, thank you.
> "[EMAIL PROTECTED]"

get into a console maybe by booting single user.
remote root as read/write you may or may not have to
remount root as write but...

mount -u /
ee /etc/fstab

fix the error hit [esc] cc [esc] a and you should be
good to go. 

hope that helps

-brian

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Pat Maddox

On 8/6/06, Marc G. Fournier <[EMAIL PROTECTED]> wrote:


I've now committed v2.0 of the 300.statistics periodic script ... this one
adds the device reporting that we'd talked about previously, and the
summary reports now reflect the driver(s) in use for those deciding to
report ...

This Phase of the script is optional, and not enabled by default ... I
can't think of any reason why you wouldn't want to report it, but just in
case someone feels it poses a problem, its an opt-in report ...

pkg-message updated to reflect the extra line you need to add to
/etc/periodic.conf:

 monthly_statistics_report_devices=yes

I've written it to report driver + chip= information from pciconf -l,
since even pciconf -lv doesn't seem to use card= ... the summary report
will be extended next to show both vendor and chip statistics ...

Let me know of any problems ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



For those of us who can't read minds, what's the port to install, and
the website where we can view the stats? :)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[2]: BSDstats Project v2.0 ...

2006-08-07 Thread Daniel Gerzo
Hello Pat,

Monday, August 7, 2006, 10:42:53 PM, you wrote:

> For those of us who can't read minds, what's the port to install, and
> the website where we can view the stats? :)

sysutils/bsdstats

http://bsdstats.hub.org/


-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


RE: BSDstats Project v2.0 ...

2006-08-07 Thread Tamouh H.
> 
> For those of us who can't read minds, what's the port to 
> install, and the website where we can view the stats? :) 
> ___

It is http://bsdstats.hub.org

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


Re: Re[2]: BSDstats Project v2.0 ...

2006-08-07 Thread Pat Maddox

On 8/7/06, Daniel Gerzo <[EMAIL PROTECTED]> wrote:

Hello Pat,

Monday, August 7, 2006, 10:42:53 PM, you wrote:

> For those of us who can't read minds, what's the port to install, and
> the website where we can view the stats? :)

sysutils/bsdstats

http://bsdstats.hub.org/



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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Bill Moran
In response to "Pat Maddox" <[EMAIL PROTECTED]>:

> For those of us who can't read minds, what's the port to install, and
> the website where we can view the stats? :)

As a side track on this, it'd be nice if the port installation message
said something like "got to http://bsdstats.hub.org to see current stats"

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


Re: Wine and FreeBSD how to

2006-08-07 Thread Gautham Ganapathy
On Mon, 2006-07-31 at 06:28 -0700, Joshua Lewis wrote:
>I installed wine on my 6.1 system but I don't see a config file
>anywhere on the system. Has anyone installed and used Wine
>successfully that could point me towards an easy FreeBSD how to? Or
>something similar. I told my 7 year old I would load a game for him
>and wanted to look for an easy how too.
>Sincerely,
>Joshua Lewis
> 

Run 'wine' once from the shell for it to generate the .wine directory
under $HOME. Then, try using 'winecfg' for configuration

However, so far I have not been able to get anything more complex than
notepad running under wine on freebsd-6.1-release

Regards
Gautham

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Chris
Bill Moran wrote:
> In response to "Pat Maddox" <[EMAIL PROTECTED]>:
> 
>> For those of us who can't read minds, what's the port to install, and
>> the website where we can view the stats? :)
> 
> As a side track on this, it'd be nice if the port installation message
> said something like "got to http://bsdstats.hub.org to see current stats"
> 

I agree - another note:

After the install, better documentation might be add. Meaning, it needs
to be defined that the 2 lines

To enable the port, edit or create /etc/periodic.conf and add this line:
monthly_statistics_enable=yes

To enable device reporting, add this line:

monthly_statistics_report_devices=yes


Should reflect the proper location:

/etc/rc.conf - assuming the knobs are needed here.


-- 
Best regards,
Chris

The most valuable quotation will be the one for which
you cannot determine the source.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[2]: BSDstats Project v2.0 ...

2006-08-07 Thread Daniel Gerzo
Hello Chris,

Monday, August 7, 2006, 11:17:41 PM, you wrote:

> Bill Moran wrote:
>> In response to "Pat Maddox" <[EMAIL PROTECTED]>:
>> 
>>> For those of us who can't read minds, what's the port to install, and
>>> the website where we can view the stats? :)
>> 
>> As a side track on this, it'd be nice if the port installation message
>> said something like "got to http://bsdstats.hub.org to see current stats"
>> 

> I agree - another note:

> After the install, better documentation might be add. Meaning, it needs
> to be defined that the 2 lines

> Should reflect the proper location:

> /etc/rc.conf - assuming the knobs are needed here.

  sorry, but you are wrong here; the correct location is
  /etc/periodic.conf as documented.

-- 
Best regards,
 Danielmailto:[EMAIL PROTECTED]

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Matthew Seaman
Bill Moran wrote:
> In response to "Pat Maddox" <[EMAIL PROTECTED]>:
> 
>> For those of us who can't read minds, what's the port to install, and
>> the website where we can view the stats? :)
> 
> As a side track on this, it'd be nice if the port installation message
> said something like "got to http://bsdstats.hub.org to see current stats"
> 

I think it would help uptake if when the bsdstats job is first run, it
issues you with a 'registered system number' -- then all of the folks with
low numbered systems get bragging rights...

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Chris
Daniel Gerzo wrote:
> Hello Chris,
> 
> Monday, August 7, 2006, 11:17:41 PM, you wrote:
> 
>> Bill Moran wrote:
>>> In response to "Pat Maddox" <[EMAIL PROTECTED]>:
>>>
 For those of us who can't read minds, what's the port to install, and
 the website where we can view the stats? :)
>>> As a side track on this, it'd be nice if the port installation message
>>> said something like "got to http://bsdstats.hub.org to see current stats"
>>>
> 
>> I agree - another note:
> 
>> After the install, better documentation might be add. Meaning, it needs
>> to be defined that the 2 lines
> 
>> Should reflect the proper location:
> 
>> /etc/rc.conf - assuming the knobs are needed here.
> 
>   sorry, but you are wrong here; the correct location is
>   /etc/periodic.conf as documented.
> 

I stand corrected.

-- 
Best regards,
Chris

Real programmers don't eat muffins.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Daniel Bye
On Mon, Aug 07, 2006 at 05:22:04PM -0300, Marc G. Fournier wrote:
> On Mon, 7 Aug 2006, Chris wrote:
> 
> >Just my .02 worth - that Sparc64 listing  Is mine Wheee!
> 
> There are two Sparc64 listings ... both yours?

No - the other one is mine! 

Nice work, scrappy - every time I check back, there's more information
on the site.  Any word on the other groups joining in?

-- 
Daniel Bye

PGP Key: http://www.slightlystrange.org/pgpkey-dan.asc
PGP Key fingerprint: D349 B109 0EB8 2554 4D75  B79A 8B17 F97C 1622 166A
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \


pgpHLpa2rlVbn.pgp
Description: PGP signature


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Boris Samorodov
On Mon, 7 Aug 2006 00:42:27 -0300 (ADT) Marc G. Fournier wrote:

> I've now committed v2.0 of the 300.statistics periodic script ... this
> one adds the device reporting that we'd talked about previously, and
> the summary reports now reflect the driver(s) in use for those
> deciding to report ...

Great, thanks Marc.
I just propose a tiny patch (the problem was discussed somewhere
today, may be at ports@):
-
--- Makefile.orig   Tue Aug  8 01:40:57 2006
+++ MakefileTue Aug  8 01:41:16 2006
@@ -22,6 +22,6 @@
${MKDIR} ${LOCALBASE}/etc/periodic/monthly
${CP} ${FILESDIR}/300.statistics ${LOCALBASE}/etc/periodic/monthly
 post-install:
-   ${CAT} pkg-message
+   ${CAT} ${PKGMESSAGE}
 
 .include 
-


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone & Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Paul Schmehl

Boris Samorodov wrote:

On Mon, 7 Aug 2006 00:42:27 -0300 (ADT) Marc G. Fournier wrote:


I've now committed v2.0 of the 300.statistics periodic script ... this
one adds the device reporting that we'd talked about previously, and
the summary reports now reflect the driver(s) in use for those
deciding to report ...


Great, thanks Marc.
I just propose a tiny patch (the problem was discussed somewhere
today, may be at ports@):
-
--- Makefile.orig   Tue Aug  8 01:40:57 2006
+++ MakefileTue Aug  8 01:41:16 2006
@@ -22,6 +22,6 @@
${MKDIR} ${LOCALBASE}/etc/periodic/monthly
${CP} ${FILESDIR}/300.statistics ${LOCALBASE}/etc/periodic/monthly
 post-install:
-   ${CAT} pkg-message
+   ${CAT} ${PKGMESSAGE}
 

Shouldn't that be @${CAT} ${PKGMESSAGE}?

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


smime.p7s
Description: S/MIME Cryptographic Signature


Mount Point permissions

2006-08-07 Thread Bob Richards
 
Hi All:

This is week 3 on a new freebsd 6.1 install. I LOVE it!

I am having a silly problem using my floppy drive. I can successfully fdformat 
a new floppy, I can newfs it, I can mount it OK what I can not do is 
write to it!

My fstab line is: /dev/fd0 /usr/home/bob/floppy ufs rw,noauto,user 0 0

After a format, lable, and newfs, I can:
  "mount -t ufs /dev/fd0 /home/bob/floppy" ok.

The permissions on mount-point /home/bob/floppy are 770 with bob:bob

After the mount operation I see:

ls -al floppy
drwxr-xr-x 3 root wheel 512 Aug 7 11:22 .
drwxr-xr-x 60 bob bob 4096 Aug 7 11:03 ..
drwxrwxr-x 2 root operator 512 Aug 7 11:22 .snap

And of course, bob can only read, but not write.

$ touch floppy/test
touch: floppy/test: Permission denied

How can I correct the post-mount permissions?

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Chris
Daniel Bye wrote:
> On Mon, Aug 07, 2006 at 05:22:04PM -0300, Marc G. Fournier wrote:
>> On Mon, 7 Aug 2006, Chris wrote:
>>
>>> Just my .02 worth - that Sparc64 listing  Is mine Wheee!
>> There are two Sparc64 listings ... both yours?
> 
> No - the other one is mine! 
> 
> Nice work, scrappy - every time I check back, there's more information
> on the site.  Any word on the other groups joining in?
> 

I do have a question tho -

What happens when one of wishes to upgrade. Say for example on my Sparc
- I want to go from RELEASE to STABLE.

At that point - is the port smart enough to remove old listings and put
forth the newer?

If not - having these status can and will be deceiving in a short time.

-- 
Best regards,
Chris

You can pray hard enough to make water run uphill
how hard?
Hard enough to make water run uphill.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Large File System?

2006-08-07 Thread Atom Powers

Somebody please tell me it is possible to create a file system larger
than 1.2TB.

--
--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Cheap terminals for FreeBSD

2006-08-07 Thread Nagy László Zsolt

Hello,

I need to setup an environment where some users (10 to 20 employees) 
will use terminals to run programs. They need to run a few popular 
programs: thunderbird, firefox, adobe acrobat, openoffice and gaim. This 
site will be a customer service. We decided to reduce the costs by using 
Open Source software and cheap terminal computers. This is a good 
solution because most of the users will read messages and images on the 
screen and they can share the same processor and memory. I know that I 
can setup a computer and use its X server as a terminal for another 
computer. This solution still requires new (or used) computers. I would 
like to reduce the costs to the minimum. Here are some key questions 
that I could not answer:


- Is there a more cost-effective solution? (Something that I did not 
think of)
- How much RAM will I need? Will FireFox Thunderbird and OpenOffice load 
shared objects and reduce the overall memory usage? Or should I reserve 
256MB of memory for each client?
- Do I need to use gigabit ethernet? Or is it enough to use a normal 100 
Mbps wired network? I heard that there can be bandwidth problems when 
using many terminals, but I do not have experience.

- Are there any pitfalls that I need to be aware of?

It would be perfect to provide links to some articles or manuals - I do 
not need anyone to write detailed instuctions and do my job. I'm asking 
for help because the handbook was not very useful in this case. I only 
found this:


http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/term.html#TERM-X

It does not help too much, and there is no know-how. I need to know what 
hardware I need to buy.


Thank you

 Laszlo

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Boris Samorodov
On Mon, 07 Aug 2006 16:56:42 -0500 Paul Schmehl wrote:
> Boris Samorodov wrote:
> > On Mon, 7 Aug 2006 00:42:27 -0300 (ADT) Marc G. Fournier wrote:
> >
> >> I've now committed v2.0 of the 300.statistics periodic script ... this
> >> one adds the device reporting that we'd talked about previously, and
> >> the summary reports now reflect the driver(s) in use for those
> >> deciding to report ...
> >
> > Great, thanks Marc.
> > I just propose a tiny patch (the problem was discussed somewhere
> > today, may be at ports@):
> > -
> > --- Makefile.orig   Tue Aug  8 01:40:57 2006
> > +++ MakefileTue Aug  8 01:41:16 2006
> > @@ -22,6 +22,6 @@
> > ${MKDIR} ${LOCALBASE}/etc/periodic/monthly
> > ${CP} ${FILESDIR}/300.statistics ${LOCALBASE}/etc/periodic/monthly
> >  post-install:
> > -   ${CAT} pkg-message
> > +   ${CAT} ${PKGMESSAGE}
> >  
> Shouldn't that be @${CAT} ${PKGMESSAGE}?

Well, I assume that it's more a style change. An "@" may be prepended
at all those ${XX} commands. But it's up to author. While the change I
propose will work on some non-default settings. And may be the author
wants to show an administrator what is installing to the system.


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone & Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Thin terminals for FreeBSD

2006-08-07 Thread cpghost
On Mon, Aug 07, 2006 at 09:19:30PM +0200, Nagy L?szl? wrote:
> I need to setup an environment where some users (10 to 20 employees) 
> will use terminals to run programs. They need to run a few popular 
> programs: thunderbird, firefox, adobe acrobat, openoffice and gaim. This 

I'm using EPIA 5000 mini-ATX boards with 512 MB RAM, diskless booting
from an NFS server. They load X.org and everything else on demand.
Compared to local HDDs, there's a small performance hit when loading
programs [and those boards are not the fastest, though 100% silent ;-)],
but users here are happy enough with them.

> - Do I need to use gigabit ethernet? Or is it enough to use a normal 100 
> Mbps wired network? I heard that there can be bandwidth problems when 
> using many terminals, but I do not have experience.

For a diskless setup, 100 MB switched on the client side is enough; but
you'd definitely prefer gigabit ethernet on the NFS server.

> - Are there any pitfalls that I need to be aware of?

Locking over NFS is a bit buggy. I had some trouble running thunderbird
and firefox, as they seem to hang on some thr_*() call, and gconfd can
be a bitch too over NFS, if the permissions on an NFS-mounted /tmp are
not set correctly (/tmp as md ramdisk is fine though). No other known
pitfalls here so far.

> It would be perfect to provide links to some articles or manuals - I do 
> not need anyone to write detailed instuctions and do my job. I'm asking 
> for help because the handbook was not very useful in this case. I only 
> found this:
> 
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/term.html#TERM-X
> 
> It does not help too much, and there is no know-how. I really need to 
> know what hardware I need to buy.
> 
> Thank you
> 
>   Laszlo

Regards,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Large File System?

2006-08-07 Thread Christian Laursen
"Atom Powers" <[EMAIL PROTECTED]> writes:

> Somebody please tell me it is possible to create a file system larger
> than 1.2TB.

It is:

FilesystemSizeUsed   Avail Capacity  Mounted on
/dev/concat/c01.6T846G648G57%/backup

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Antony Mawer

On 8/08/2006 7:17 AM, Chris wrote:

After the install, better documentation might be add. Meaning, it needs
to be defined that the 2 lines

To enable the port, edit or create /etc/periodic.conf and add this line:
monthly_statistics_enable=yes

To enable device reporting, add this line:
monthly_statistics_report_devices=yes


Why not tackle this in a similar manner to the Postfix port - after 
installing (provided we're not in a non-interactive build), we prompt:


Do you wish to activate stats reporting in /etc/periodic.conf [n]? y
Do you wish to report your installed hardware?
Would you like to submit your systems stats now?

or something along those lines. This would make it much easier than 
people installing the port and neglecting to set the appropriate lines, 
effectively achieving nil ;-)


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


Re: Large File System?

2006-08-07 Thread Atom Powers

On 8/7/06, Christian Laursen <[EMAIL PROTECTED]> wrote:

"Atom Powers" <[EMAIL PROTECTED]> writes:

> Somebody please tell me it is possible to create a file system larger
> than 1.2TB.

It is:

FilesystemSizeUsed   Avail Capacity  Mounted on
/dev/concat/c01.6T846G648G57%/backup


Thanks. I found my problem. (Sysinstall, aka fdisk, won't do more that 1.2TB.)
BTW, anybody have any good advice on how to manage a large file system?

--
--
Perfection is just a word I use occasionally with mustard.
--Atom Powers--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Thin terminals for FreeBSD

2006-08-07 Thread cpghost
On Tue, Aug 08, 2006 at 01:12:02AM +0200, cpghost wrote:
> On Mon, Aug 07, 2006 at 09:19:30PM +0200, Nagy L?szl? wrote:
> > - Are there any pitfalls that I need to be aware of?
> 
> Locking over NFS is a bit buggy. I had some trouble running thunderbird
> and firefox, as they seem to hang on some thr_*() call, and gconfd can
> be a bitch too over NFS, if the permissions on an NFS-mounted /tmp are
> not set correctly (/tmp as md ramdisk is fine though). No other known
> pitfalls here so far.
 
Just one addition: instead of running firefox and thunderbird
locally on the diskless nodes, you can also run them remotely on a
box with locally mounted filesystems (using DISPLAY, which is set
automatically when you use 'ssh -Y'); the thr_*() hangs disappear then.
They must be NFS-related somehow. Oh, if you run X apps remotely,
you don't need more than 256 MB RAM on the thin clients; perhaps
even less, but you'll have to test this yourself.

-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Thin terminals for FreeBSD

2006-08-07 Thread cpghost
On Mon, Aug 07, 2006 at 02:27:30PM -0500, Derek Ragona wrote:
> the only positive to X-terminals is in configuration and maintenance.

...and being totally silent! In an office not necessarily that
important, but in some other environments, it's very convenient!

> -Derek

-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: /etc/fstab error and I can't start the system normally

2006-08-07 Thread Pramod Venugopal
You can go to single user mode (4) from the boot menu and then mount - 
o rw / . Then you can edit /etc/fstab.


Pramod Venugopal
[EMAIL PROTECTED]



On Aug 7, 2006, at 1:26 PM, micman wrote:


Hello.

PROBLEM
I tried and configured FreeBSD 6.1 for many days and I mounted my  
FAT extended partition to exchange my files between Windows and my  
new Operating System. That was OK. After I tried to mount  
automatically at boot this partition and I make an error  
(grammatical error): I wrote “acd0s5” instead of “ad0s5” in /etc/ 
fstab.
Now, when I start the system, I receive this message at the end of  
the boot process:

"Can't open (No such file or directory)
/dev/acd0s5: UNEXPECTED INCONSISTENCY; RUN fsck_msdosfs MANUALLY.
THE FOLLOWING FILE SYSTEM HAD AN UNEXPECTED INCONSISTENCY:
msdosfs: /dev/acd0s5 (/mnt/win)
Automatic file system check failed; help!
Aug 7 20:08:07 int: /bin/sh on /etc/rc terminated abnormally, going  
to single user mode

Enter full pathname of shell or RETURN for /bin/sh:"

QUESTIONS
Can I rewrite the file /etc/fstab in text mode?
If it's possible, how can I do this?

I tried fsck_manually and also to boot by option '6' ("Escape to  
loader") but I was not able to resolve the problem.

If someone can help me, thank you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions- 
[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: freebsd commercial support

2006-08-07 Thread Pramod Venugopal

Yes.

Pramod Venugopal
[EMAIL PROTECTED]



On Aug 7, 2006, at 12:19 PM, Tofik Suleymanov wrote:


Hello,

Is it possible to  commercially support FreeBSD without requesting  
any permission from the FreeBSD Foundation ?



Thanks,
Tofig Suleymanov
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions- 
[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: SAMBA as Domain Controller on FreeBSD 6.1

2006-08-07 Thread Pramod Venugopal

Hello,

There are quite a few guides to setting up Samba out there. For the  
most part you can check out the guides even if they are for Samba on  
Linux, since the procedure outside of actually installing Samba  
through the package manager will be the same.


Here is one for setting up Samba as a PDC on Ubuntu
http://howtoforge.com/samba_setup_ubuntu_5.10

And if you want to know how to setup Samba with an LDAP backend  
follow this guide.

http://sourceforge.net/project/showfiles.php?group_id=166108

As far as getting the packages, all of the above are available in ports.

If you wish to use the same LDAP database for your local user  
authentication, then you can follow this guide:
http://www.cultdeadsheep.org/FreeBSD/docs/ 
Quick_and_dirty_FreeBSD_5_x_and_nss_ldap_mini-HOWTO.html


I am running a PDC at home on FreeBSD 6.1 and Samba/LDAP which works  
pretty well.


Pramod Venugopal
[EMAIL PROTECTED]



On Aug 7, 2006, at 2:44 AM, James G. Corteciano wrote:


Hello everyone!

Good Day!

I am using FreeBSD 6.1/6.x version of Operating System. I plan to
switch my existing PDC Win2k Advanced server to FreeBSD with the
power of Samba. Anybody may I know of how would you setup SAMBA as
PDC in FreeBSD 6.x? I know this is not good question for asking HOWTO
but the good procedures and right samba configurations might lead me
up during installation process.

I am hoping for your kind consideration and favorable response.

Great many thanks.

Regards,

James G. Corteciano




--
___
Get your free email from http://mymail.bsdmail.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions- 
[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: BSDstats Project v2.0 ...

2006-08-07 Thread Scott Sipe


On Aug 6, 2006, at 11:42 PM, Marc G. Fournier wrote:



I've now committed v2.0 of the 300.statistics periodic script ...  
this one adds the device reporting that we'd talked about  
previously, and the summary reports now reflect the driver(s) in  
use for those deciding to report ...


This Phase of the script is optional, and not enabled by  
default ... I can't think of any reason why you wouldn't want to  
report it, but just in case someone feels it poses a problem, its  
an opt-in report ...


pkg-message updated to reflect the extra line you need to add to / 
etc/periodic.conf:


monthly_statistics_report_devices=yes

I've written it to report driver + chip= information from pciconf - 
l, since even pciconf -lv doesn't seem to use card= ... the summary  
report will be extended next to show both vendor and chip  
statistics ...


Let me know of any problems ...



Just got it installed on two systems--exciting!

Any thoughts on adding uptime tracking (ie, desirable or not)? Could  
be something very simple client side, like:


--- /usr/ports/sysutils/bsdstats/files/300.statistics   Sun Aug  6  
23:35:39 2006
+++ /usr/local/etc/periodic/monthly/300.statistics  Mon Aug  7  
19:43:47 2006

@@ -20,7 +20,8 @@
   HN=`/bin/hostname`
   SYS=`/usr/bin/uname -r`
   ARCH=`/usr/bin/uname -m`
-  /usr/bin/fetch -qo /tmp/getid http://bsdstats.hub.org/scripts/ 
getid.php?hn=$HN\&sys=$SYS\&arch=$ARCH

+  UP=`/usr/bin/uptime | /usr/bin/grep -o "up [^,]*,[^,]*,"`
+  /usr/bin/fetch -qo /tmp/getid http://bsdstats.hub.org/scripts/ 
getid.php?hn=$HN\&sys=$SYS\&arch=$ARCH\&up=$UP

   case "$monthly_statistics_report_devices" in
  [Yy][Ee][Ss])
IFS="

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


default boot option in dual-boot mode

2006-08-07 Thread gahn
hi:

how could i fix the default boot option in dual-boot
mode?

i have a machine with both windows xp and freebsd 6.1.
it works fine with freebsd boot manager (wiht optios
of f1 for xp and f2 for freebsd when it starts). but i
would like to fix the default mode for freebsd; ie, if
i don't make a choice on either f1 or f2 keys, then
system automatically boots up as freebsd machine.

thansk


__
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: SAMBA as Domain Controller on FreeBSD 6.1

2006-08-07 Thread Jahilliya

On 8/7/06, James G. Corteciano <[EMAIL PROTECTED]> wrote:


Hello everyone!

Good Day!

I am using FreeBSD 6.1/6.x version of Operating System. I plan to
switch my existing PDC Win2k Advanced server to FreeBSD with the
power of Samba. Anybody may I know of how would you setup SAMBA as
PDC in FreeBSD 6.x? I know this is not good question for asking HOWTO
but the good procedures and right samba configurations might lead me
up during installation process.

I am hoping for your kind consideration and favorable response.

Great many thanks.

Regards,

James G. Corteciano



Hey,

After playing with Samba through the years, reading tidbits of documentation
and howto's, nothing compares to the documentation in the Official Samba
Howto. I was having plenty of problems and decided to have a look in this
book, before I did anything more with Samba I simply read it from start to
finish (only skipping the sections relating to Active Directory due to it
being expiremental and likely to change, and I wanted something stable and
tested well).

So, read the Official Samba Howto:
http://us1.samba.org/samba/docs/man/Samba-HOWTO-Collection/
It's the best.

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Bill Moran wrote:


In response to "Pat Maddox" <[EMAIL PROTECTED]>:


For those of us who can't read minds, what's the port to install, and
the website where we can view the stats? :)


As a side track on this, it'd be nice if the port installation message
said something like "got to http://bsdstats.hub.org to see current stats"


Good point, and done ...


Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Thin terminals for FreeBSD

2006-08-07 Thread Olivier Nicole
> - Is there a more cost-effective solution? (Something that I did not 
> think of)

We used to build (well my colleague did that) X terminals based on a
thin configuration of freeBSD (must have been version 2 at that time)
that we ran on diskless computers booting from floppy. At that time we
ran it on pentium 100 MHz, with something between 16 and 32 MB RAM,
over a 10 MB shared Ethernet.

All applications ran on the cental server, and X terminals were just
that: display devices.

It was a bit slow, you could not look at a video, but otherwise it
worked.

Of course you need more horse power on the server, but if you have a
set of old PC with similar video adapters, that's an easy solution to
deploy once one machine is up.

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


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Matthew Seaman wrote:

I think it would help uptake if when the bsdstats job is first run, it 
issues you with a 'registered system number' -- then all of the folks 
with low numbered systems get bragging rights...


Actually, there is no "registered system number", as there is no 
"registration process" ... that was the key requirement for doing this, 
was that it was as "hands off" as possible, and having to go to a web site 
to register each and every host was just too onerous of a task ...



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Daniel Bye wrote:


On Mon, Aug 07, 2006 at 05:22:04PM -0300, Marc G. Fournier wrote:

On Mon, 7 Aug 2006, Chris wrote:


Just my .02 worth - that Sparc64 listing  Is mine Wheee!


There are two Sparc64 listings ... both yours?


No - the other one is mine!

Nice work, scrappy - every time I check back, there's more information 
on the site.  Any word on the other groups joining in?


I've only heard from Matt @ DragonflyBSD ... if anyone knows other using 
the other BSDs, encourage them to join in ... we're going to put a proper 
"how to run" message up on the site shortly ...



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Chris wrote:


Daniel Bye wrote:

On Mon, Aug 07, 2006 at 05:22:04PM -0300, Marc G. Fournier wrote:

On Mon, 7 Aug 2006, Chris wrote:


Just my .02 worth - that Sparc64 listing  Is mine Wheee!

There are two Sparc64 listings ... both yours?


No - the other one is mine!

Nice work, scrappy - every time I check back, there's more information
on the site.  Any word on the other groups joining in?



I do have a question tho -

What happens when one of wishes to upgrade. Say for example on my Sparc
- I want to go from RELEASE to STABLE.

At that point - is the port smart enough to remove old listings and put
forth the newer?


Its smart enough to know you've updated, and updates the record ... but, 
it will only update the record for the *current* month, not past months 
...



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier


Done, thanks ...

On Tue, 8 Aug 2006, Boris Samorodov wrote:


On Mon, 7 Aug 2006 00:42:27 -0300 (ADT) Marc G. Fournier wrote:


I've now committed v2.0 of the 300.statistics periodic script ... this
one adds the device reporting that we'd talked about previously, and
the summary reports now reflect the driver(s) in use for those
deciding to report ...


Great, thanks Marc.
I just propose a tiny patch (the problem was discussed somewhere
today, may be at ports@):
-
--- Makefile.orig   Tue Aug  8 01:40:57 2006
+++ MakefileTue Aug  8 01:41:16 2006
@@ -22,6 +22,6 @@
${MKDIR} ${LOCALBASE}/etc/periodic/monthly
${CP} ${FILESDIR}/300.statistics ${LOCALBASE}/etc/periodic/monthly
post-install:
-   ${CAT} pkg-message
+   ${CAT} ${PKGMESSAGE}

.include 
-


WBR
--
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone & Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"




Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: BSDstats Project v2.0 ...

2006-08-07 Thread Marc G. Fournier

On Mon, 7 Aug 2006, Scott Sipe wrote:


+  UP=`/usr/bin/uptime | /usr/bin/grep -o "up [^,]*,[^,]*,"`


Is there a way of getting this consistently in seconds?  I've checked 
sysctl, and 6.x seems to have some of the information there, but 4.x 
definitely doesn't ...


And, uptime would definitely be another 'opt-in' feature, not required ...



Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


  1   2   >