Re: 2 ISP on one FreeBSD router

2004-05-25 Thread Paul Chvostek
connection, and if it fails, `killall natd`, wait for the process to die, and re-launch with the different command line opts. The exact mechanics are left as an exercise for the reader. Or the consultant he hires. ;) p -- Paul Chvostek [EMAIL PROTECTED

Re: Can Freebsd run on linux?

2004-02-23 Thread Paul Chvostek
On Sun, Feb 22, 2004 at 03:49:10PM -0800, Ken Finegood's Office 2 wrote: Subject: Can Freebsd run on linux? Yes, it can, but you'll likely need a product like VMWare to to it. Questions about what software can run in Linux should probably be directed to a Linux mailing list. -- Paul

portmap running amok

2002-12-25 Thread Paul Chvostek
reboot. I can see no other strange behaviour (or network traffic) going on with this box -- aside from this problem, it behaves perfectly. Does any of this sound familiar? Where do I look for the problem? Tnx. -- Paul Chvostek [EMAIL PROTECTED

Re: portsentry

2003-01-29 Thread Paul Chvostek
/usr/local/bin/portsentry ] /usr/local/bin/portsentry -tcp echo -n portsentry ;; stop) killall portsentry ;; esac I've seen others punt and simply add /usr/local/bin/portsentry -tcp to their /etc/rc.local. It's not as SysV-compliant, but it works. -- Paul

Re: building a routing machine

2003-07-17 Thread Paul Chvostek
from your desktop, you'll probably want to run natd. The man page for natd should be your starting point. -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ Free PHP web hosting

Re: CVSupping 5

2003-08-05 Thread Paul Chvostek
until after I had run a `make update`. Presumably this is an error and it should really be RELENG_5_1 (and ditto for 5.0, which also defaulted to RELENG_4). Lesson for the day: READ EVERYTHING. ;-) -- Paul Chvostek [EMAIL PROTECTED] Operations

buffered fifo?

2003-06-12 Thread Paul Chvostek
-multiple-client (i.e. a single `tail -f fifo | while read line` and dot-locking for the clients). I don't care if data gets lost in a crash, but I'd really rather not get into alot of programming. Is there an elegant way to achieve any of this in shell? Thanks. :) -- Paul Chvostek

Re: Procmail Recipie For FreeBSD Lists?

2003-07-03 Thread Paul Chvostek
variable) to after the freebsd-. And if you want it to support other RFC2919-compliant lists (that is, ones which include the List-Id: header), simply remove freebsd- from the recipe. -- Paul Chvostek [EMAIL PROTECTED] it.canada

Re: Procmail Recipie For FreeBSD Lists?

2003-07-03 Thread Paul Chvostek
Woops... On Thu, Jul 03, 2003 at 12:12:46PM -0400, Paul Chvostek wrote: Easy enough: :0: * List-Id:[^]+\/freebsd-[^.] $MATCH That should have been: :0: * ^List-Id:[^]+\/freebsd-[^.]+ $MATCH But I'm sure everyone already knew that... ;) -- Paul Chvostek

Re: Adding disk space to an FTP directory -- ideas?

2003-07-03 Thread Paul Chvostek
-symlinks.html Lots of options. -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ Free PHP web hosting!http://www.it.ca/web

Re: format of /etc/crontab?

2003-07-03 Thread Paul Chvostek
need? -- Paul Chvostek [EMAIL PROTECTED] Operations / Abuse / Whatever it.canada, hosting and development http://www.it.ca/ ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org

Re: Procmail Recipie For FreeBSD Lists?

2003-07-03 Thread Paul Chvostek
missing? Remember that paths that start with a / are absolute, and all other paths are relative to $MAILDIR. -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ Free PHP web hosting

List friendliness

2003-07-04 Thread Paul Chvostek
. This way, you can use the 'L' key to follow up to the list, the 'g' key to do a group-reply, or the 'r' key to reply just to the sender, and your headers will include the custom Reply-To for 'L' and 'g'. -- Paul Chvostek [EMAIL PROTECTED] it.canada

Re: vi

2003-07-04 Thread Paul Chvostek
are different interfaces to the same program, ... VI is a VIsual editor. If you have commands you'd like to execute on stdin, try using ex. If your stdin uses commands that exist in vim but not in ex, I'd recommend rewriting your stdin -- Paul Chvostek

problem upgrading from 5.0 to 5.1

2003-07-07 Thread Paul Chvostek
`funlockfile': | _flock_stub.o(.text+0x10d): undefined reference to `_pthread_self' | _flock_stub.o(.text+0x149): undefined reference to `_pthread_mutex_unlock' | *** Error code 1 | | Stop in /var/src/bin/cat. |... -- Paul Chvostek [EMAIL PROTECTED

Re: problem upgrading from 5.0 to 5.1

2003-07-07 Thread Paul Chvostek
(128 bit symmetric encryption) COMPAT4X= yes Any further wisdom? -- Paul Chvostek [EMAIL PROTECTED] Operations / Abuse / Whatever it.canada, hosting and development http://www.it.ca

Re: dual-homed problems

2003-07-08 Thread Paul Chvostek
But if 192.168.1.0/24 is in your routing table, its traffic goes out of one, and only one, interface. -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ Free PHP web hosting

Re: dd question

2006-05-04 Thread Paul Chvostek
/g4u/#shrinkimg . p -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: Other ways than quotas to limit mail files size ??

2004-01-12 Thread Paul Chvostek
based on whatever criteria you dream up. But you have to dream it up first. Figure out exactly what you want to do with your users' mail. Then try to write something that does it. And if you have problems with that, come back to the list and ask for advice. :-) p -- Paul Chvostek

Re: Problem Piping iostat -c to awk!

2005-07-14 Thread Paul Chvostek
of iostat... other that the grep option -v. Does not seem to be working in awk. You could try something like: iostat -c 300 | awk 'BEGIN {getline;getline;} $1~/^[0-9]+$/ {print $1}' or for something even lighter-weight: iostat -c 300 | sed -Ene 's/^ +//;s/ .*//;/^[0-9]+$/p' -- Paul Chvostek

Re: Un-GNOME-ing a FreeBSD box

2004-12-11 Thread Paul Chvostek
, Hoover, etc would come up with tools to help them back out of such a change to their environment. -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca

Re: How to forward old root mails to an external email address?

2011-02-22 Thread Paul Chvostek
. This is easier: # formail -s sendmail y...@example.com /var/mail/root p -- Paul Chvostek p...@it.ca ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: What's wrong with this picture?

2009-06-05 Thread Paul Chvostek
since 2003, but procmail hasn't changed much in that time either. Hope it helps. Sometimes killing the trolls is just too much effort. -- Paul Chvostek p...@it.ca it.canadahttp://www.it.ca

Re: Cronjob

2009-06-08 Thread Paul Chvostek
intelligence into the crontab itself: 0 1 28-31 * * test `date -v+1d '+%d'` -eq 1 /path/to/script That may be your easiest option. The script only gets run on the correct dates, but the cron job still gets run more frequently. p -- Paul Chvostek

Re: Firefox+Flash+Qemu

2006-09-19 Thread Paul Chvostek
at the kqemu-kmod port? It's the bit that allows guest code to run directly on the host cpu. YMMV, but it seems to allow QEMU to run Windows guests at about the same speed as VMWare. http://qemu.org/qemu-accel.html for details. p -- Paul Chvostek

OpenOffice.org 2.2.1 quits on launch

2007-07-03 Thread Paul Chvostek
/make.conf: WITH_EVOLUTION2=yes WITH_TTF_BYTECODE_ENABLED=yes WITH_SYSTEM_FREETYPE=yes Any suggestions? Has anyone else seen and solved this? Thanks. -- Paul Chvostek [EMAIL PROTECTED] ___ freebsd

Re: The worst error message in history belongs to... BIND9!

2007-07-03 Thread Paul Chvostek
` -rwxr-xr-x 1 root root 616248 Aug 13 2006 /bin/bash lrwxrwxrwx 1 root root 4 Mar 25 20:36 /bin/sh - bash -- Paul Chvostek [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: OpenOffice.org 2.2.1 quits on launch

2007-07-03 Thread Paul Chvostek
and forum posts for other operating systems. But thanks for the suggestion. Hrm, I just realized there's a freebsd-openoffice@ list. Perhaps I'll look there. p -- Paul Chvostek [EMAIL PROTECTED] ___ freebsd

Re: OpenOffice.org 2.2.1 quits on launch

2007-07-03 Thread Paul Chvostek
On Wed, Jul 04, 2007 at 09:47:55AM +1000, Norberto Meijome wrote: Paul Chvostek [EMAIL PROTECTED] wrote: Now, when I launch OO, it complains not at all, but opens no windows. ... I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF fonts work in other apps, and OO

Re: Dual DVI, PCI-Express, xorg and FreeBSD

2006-06-27 Thread Paul Chvostek
. $154 Cdn. You can probably find it cheaper South of the border. p -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ ___ freebsd-questions

Re: need help w/ simple bash script

2006-06-27 Thread Paul Chvostek
have tempfiles with package lists for the various stati, which you can parse as you see fit. Note that you may get better (i.e. more useful) mileage out of something like: pkg_version -vL= which will show you only what needs to be updated. -- Paul Chvostek

Re: multiple links with single ln command

2006-06-27 Thread Paul Chvostek
create the link.) -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: Urgent: Downgrading from 6.X to 5.X?

2006-07-01 Thread Paul Chvostek
I'm using HP DL380-G4 servers (onboard bge, ciss RAID), with a BlueArc Titan for NFS. Of course, I'm not running nfsd on the FreeBSD boxes, they're just clients. -- Paul Chvostek [EMAIL PROTECTED] it.canada

Re: Best SMTP Gateway Program and Reporting Tools

2008-08-14 Thread Paul Chvostek
. (Hear that, Greg? I'm marketing for ya! ;] ) p -- Paul Chvostek [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: Tailing logs

2008-08-27 Thread Paul Chvostek
with the ^[. Enjoy. p -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: Regular Expression Trouble

2008-08-27 Thread Paul Chvostek
it as-is into a tiny shell script. Awk is forgiving about whitespace. You should theoretically be able to feed the same regex to awk, but I've found that awk's eregex support sometimes doesn't work as I'd expect. Hope this helps. p -- Paul Chvostek

Re: Why the extra shells?

2008-09-10 Thread Paul Chvostek
(and therefore possibly subject to a HUP sent by the shell as you kill it). p -- Paul Chvostek [EMAIL PROTECTED] it.canadahttp://www.it.ca/ ___ freebsd-questions

chio: /dev/ch0: CHIOMOVE: Device not configured

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