Re: Crontabbing a Ruby script inside a screen

2013-01-24 Thread Brian Seklecki (Mobile)
screen(1) is just going to fill a massive buffer, then eventually core. You can capture stdout/stderr to a file using script(1) instead. Its basically the same as: % nohup ./command 2>&1 | tee -a ~/command.log & ~BAS On Thu, 24 Jan 2013, Dwayne Henderson wrote: Hi, I run this Ruby + Seq

Re: Static IP on a Bridge

2011-12-29 Thread Brian Seklecki (Mobile)
Also, what MAC address does the DHCPREQUEST packet appear to be sourced from (from the view of your DHCP server, or on the wire somewhere between the two (SPAN PORT)) ~BAS This sounds familar. ___ freebsd-questions@freebsd.org mailing list h

Re: KVM - FreeBSD Network Problem

2011-10-07 Thread Brian Seklecki (Mobile)
What can be the problem? Any suggestion? Show us: ifconfig -a arp -an netstat -rn netstat -i netstat -s Are other KVM guests on this hypervisor working? Are you briding or routing/NAT from your hypervisor? ~BAS ___ freebsd-questions@freebs

Re: ICMP redirects and FreeBSD

2011-09-17 Thread Brian Seklecki (Mobile)
On Sat, 17 Sep 2011, Brett Glass wrote: Here's a networking question: Does FreeBSD generate and accept ICMP redirects? Is it controllable via tuneables? How long do routing tables $ sysctl -d net.inet.ip.redirect net.inet.ip.redirect: Enable sending IP redirects Accepting them sounds like th

Re: CARP on 9.0 (was no subject)

2011-08-26 Thread Brian Seklecki (Mobile)
How about: %sudo netstat -s carp ...on both machines. A few years ago I submitted (or maybe it was Steve Polyack) a patch to add debugging to CARP, not sure if it ever got commited. Need-more-Cisco'sih-Debugging. ~BAS On Fri, 26 Aug 2011, Patrick Lamaiziere wrote: Le Fri, 26 Aug 2011

Re: FreeBSD reports incorrect amount of memory

2011-06-21 Thread Brian Seklecki (Mobile)
trying to use memory that isn't there? How do I debug/fix this? Just curious, what was memtest86+ report? Can you install dmidecode(8) from /usr/ports/sysutils/dmidecode I'd be very suprised if GCC started misbehaving during compile ~BAS Didn't find anything with google. ___

Re: CVSUP

2010-06-10 Thread Brian Seklecki (Mobile)
RELENG_8_0 Yes. This will give you the latest 8.0 release + desired patch level (critical security patches). This is almost certain what you want to be running before going to production status. I mean, you could use RELENG_8_0_RELEASE I suppose, but then the cvsup would be without merit.