Re: SU+J Lost files after a power failure

2013-10-14 Thread Brad Mettee
failures or blips, I strongly suggest investing in a UPS. Brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: https://wiki.freebsd.org/ certificate error

2013-03-01 Thread Brad Mettee
sd.org and freebsd.org, and the browser is complaining because it's being used on wiki.freebsd.org. Their certificate should have been issued for *.freebsd.org instead of just the main site name. Unfortunately I think all of the certificate issuers charge big $$$ for that type of cert..

Re: [zfs-discuss] How many disk in one pool

2012-10-08 Thread Brad Stone
Here's an example of a ZFS-based product you can buy with a large number of disks in the volume: http://www.aberdeeninc.com/abcatg/petarack.htm 360 3T drives A full petabyte of storage (1080TB) in a single rack, under a single namespace or volume On Sat, Oct 6, 2012 at 11:48 AM, Richard Elling

Re: shell scripting: grepping multiple patterns, logically ANDed

2012-06-27 Thread Brad Mettee
#!/bin/sh final_cmd="find /foo" while [ $# -gt 0 ] do final_cmd="$final_cmd | grep -i $1" shift done $final_cmd May need quoting changes, but it worked on this sample, with this result: cmdline: ./testshift "1" 1 2 3 4 5 result: "find /foo | grep -i 1

Re: ia64 vs amd64

2012-04-16 Thread Brad Mettee
it to this processor: ia64 or amd64? and what one from those is more stable? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.

Re: Freebsd9.0 and the fgets directive in gcc

2012-03-21 Thread Brad Mettee
ave been know to generate buggy loop code sometimes, so that's also a possibility. -- Brad Mettee PC HotShots, Inc. Westminster, MD (410) 848-0588 -> Let us bring out the **Power** of your PCs. <- -> Custom Business Software Solutions since 1991 <- Visit us <http://www.pchotsh

Re: umask not applied

2011-12-22 Thread Brad Mettee
On 12/22/2011 12:58 PM, Bastien Semene wrote: Hi list, I'm trying to apply a umask of "002" to user "user" (username changed for this example) while logged-in through ftpd. I used login class "class" (class name changed for this example) I edited /etc/login.conf and set at the bottom (there's

Re: why does this simple counter fail?

2011-03-25 Thread Brad Mettee
ou'll likely corrupt already good tags. -- Brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: why does this simple counter fail?

2011-03-24 Thread Brad Mettee
without any errors. gary It looks like it's not interpreting the php code start somehow. Can you show the lines immediately above, going up to the "Last Modified" script? I can also see a "?>" further down the webpage. It might be a simple case of mis-matched

Re: no apache22, php5 cores

2011-01-21 Thread Brad Mettee
Gary Kline wrote: On Fri, Jan 21, 2011 at 05:01:25PM -0500, Brad Mettee wrote: Works, altho it ignores my orginal nameserver , it is happy with 8.8.8.8. If it resolves, then bind9 isn't your problem. Try this instead and see what happens: telnet www.thought.o

Re: no apache22, php5 cores

2011-01-21 Thread Brad Mettee
ookup www.thought.org If it resolves, then bind9 isn't your problem. Try this instead and see what happens: telnet www.thought.org 80 Also, netstat should show port 80 open and waiting for a connection too. Hope this helps, Brad ___ freebsd-questions@f

Re: Which php??

2011-01-11 Thread Brad Mettee
Gary Kline wrote: On Tue, Jan 11, 2011 at 11:51:41AM -0500, Chris Brennan wrote: On Tue, Jan 11, 2011 at 11:46 AM, Gary Kline wrote: On Mon, Jan 10, 2011 at 10:07:28PM +, Paul Macdonald wrote: On 10/01/2011 21:21, Gary Kline wrote: Which php52 port do I need to r

Re: need help with php.

2010-10-20 Thread Brad Mettee
Gary Kline wrote: On Wed, Oct 20, 2010 at 04:16:54PM -0400, Brad Mettee wrote: Gary Kline wrote: On Wed, Oct 20, 2010 at 01:14:27PM -0500, Ryan Coleman wrote: That's if someone messed up the original CSR, IMO, or didn't get the ServerName directive

Re: need help with php.

2010-10-20 Thread Brad Mettee
Gary Kline wrote: On Wed, Oct 20, 2010 at 01:14:27PM -0500, Ryan Coleman wrote: That's if someone messed up the original CSR, IMO, or didn't get the ServerName directive just right. --I don't know what the snag is, but even 5.2 fails. php execs; it just doesn't do a

Re: need help with php.

2010-10-18 Thread Brad Mettee
at I wrote years ago. That is the main thing that is busted. Anybody up to helping me with this one? gary -- Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the **Power** of your PCs. <- -> Custom Business Software Solutions since 199

Re: Has anybody got a *working* example of getpwnam_r() ??

2010-07-19 Thread Brad Mettee
Robert Bonomi wrote: And if this doesn't help, there's always Google CodeSearch http://www.google.com/codesearch , for examples of how to call it. ALL I find at www.google.com/codesearch, when I ask for 'getpwnam_r' is source- code for the getpwnam_r function. Needless to say, that's =n

Re: Has anybody got a *working* example of getpwnam_r() ??

2010-07-18 Thread Brad Mettee
Robert Bonomi wrote: I've _got_ to be doing something wrong, sine I'm getting heap corruption calling it. But for the life of me, I can't figure out -what- is wrong. What I've got makes "a whole lot of no sense" -- I get corruption of the _same_ malloc()'d data structure (at *exactly* the same

Re: premature ENOMEM

2010-02-26 Thread Brad Penoff
Solved!!! Peter Lei of Cisco noticed this application uses mmap rather than malloc so I could get what I wanted (go beyond 200 MB without ENOMEM) if I adjusted sysctl -w vm.max_proc_mmap to be a higher value. Thanks so much for everyone's help, brad On Fri, Feb 26, 2010 at 8:12 AM, Brad P

Re: premature ENOMEM

2010-02-26 Thread Brad Penoff
e in Linux and Mac OS X. The thing is, I typically use FreeBSD for the best performance but I can't even get it to run there, at the moment. Thanks, brad On Thu, Feb 25, 2010 at 10:49 PM, Brad Penoff wrote: > Greetings, > > I have a 32-bit machine with 2 GB running FreeBSD 8.

premature ENOMEM

2010-02-25 Thread Brad Penoff
s up? Thanks a million for any help or advice you could lend. I would be more than willing to help in any way, even providing a machine to try this on (I could sponsor an emulab.net account). Anxious to hear what options exist. Thanks again, brad _

Re: touch madness

2009-12-30 Thread Brad Mettee
o "freebsd-questions-unsubscr...@freebsd.org" -- Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the **Power** of your PCs. <- -> Custom Business Software Solutions since 1991 <- Visit us <http://www.pcho

Re: need C help, passing char buffer[] by-value....

2009-10-18 Thread Brad Mettee
Gary Kline wrote: Guys, maybe this can't be done reading in a file with fgets(buffer[128], fp), then calling skiptags(), conditionally, to while () past ',' and '>'. I know I need to calll skipTags with its address, skipTags(&buffer);, but then how to i handle the variable "s" in skipTags? An

Re: Second disks causes invalid partition when booting/no disks found in sysinstall

2009-07-07 Thread Brad Mettee
-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Power* of your PCs. <- -> Custom Bus

Re: OT: C syntax question

2009-06-29 Thread Brad Mettee
int plate_shift(struct CONTINENT *[10][10],int,float); Without the 10,10 size definition, the plate_shift function would have no idea how big the array of pointers actually is. Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring

Re: update from 7.0 to 7.2?

2009-06-29 Thread Brad Mettee
At 03:20 PM 6/29/2009, you wrote: Brad Mettee writes: > If a system is stable and ports are up to date, serving mail & web > pages as needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb > 24 10:35

update from 7.0 to 7.2?

2009-06-29 Thread Brad Mettee
To something newer? (like 7.2 stable) Would there be any noticeable benefit from an update? Thanks Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Power* of your PCs. <- -> Custom Business Software Solutions since 1

watchdog questions

2009-05-05 Thread Brad Waite
I need some help understanding FreeBSD's kernel watchdog functionality. I've been reading up, and here's what I think I understand (correct me if I'm wrong): If a watchdog timer is set in the kernel and not reset or disabled within the time given, the kernel reboots the system. 'watchdog -t ' st

Broken drive geometry / partitions on 7.2 install

2009-05-04 Thread Brad Waite
Hi all, I was trying to install 7.2 RELEASE on top of a previous 6.4 RELEASE I'd set up (but not deployed). The server has a 40MB Intel service partition and the rest of the drive for FreeBSD. Here's what greeted me when doing the fdisk from the install CD: Disk name: da0

Re: /usr/bin/calendar in cgi script

2009-04-11 Thread Brad Mettee
You'll need to put it in a " " html block to preserve the formatting. Or you can try to substitute the '\n' into '' somehow (been a while since I did search/replace in an include so I can't be more specific). At 03:02 PM 4/11/2009, you wrote: Hi, I have a cgi script on my website that runs:

ZFS + Samba = nicely

2009-02-26 Thread Brad Pitney
locks up, but I am able to switch terminals with ALT+Fn keys, everything else is locked solid -- Best regards, Brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: disk/drive-bay problem

2009-02-26 Thread Brad Mettee
wipe off the oxidation. After it's looking shiny, use a clean cloth to wipe off any eraser residue. Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Power* of your PCs. <- -> Custom Business Software Soluti

Re: short-changed on SD card?

2009-02-02 Thread Brad Mettee
_ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org" Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617

Re: kvm switch

2009-01-19 Thread Brad Mettee
reebsd-questions-unsubscr...@freebsd.org" Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Power* of your PCs. <- -> Custom Business Software Solutions since 1991 <- visit http://www.pchots

RE: correct way to move users?

2009-01-15 Thread Brad Davison
> > I saw a very breif website that said to use this method:> > > > "> > Move > > user entries from the following old files: > > > > /etc/passwd/etc/group/etc/master.passwd > > Then run the following command > > to rebuild the password database: > > pwd_mkdb -p /etc/master.passwd > > "> > > >

correct way to move users?

2009-01-15 Thread brad davison
this the proper way? If not, what is the correct way to do this with Freebsd (7.0)? Thank you, Brad _ Windows Live™ Hotmail®: Chat. Store. Share. Do more with mail. http://windowslive.c

updated to 7.1 via cvs source, PAE kernel. server unstable

2009-01-13 Thread brad davison
Hi all, Hopefully someone can shed some light on my problem. Over the weekend, we upgraded our mailserver that was running like a champ w/ FBSD 7.0 and a PAE kernel (8gb RAM). I didn't use the freebsd-update program, because I read that if you're not using a GENERIC kernel, it wont work.

RE: Help with dmesg

2009-01-08 Thread brad davison
> From: demonichandextensi...@hotmail.com> To: remeg...@comcast.net; > pe...@boosten.org> Date: Thu, 8 Jan 2009 17:02:22 +> CC: > freebsd-questions@freebsd.org> Subject: RE: Help with dmesg> > > > >>> > INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock,> >>> F=, > T=S:4m;

RE: Help with dmesg

2009-01-08 Thread brad davison
> >>> INPUT_MAIL_FILTER(`clmilter',`S=local:/var/run/clamav/clmilter.sock,> >>> > >>> F=, T=S:4m;R:4m')> >>> > >> > > I actually copied that line directly from > >>> instructions at this site : > > >>> http://www.technoids.org/clamav-milter.html> The same setup is working on > >>> an old lapto

question regarding security patch 1/6/09 openssl

2009-01-08 Thread brad davison
After patching our systems, do we need to remake our keys/certs? Or are we just patching the mechanism to check the keys? _ Windows Live™ Hotmail®: Chat. Store. Share. Do more with mail. http://windowslive.com/explore?ocid=TXT_TAGL

RE: Mergemaster failing before 7.1 installworld

2009-01-07 Thread brad davison
> > Greetings. I have updated to 7.1 from a 6.2 box. Kernel built and > > > installed successfully, world built successfully, however mergemaster is > > > failing:> > $ mergemaster> *** Unable to find mtree database. Skipping > > auto-upgrade. I may be stating the obvious, but being before th

Official FreeBSD Forums

2008-11-16 Thread Brad Davis
Dear FreeBSD users, The FreeBSD project is finally, after much work, pleased to announce the availability of an official FreeBSD web based discussion forum. It is our hope that this forum will serve as a public support channel for FreeBSD users around the world and as a complement to our fine mai

Re: Mysqldump password issue

2008-10-02 Thread Brad Mettee
mOM46RQWS+lTEHXHd/wXkZUX Uz8AoJEkwynwlaH9rMjRxgp7Xvja82M1 =On8Y -END PGP SIGNATURE- ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" Br

firefox upgrade, BASE_BIND problem

2008-08-18 Thread Brad Mettee
sary. How can I get around this error? I've tried to google for a solution, but all I can find are a few references to the problem, but no actual solution. Thanks. Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Powe

Re: whatkind of 19" LCD display??

2008-07-29 Thread Brad Mettee
PROTECTED] > ** [ Busy Expunging <|> ] -- Gary Kline [EMAIL PROTECTED] http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org ___ freebsd-questions@freebsd.org mailing list

Re: groups, using "www" as "kline"

2008-07-21 Thread Brad Mettee
What are the permissions on the files you're trying to edit? 664 would allow owner/group editing, but readonly by world. If it's 644, then only owner can edit, but group/world can read. At 04:05 PM 7/21/2008, you wrote: On Mon, Jul 21, 2008 at 11:08:15AM -0700, Chuck Swiger wrote: > On Jul 21,

Re: general question - php5 extensions

2008-07-12 Thread Brad Mettee
Hadn't even occurred to me to file a PR. Getting the whole process working kinda derailled all trains of thought outside of "alright!, it works!". Good idea, will let him know about it. At 07:35 AM 7/12/2008, you wrote: On Fri, 11 Jul 2008 22:47:50 -0400 Brad Mettee <[EMAIL

Re: general question - php5 extensions

2008-07-11 Thread Brad Mettee
ut defining an ORIGIN line in it's +CONTENTS pkg file. Once I added that I stopped getting portmanager upgrade errors and everything got properly upgraded and compiled. At 03:59 PM 7/11/2008, you wrote: On Fri, 11 Jul 2008 15:30:21 -0400 Brad Mettee <[EMAIL PROTECTED]> wrote: &

general question - php5 extensions

2008-07-11 Thread Brad Mettee
ly difficult to find them. Or maybe at least have sym links to them in one place. This is just for discussion, I don't expect an actual answer.. Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring out the *Power* of you

Re: ia-64 Floppies

2008-07-09 Thread Brad Mettee
To clarify Kris' response: amd64 = AMD/Intel 64bit capable CPUs ia64 = Intel Itanium So if you're looking for an x86 compatible install CD, then you'll be wanting the amd64 version. (sorry for the direct reply Kris, I'm not used to mailing lists that don't do proper "reply-to") At 12:13 PM

re: rblsmtpd/qmail-smtpd hung processes

2008-07-08 Thread Brad Mettee
I've run into a bit of a problem and if I don't solve it soon, I'm going to be without e-mail (and so will a lot of other people). This is a bit long, I'm trying to include anything that may help. The problem is that qmail-smtpd and/or rblsmtpd get stuck and don't close. After a while the se

rblsmtpd/qmail-smtpd hung processes

2008-07-08 Thread Brad Mettee
ring a pair of FreeBSD machines (I posted to the list a couple weeks ago, thanks everyone for good replies, ) to take over DNS and E-Mail for about a dozen sites. Basically I've been on a crash course of learning as I go. Brad Mettee PC HotShots, Inc. Baltimore, MD

clone a drive, no raid involved

2008-06-19 Thread Brad Mettee
, but it's a 500G drive and that's going to take a really long time (especially since it's brand new with no data besides base OS). My question: Is there a better way to duplicate a drive including boot info? Brad Mettee PC HotShots, Inc. Baltimore, MD

new hardware - compatible?

2008-06-12 Thread Brad Mettee
Samsung SATA CD-ROM Thanks in advance. (I've been building/running x86 boxes since DOS 3.3, just haven't had need of *nix environment yet, so I'm not total noob) Brad Mettee PC HotShots, Inc. Baltimore, MD (410) 426-7617 -> Let us bring ou

Re: resident memory limit

2008-05-30 Thread Brad Penoff
On Wed, May 21, 2008 at 11:46 AM, Joshua Isom <[EMAIL PROTECTED]> wrote: > > On May 21, 2008, at 12:36 PM, Bill Moran wrote: > >> In response to "Brad Penoff" <[EMAIL PROTECTED]>: >>> >>> On Wed, May 21, 2008 at 6:09 AM, Bill Moran <[E

SOLVED: minimalist config, (was Lock down the all-staff email list? sendmail, alias, majordomo?)

2008-05-21 Thread brad davison
> > > What is the best way to have a list that only certain users are able to > > > send to? > > > > > > That sounds like you're getting into a full blown mailing0list package. I > > set up the "minimalist" port for a small list last year. Small & very easy > > to config. I think it has t

Re: resident memory limit

2008-05-21 Thread Brad Penoff
On Wed, May 21, 2008 at 6:09 AM, Bill Moran <[EMAIL PROTECTED]> wrote: > In response to "Brad Penoff" <[EMAIL PROTECTED]>: > >> On Tue, May 20, 2008 at 2:39 PM, Brad Penoff <[EMAIL PROTECTED]> wrote: >> > On Tue, May 20, 2008 at 1:54 PM, Bill Mora

Re: resident memory limit

2008-05-21 Thread Brad Penoff
On Tue, May 20, 2008 at 2:39 PM, Brad Penoff <[EMAIL PROTECTED]> wrote: > On Tue, May 20, 2008 at 1:54 PM, Bill Moran <[EMAIL PROTECTED]> wrote: >> In response to "Brad Penoff" <[EMAIL PROTECTED]>: >>> >>> I have an application that runs on L

Re: resident memory limit

2008-05-20 Thread Brad Penoff
On Tue, May 20, 2008 at 1:54 PM, Bill Moran <[EMAIL PROTECTED]> wrote: > In response to "Brad Penoff" <[EMAIL PROTECTED]>: >> >> I have an application that runs on Linux or Mac OS X but seems to have >> a problem when I run on FreeBSD (6.3 or 7). T

resident memory limit

2008-05-20 Thread Brad Penoff
alloctest can malloc the most!)? Thanks! brad Using FreeBSD 6.3. kern.maxdsiz default setting ( 524288 kB ) no swap file. Mem: 218M Active, 9184K Inact, 36M Wired, 14M Buf, 1739M Free Swap: 512M Total, 512M Free PID USERNAME THR PRI NICE SIZERES STATETIME WCPU COMMAND 9

minimalist config, (was Lock down the all-staff email list? sendmail, alias, majordomo?)

2008-05-20 Thread brad davison
> Date: Mon, 19 May 2008 15:07:31 -0400 > From: [EMAIL PROTECTED] > To: freebsd-questions@freebsd.org > Subject: Re: Lock down the all-staff email list? sendmail, alias, majordomo? > > brad davison wrote: > > What is the best way to have a list that only certain users

Lock down the all-staff email list? sendmail, alias, majordomo?

2008-05-19 Thread brad davison
Our company has a sendmail server 8.13.8 running on FBSD 6.2 with procmail. We currently have an alias set up for our all-staff email (we only have about 200 users). Someone recently sent out an email to the all-staff that someone didn't like, so now I have to restrict who can send to it. I

RE: telnet to mail server from outside does not get 220, telnet from inside works

2008-05-12 Thread brad davison
> Date: Mon, 12 May 2008 17:49:07 +0200 > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > CC: freebsd-questions@freebsd.org > Subject: Re: telnet to mail server from outside does not get 220, telnet from > inside works > > > Trying ::1... > > Connected to localhost.x.com. > > Escape

RE: telnet to mail server from outside does not get 220, telnet from inside works

2008-05-12 Thread brad davison
> From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Date: Mon, 12 May 2008 09:55:42 -0500 > CC: freebsd-questions@freebsd.org > Subject: Re: telnet to mail server from outside does not get 220, telnet > from inside works > > On May 12, 2008, at 9:04 AM, brad daviso

telnet to mail server from outside does not get 220, telnet from inside works

2008-05-12 Thread brad davison
er is '^]'. Connection closed by foreign host. Certain servers are having problems sending to the server because they are not getting a 220 code back. Most email is sent/received from the server no problem. It has been running in pro

SOLVED RE: openldap23-server ports, possible to enable syncprov?

2008-04-23 Thread brad davison
> > I see in the makefile that --disable-syncprov is listed in the Makefile. I > was wondering what the 'right' way to enable syncprov on openldap23-server ? > CONFIGURE_ARGS+= --disable-syncprov > > I tried to change that to --enable-syncprov, but was still getting the same > errors.

openldap23-server ports, possible to enable syncprov?

2008-04-23 Thread brad davison
I see in the makefile that --disable-syncprov is listed in the Makefile. I was wondering what the 'right' way to enable syncprov on openldap23-server ? CONFIGURE_ARGS+= --disable-syncprov I tried to change that to --enable-syncprov, but was still getting the same errors. Is there a com

remote logging with syslogd

2008-03-25 Thread Brad Pitney
/var/log/nub01/cron *.=debug /var/log/nub01/debug * syslogd_flags="-vv -4 -A -a 192.0.2.0/24 -b oxdeadbeef" -- Best regards, Brad ___ freebsd-questions@freebsd.org ma

Re: X.org 7.3 fails during startup, claiming font not found

2008-03-17 Thread Brad Pitney
ll clean check the archives :) -- Best regards, Brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Has anyone got the remote X-Win32 running?

2008-03-16 Thread Brad Pitney
f you can help - I'm almost there. > > Rob > > > > > > > > > > > > > > > > > > > > > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" > -- Best regards, Brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Which List

2008-03-12 Thread Brad Pitney
On Wed, Mar 12, 2008 at 12:30 PM, Yuri Pankov <[EMAIL PROTECTED]> wrote: > Brad Pitney wrote: > > Hello, > > > > which list is best for me to post a Lock Order Reversal which is related > the > > ral driver? > > > > What about DevFS? > > >

Which List

2008-03-12 Thread Brad Pitney
Hello, which list is best for me to post a Lock Order Reversal which is related the ral driver? What about DevFS? the box was running CURRENT until it was branched for RELENG_7 which was running code from September 2007 fine until I updated to "todays" code. _

usbhidaction resource consumption

2008-02-26 Thread brad clawsie
couple of days, and is repeatable my system is on 7.0 prerelease, with all code rebuilt from cvs within the last five days any ideas? thanks brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Relayd (former hoststated) status for freebsd 7.0RC1

2008-01-15 Thread Brad
On Tuesday 15 January 2008 15:24:52 Bruce M. Simpson wrote: > Alexandre Vieira wrote: > > Hello all, > > > > I remember that there was a port (net/hoststated) where I could install > > hoststated to use with PF. Anyone can shed a light on what is the status of > > this software implementation on 7.

RE: apple bonjour served up on FBSD

2007-11-28 Thread brad davison
the mDNSResponder port is up to date (moreso than even the apple download site) so i installed that with the port. it requires swig13 port as well.. which installed from the port just fine. after you get all that installed and working w/o errors, there is a bonjour python script set that will

apple bonjour served up on FBSD

2007-11-26 Thread brad davison
I am going to be making my BSD server at home available to my wife's macbook running Leopard. I am planning on implementing one of the mDNSResponder systems, but I am having some issues deciding which one to use. I have found the mDNSResponder from apple itself. I have also found (in no parti

vacation autoresponder

2007-10-19 Thread brad davison
eep copies of mail in your mailbox unless you also select Keep a copy here.' But there nothing below it.Any ideas what I may be missing? Thanks,Brad _ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com

RE: postfix problem

2007-10-18 Thread brad davison
You may also wish to add your locally hosted domains to the /etc/mail/local-host-names > From: [EMAIL PROTECTED] > Date: Thu, 18 Oct 2007 09:47:46 -0500 > To: [EMAIL PROTECTED] > CC: freebsd-questions@freebsd.org > Subject: Re: postfix problem > > You need to tell your mail server what domain

Installing Thawte Certificate on imap pop smtp

2007-10-11 Thread brad davison
I currently have self-signed certificates on our mail server, but they are now expired. I have just received the CA-crt back from thawte. I have the webmail portion completed with installing the certificates, but I am having some issues with getting them installed on SMTP. I tried to put them

Re: Service providers using Quagga

2007-09-14 Thread Brad Davis
; do you run it in, and at what level within your network? Hi Steve, I know a lot of people that are switching away form Quagga to the OpenBSD tools, such as OpenBGPd and OpenOSPFd. I prefer these tools since they seem to be more lightweight than Quagga an

FIXED Re: Domain of Sender does not exist

2007-09-12 Thread brad davison
well.. our internal DNS was set up by a hack who didn't do it right... I pointed the server to external DNS and everything is happy . Thanks for your help. From: "brad davison" <[EMAIL PROTECTED]> To: freebsd-questions@freebsd.org Subject: RE: {Disarmed} Re: Domain of

RE: {Disarmed} Re: Domain of Sender does not exist

2007-09-12 Thread brad davison
From: Derek Ragona <[EMAIL PROTECTED]> To: "brad davison" <[EMAIL PROTECTED]>,freebsd-questions@freebsd.org Subject: {Disarmed} Re: Domain of Sender does not exist Date: Wed, 12 Sep 2007 11:02:12 -0500 At 10:52 AM 9/12/2007, brad davison wrote: We are using Send

Re: Domain of Sender does not exist

2007-09-12 Thread brad davison
or put in my sendmail config, i'm all ears. It is configured for SMTP AUTH so its the check_rcpt that is giving up the error. From: Derek Ragona <[EMAIL PROTECTED]> To: "brad davison" <[EMAIL PROTECTED]>,freebsd-questions@freebsd.org Subject: Re: Domain of Sender d

Domain of Sender does not exist

2007-09-12 Thread brad davison
ny leads on where my DNS or configs might be not able to resolve this domain? Thanks Brad _ Get a FREE small business Web site and more from Microsoft® Office Live! http://clk.atdmt.com/MRT/go/aub093

Re: imap-uw / cclient SSL cert question

2007-09-10 Thread brad davison
Worked like a charm! Thanks! (the self-signed thing is OK.. but there was no way I was going to show it to the VP with the 'Domain Name Mismatch' error.) From: Tommy Scheunemann <[EMAIL PROTECTED]> To: brad davison <[EMAIL PROTECTED]> Subject: Re: imap-uw / cclient

imap-uw / cclient SSL cert question

2007-09-10 Thread brad davison
t to the mail server with SSL turned on, you examine the cert, and the CN is coming up as Localhost, not the name of our server. Is there a way to generate one that wont cause the Domain Name Mismatch error? I am very new to SSL, so any help or direction on this issue would be most apprecia

RE: RAID Controller Recommendations: ARC-1210 or 9650SE-4LPML

2007-09-05 Thread brad davison
had good driver support in BSD. from the 3ware website::: http://www.3ware.com/support/OS-Support.asp 9650SE Series * FreeBSD 5.0 driver source available in 9.4.1 code set * FreeBSD 6.0 driver source available in 9.4.1 code set * FreeBSD 6.1 (x86 & x86_64)

Re: Cannot rebuild Sendmail (with sasl2) **FIXED**

2007-08-31 Thread brad davison
r linux installations as the hardware gets replaced. THANK YOU AGAIN EVERYONE FOR YOUR HELP! 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-AUTH PLAIN LOGIN W H *** 250-STARTTLS 250-DELIVERBY 250 HELP From: Giorgos Keramid

Re: Cannot rebuild Sendmail (with sasl2)

2007-08-30 Thread brad davison
SMTP_SSL -std=iso9899:1990 -c /usr/src/usr.sbin/sendmail/../../contrib/sendmail/src/version.c make: don't know how to make /usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a. Stop From: Giorgos Keramidas <[EMAIL PROTECTED]> To: brad davison <[EMAIL PROTECTED]> CC: f

Re: Cannot rebuild Sendmail (with sasl2)

2007-08-29 Thread brad davison
# make obj # make depend # make # cd /usr/src/usr.sbin/sendmail # make obj # make depend # make # make install Does that help you to help me? I appreciate your time. -Brad - Giorgos _

Re: Cannot rebuild Sendmail (with sasl2)

2007-08-29 Thread brad davison
d the same thing, those went OK but when going into /usr/src/usr.sbin/sendmail and doing 'make clean && make depend' that works OK when doing the 'make' it fails with the libsmutil.a From: Yuri Pankov <[EMAIL PROTECTED]> To: brad davison <[EMAIL PROTECTED]&g

Cannot rebuild Sendmail (with sasl2)

2007-08-29 Thread brad davison
y had a similar problem. Sendmail with sasl2 build fails. *FIX* Richard Mcintyre rem at thecompanyonline.com Wed May 4 12:03:08 PDT 2005 He pointed to some advice he had found on a mailing list, but did not provide details. Any direction that could assist me would make me EXTREMELY grateful

/var or /usr for data?

2007-08-22 Thread Brad Waite
It would appear that the "proper" allocation of filesystems on FreeBSD is to put all data in /usr. I'm used to this and have been doing it for years. However, there's a few issues that keep coming up. A lot of the ports use /var for data dirs. MySQL, Qmail, dspam are a few that I've had issues

curious root find running

2007-08-17 Thread brad clawsie
( -perm -u+x -or -perm -g+x -or -perm -o+x ) ( -perm -u+s -or -perm -g+s ) -print0 any idea why this is running? is it part of a sanctioned background process? thanks! brad ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: make in ports not working

2007-02-20 Thread Brad Kowalczyk
Kris Kennaway wrote: On Tue, Feb 20, 2007 at 10:50:35AM +1100, Brad Kowalczyk wrote: Hi I get the following error when trying to make from the ports tree: "/usr/ports/Mk/bsd.port.mk", line 2292: warning: String comparison operator should be either == or != "/usr/ports/Mk/bsd

make in ports not working

2007-02-20 Thread Brad Kowalczyk
bsd.port.mk", line 2308: if-less else "/usr/ports/Mk/bsd.port.mk", line 2308: Need an operator "/usr/ports/Mk/bsd.port.mk", line 2322: if-less endif "/usr/ports/Mk/bsd.port.mk", line 2322: Need an operator "/usr/ports/Mk/bsd.port.mk", line 5987: i

Re: make in ports not working

2007-02-20 Thread Brad Kowalczyk
Kris Kennaway wrote: On Tue, Feb 20, 2007 at 11:57:19AM +1100, Brad Kowalczyk wrote: Kris Kennaway wrote: On Tue, Feb 20, 2007 at 10:50:35AM +1100, Brad Kowalczyk wrote: Hi I get the following error when trying to make from the ports tree: "/usr/ports/Mk/bsd.port.mk", line 229

boot fails with panic: ffs_valloc: dup alloc

2007-02-06 Thread Brad Kowalczyk
error in the bootloader config or something (it scrolls by too fast for me to get a good look) I am presuming a have a corrupted file system? Any ideas on how to get this fixed? TIA, Brad ___ freebsd-questions@freebsd.org mailing list http

Re: DL 380/G5 with 16G of ram

2006-09-07 Thread Brad Miele
# IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support

Re: nforce audio problem

2006-08-20 Thread Brad Kowalczyk
Greg 'groggy' Lehey wrote: On Sunday, 20 August 2006 at 10:47:17 +, Brad Kowalczyk wrote: Greg 'groggy' Lehey wrote: On Sunday, 20 August 2006 at 4:44:06 +, Brad Kowalczyk wrote: Seems I have the correct driver loaded and the device exists but no s

Re: nforce audio problem

2006-08-20 Thread Brad Kowalczyk
Hi Greg, Greg 'groggy' Lehey wrote: [Format recovered--see http://www.lemis.com/email/email-format.html] Computer output wrapped. On Sunday, 20 August 2006 at 4:44:06 +, Brad Kowalczyk wrote: Hi, Just wondering if anyone has any experience getting sound working for

  1   2   >