Re: randomising tracks: scripting question

2010-12-26 Thread b. f.
Frank Shute wrote: I generally play my tracks of an album like so: for track in $(cat trombone_shorty-backatown.m3u); do mplayer $track done They then play in the correct order. How would I go about randomising the order of play using sh (preferably) or perl? cat trombone_shorty-backatown.m3u

Re: randomising tracks: scripting question

2010-12-26 Thread Chris Brennan
On Sun, Dec 26, 2010 at 2:04 PM, b. f. bf1...@googlemail.com wrote: Frank Shute wrote: I generally play my tracks of an album like so: for track in $(cat trombone_shorty-backatown.m3u); do mplayer $track done They then play in the correct order. How would I go about randomising the

Re: randomising tracks: scripting question

2010-12-26 Thread Devin Teske
On Dec 26, 2010, at 11:02 AM, Frank Shute wrote: On Sun, Dec 26, 2010 at 06:01:45PM +, RW wrote: On Sun, 26 Dec 2010 09:40:43 -0800 Chip Camden sterl...@camdensoftware.com wrote: Quoth Frank Shute on Sunday, 26 December 2010: I generally play my tracks of an album like so: for

E-Mail scaling question

2010-12-21 Thread Mark Moellering
Hello All, My company needs a [new] e-mail solution for a product rollout. Rather than have a few e-mail domains with lots of addresses, the solution we need is for a very few (mostly one, very rarely more than 3) accounts on upwards of tens of thousands of domains. I can't find any info on

Re: E-Mail scaling question

2010-12-21 Thread Diego Arias
On Tue, Dec 21, 2010 at 2:39 PM, Mark Moellering m...@msen.com wrote: Hello All, My company needs a [new] e-mail solution for a product rollout. Rather than have a few e-mail domains with lots of addresses, the solution we need is for a very few (mostly one, very rarely more than 3)

Re: E-Mail scaling question

2010-12-21 Thread Chuck Swiger
On Dec 21, 2010, at 11:39 AM, Mark Moellering wrote: My company needs a [new] e-mail solution for a product rollout. Rather than have a few e-mail domains with lots of addresses, the solution we need is for a very few (mostly one, very rarely more than 3) accounts on upwards of tens of

Re: E-Mail scaling question

2010-12-21 Thread tomasz dereszynski
classcreator.com Any (or almost any) MTA you pick is able to handle 100's of domains with few addresses on them. Once you start running AV/Antispam and work our expected volume you may start thinking about performance issues... Question is what are you actually trying to achieve? Objectives

Re: Noob Jail question.

2010-12-17 Thread Dave
Hi.. I've actualy got a messing about PC with 8.1 on, that I often play with during lunch times at work. Trouble is, been working through lunchtimes for the last week or three. Self teaching is good, you certainly learn things, but though I'm not in need of instant self gratification, it's a

Re: Noob Jail question.

2010-12-17 Thread Da Rock
On 12/18/10 02:58, Dave wrote: Hi.. I've actualy got a messing about PC with 8.1 on, that I often play with during lunch times at work. Trouble is, been working through lunchtimes for the last week or three. Self teaching is good, you certainly learn things, but though I'm not in need of

Question about multicast forwarding

2010-12-16 Thread dave jones
Hi, I have the following networks: --- | | | | iptv device (172.16.113.2) FreeBSD (re0:172.16.113.8) | (re1:172.16.112.2)

Re: Noob Jail question.

2010-12-16 Thread Boris Samorodov
Dave d...@g8kbv.demon.co.uk writes: I've been reading the FreeBSD Manual (a dangerous thing to do during lunchtimes!) relating to Jails. Other than making my head spin, I'm finding it a tad dificult finding out just what you can/cant do with a Jail. Mainly, because I'm not familiar with

Re: Noob Jail question.

2010-12-16 Thread Dave
On 16 Dec 2010 at 14:50, Da Rock wrote: On 12/16/10 09:32, Dave wrote: Hi. As some of you may remember, I've managed to build a F'BSD V8.0 based system that provides me with:- . . . . Hi.. Indexer and Da Rock, many thanks, more reading, and some fiddling needed I think. Cheers.

Re: next question....

2010-12-16 Thread David Brodbeck
On Sat, Nov 27, 2010 at 9:06 AM, Chris Brennan xa...@xaerolimit.net wrote: When sudo'ing, pass 'sudo su -' (same principle applies, but you don't need to to be in wheel to use this command) Is the end result of 'sudo su - ' any different from the simpler command 'sudo -i'?

Re: Noob Jail question.

2010-12-16 Thread Indexer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Indexer and Da Rock, many thanks, more reading, and some fiddling needed I think. It is the best way to learn. Setup a VM of fbsd 8.1 on your computer, and just play with it on that with jails, and learn what you can an cant do. Remember

Noob Jail question.

2010-12-15 Thread Dave
Hi. As some of you may remember, I've managed to build a F'BSD V8.0 based system that provides me with:- Local GPS disiplined NTP server (working very well) the reason I built the thing in the first place, but it seems FreeBSD can do so much more, so I also have. Hiawatha webserver (also

Re: Noob Jail question.

2010-12-15 Thread Indexer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 SSH remote login for admin needs (But not for root login) Also working well. Good! I think I'd like to run Hiawatha in a Jail, as it seems the right thing to do with something that will be exposed to the www. (Comments/advice?) - From

Re: Noob Jail question.

2010-12-15 Thread Da Rock
On 12/16/10 09:32, Dave wrote: Hi. As some of you may remember, I've managed to build a F'BSD V8.0 based system that provides me with:- Local GPS disiplined NTP server (working very well) the reason I built the thing in the first place, but it seems FreeBSD can do so much more, so I also

Re: regex question....

2010-12-05 Thread RW
On Sat, 4 Dec 2010 20:32:57 -0800 Gary Kline kl...@thought.org wrote: On Sat, Dec 04, 2010 at 06:49:45PM -0800, xSAPPYx wrote: Also, the + operator means '1 or more' but needs escaped: %s/[0-9]\+/foo/g Okay. I thought that the + must be perl-only regex... . It's from Extended

Re: regex question....

2010-12-05 Thread Ian Smith
with a 0 if the strings in question might have leading zeros). YES, and Perry get an A+; the numbers do start with 1; no leading 0's. Except 0 itself? :) You originally specified ints from 0 to some N. I think you want either [0-9][0-9]* or just [0-9]+ (one or more digits

Re: regex question....

2010-12-05 Thread Gary Kline
RE I know for integers is [1-9][0-9]* (or replace the 1 with a 0 if the strings in question might have leading zeros). YES, and Perry get an A+; the numbers do start with 1; no leading 0's. Except 0 itself? :) You originally specified ints from 0

Re: regex question....

2010-12-05 Thread Randal L. Schwartz
Joshua == Joshua Gimer jgi...@gmail.com writes: Joshua On Sat, Dec 4, 2010 at 5:26 PM, Gary Kline kl...@thought.org wrote: I have tried :1,$/s/[0-9]][0-9][0-9]/foo/g Joshua Why not just %s/[0-9]*/foo/g Because that would turn a line of fred into foofred. :) -- Randal L. Schwartz -

Re: regex question....

2010-12-05 Thread Randal L. Schwartz
Gary == Gary Kline kl...@thought.org writes: Gary %s/[1-0][0-9]*/foo/g Except 1-0 is an empty set. :) -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 mer...@stonehenge.com URL:http://www.stonehenge.com/merlyn/ Smalltalk/Perl/Unix consulting, Technical writing,

Re: regex question....

2010-12-05 Thread Chip Camden
Quoth Polytropon on Sunday, 05 December 2010: PS: See, this is why I keep cheatsheets. ;) That's the fat green book on my shelf. :-) For regex reference, I find this site helpful: http://www.regular-expressions.info/reference.html ... especially regarding differences between

Re: regex question....

2010-12-05 Thread Chip Camden
Quoth RW on Sunday, 05 December 2010: On Sat, 4 Dec 2010 20:32:57 -0800 Gary Kline kl...@thought.org wrote: On Sat, Dec 04, 2010 at 06:49:45PM -0800, xSAPPYx wrote: Also, the + operator means '1 or more' but needs escaped: %s/[0-9]\+/foo/g Okay. I thought that the + must

Re: regex question....

2010-12-05 Thread Gary Kline
On Sun, Dec 05, 2010 at 09:37:58AM -0800, Randal L. Schwartz wrote: Gary == Gary Kline kl...@thought.org writes: Gary %s/[1-0][0-9]*/foo/g Except 1-0 is an empty set. :) Ya, sure, you-betcha! I really did mean a '9'there. For some reason, what I'm thinking

Re: regex question....

2010-12-05 Thread Gary Kline
-expressions.info/reference.html ... especially regarding differences between regex flavors: http://www.regular-expressions.info/refflavors.html Ah, super. I google around until I find *something* that answers my question. YEsterday, I thought it [1-9][0-9] was simple enough

Re: regex question....

2010-12-05 Thread Wayne Sierke
On Sun, 2010-12-05 at 10:19 -0800, Chip Camden wrote: Quoth RW on Sunday, 05 December 2010: On Sat, 4 Dec 2010 20:32:57 -0800 Gary Kline kl...@thought.org wrote: On Sat, Dec 04, 2010 at 06:49:45PM -0800, xSAPPYx wrote: Also, the + operator means '1 or more' but needs escaped:

regex question....

2010-12-04 Thread Gary Kline
Gang, I was tried to find Jeffrey Friedl's email to figure out some quick regex when it struck me that the list can clue me in [[I have figured this out myself several times--well, 3 or 4 anyway--but it was more trial/error than I need.]] I have a file with ints from 0 to some N. What is

Re: regex question....

2010-12-04 Thread Joshua Gimer
On Sat, Dec 4, 2010 at 5:26 PM, Gary Kline kl...@thought.org wrote: I have tried :1,$/s/[0-9]][0-9][0-9]/foo/g Why not just %s/[0-9]*/foo/g -- Thanks, Joshua Gimer --- http://www.linkedin.com/in/jgimer http://twitter.com/jgimer http://itsecops.blogspot.com/

Re: regex question....

2010-12-04 Thread Gary Kline
On Sat, Dec 04, 2010 at 05:29:49PM -0700, Joshua Gimer wrote: On Sat, Dec 4, 2010 at 5:26 PM, Gary Kline kl...@thought.org wrote: I have tried :1,$/s/[0-9]][0-9][0-9]/foo/g Why not just %s/[0-9]*/foo/g So I just missed the *? Didn't need to escape the [ or ] ? ---I'll

Re: regex question....

2010-12-04 Thread Polytropon
On Sat, 4 Dec 2010 17:24:30 -0800, Gary Kline kl...@thought.org wrote: So I just missed the *? Yes. In regex, * means any amount of, if I remember correctly. So you don't have to specify precisely how many numbers there are. How many lights? :-) Didn't need to escape the [ or ] ?

Re: regex question....

2010-12-04 Thread perryh
know for integers is [1-9][0-9]* (or replace the 1 with a 0 if the strings in question might have leading zeros). ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: regex question....

2010-12-04 Thread Gary Kline
string. (* means zero or more instances of whatever preceded it.) Best RE I know for integers is [1-9][0-9]* (or replace the 1 with a 0 if the strings in question might have leading zeros). YES, and Perry get an A+; the numbers do start with 1; no leading 0's

Re: regex question....

2010-12-04 Thread xSAPPYx
zero or more instances of whatever preceded it.) Best RE I know for integers is  [1-9][0-9]* (or replace the 1 with a 0 if the strings in question might have leading zeros). ___ freebsd-questions@freebsd.org mailing list http

Re: regex question....

2010-12-04 Thread Gary Kline
]*/foo/g Too broad -- it will match the null string.  (* means zero or more instances of whatever preceded it.) Best RE I know for integers is  [1-9][0-9]* (or replace the 1 with a 0 if the strings in question might have leading zeros

About FreeBSD command question

2010-12-03 Thread kan
Hi Support, I have a FreeBSD server for mailing, I must make backup and check the which bit (32bit/64bit) is now use in FreeBSD, so can you provide the command for me? Regards, Kan ___ freebsd-questions@freebsd.org mailing list

Re: About FreeBSD command question

2010-12-03 Thread Kevin Kinsey
kan wrote: Hi Support, I have a FreeBSD server for mailing, I must make backup and check the which bit (32bit/64bit) is now use in FreeBSD, so can you provide the command for me? Regards, Kan What output does: $ uname -m produce? Kevin Kinsey

Re: About FreeBSD command question

2010-12-03 Thread Frank Shute
On Fri, Dec 03, 2010 at 03:36:02PM +0800, kan wrote: Hi Support, I have a FreeBSD server for mailing, I must make backup and check the which bit (32bit/64bit) is now use in FreeBSD, so can you provide the command for me? Regards, Kan Not too sure I'm clear what you're askingyou

Re: next question....

2010-11-28 Thread Paul Cartwright
On 11/27/2010 12:06 PM, Chris Brennan wrote: You need to add yourself to the 'wheel' group to su or you need to add the proper line to /usr/local/etc/sudoers to sudo correctly. no sudoers on my system: $ cd /usr/local/etc $ cd sudoers cd: can't cd to sudoers $ ls CORBA

Re: next question....

2010-11-28 Thread Chris Rees
On 27 November 2010 17:12, Paul Cartwright p...@pcartwright.com wrote: On 11/27/2010 12:06 PM, Chris Brennan wrote: You need to add yourself to the 'wheel' group to su or you need to add the proper line to /usr/local/etc/sudoers to sudo correctly. no sudoers on my system: $ cd /usr/local/etc

next question....

2010-11-27 Thread Dave
On 26 Nov 2010 at 12:11, Arthur Chance wrote: -- Although the wombat is real and the dragon is not, few know what a wombat looks like, but everyone knows what a dragon looks like. -- Avram Davidson, _Adventures in Unhistory_ Hmm.. A Wombat... That's a recoilless anti-tank gun if I

Re: next question....

2010-11-27 Thread Chris Brennan
On Sat, Nov 27, 2010 at 12:01 PM, Dave d...@g8kbv.demon.co.uk wrote: $ su su: Sorry $ sudo sudo: not found $ uname -a FreeBSD FBSD.67MK181QZ 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Wed Apr 14 22:55:09 BST 2010 r...@fbsd.67mk181qz:/usr/obj/usr/src/sys/PPSGENERIC i386 $ $ You need to add

Re: next question....

2010-11-27 Thread Dave
On 27 Nov 2010 at 12:06, Chris Brennan wrote: On Sat, Nov 27, 2010 at 12:01 PM, Dave d...@g8kbv.demon.co.uk wrote: $ su su: Sorry $ sudo sudo: not found $ uname -a FreeBSD FBSD.67MK181QZ 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Wed Apr 14 22:55:09 BST 2010

Xorg 7.6 question and hopes

2010-11-25 Thread doug
The change log for X11R7.6-RC1 says for the vesa driver: Don't artificially limit the screen size to 2k VBE lets you specify sizes in uint16_t. X won't work above 32k though, so clamp to that instead of the arbitrary 2k. Does anyone know if this will allow larger screen resolutions or is

a question regarding proper printf(3) formating and alignment

2010-11-17 Thread Alexander Best
hi there, i've looked at a lot of utilities in the bsd src tree and most of them seem to be doing something like this: Device 1M-blocks UsedAvail Capacity /dev/label/swapfs 10239010239 0% /dev/label/swap 81910 8191 0% Total

Re: a question regarding proper printf(3) formating and alignment

2010-11-17 Thread Dan Nelson
In the last episode (Nov 17), Alexander Best said: hi there, i've looked at a lot of utilities in the bsd src tree and most of them seem to be doing something like this: Device 1M-blocks UsedAvail Capacity /dev/label/swapfs 10239010239 0%

Re: a question regarding proper printf(3) formating and alignment

2010-11-17 Thread Alexander Best
On Wed Nov 17 10, Dan Nelson wrote: In the last episode (Nov 17), Alexander Best said: hi there, i've looked at a lot of utilities in the bsd src tree and most of them seem to be doing something like this: Device 1M-blocks UsedAvail Capacity /dev/label/swapfs

Re: a question regarding proper printf(3) formating and alignment

2010-11-17 Thread Karl Vogel
In the last episode (Nov 17), Alexander Best said: A i've looked at a lot of utilities in the bsd src tree and most of them A seem to be doing something like this: A Device 1M-blocks UsedAvail Capacity A /dev/label/swapfs 10239010239 0% A /dev/label/swap

Re: a question regarding proper printf(3) formating and alignment

2010-11-17 Thread Dan Nelson
In the last episode (Nov 17), Karl Vogel said: In the last episode (Nov 17), Alexander Best said: A i've looked at a lot of utilities in the bsd src tree and most of them A seem to be doing something like this: A Device 1M-blocks UsedAvail Capacity A /dev/label/swapfs

You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread José Silveira
You guys complain cause I asked why do use a demon as a mascot of freeeBSD. Some says... oh no this crap again, others desrespected me but what is incredible is that even a simple question like I did caused so many rage and movement of answers!!! I think this theme still alived... I got thousands

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Indexer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/11/2010, at 22:54, José Silveira wrote: You guys complain cause I asked why do use a demon as a mascot of freeeBSD. Some says... oh no this crap again, others desrespected me but what is incredible is that even a simple question like I did

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Odhiambo Washington
2010/11/12 José Silveira jmlsilve...@gmail.com You guys complain cause I asked why do use a demon as a mascot of freeeBSD. Some says... oh no this crap again, others desrespected me but what is incredible is that even a simple question like I did caused so many rage and movement of answers

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Antonio Olivares
2010/11/12 Odhiambo Washington odhia...@gmail.com: 2010/11/12 José Silveira jmlsilve...@gmail.com You guys complain cause I asked why do use a demon as a mascot of freeeBSD. Some says... oh no this crap again, others desrespected me but what is incredible is that even a simple question like I

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Svein Skogen (Listmail account)
On 12.11.2010 13:24, José Silveira wrote: You guys complain cause I asked why do use a demon as a mascot of freeeBSD. Some says... oh no this crap again, others desrespected me but what is incredible is that even a simple question like I did caused so many rage and movement of answers!!! I

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Odhiambo Washington
2010/11/12 José Silveira jmlsilve...@gmail.com What...was...that...crap So many words for saying nothing! I will never use freeBSD, one of the reasons is you. FreeBSD is FREE. How much do you suppose we lose if one person with a stupid attitude refuses to use it? -- Best regards,

Re: You complain about my exceeded question but got an outstanding volume of answers!!! Why?

2010-11-12 Thread Odhiambo Washington
is incredible is that even a simple question like I did caused so many rage and movement of answers!!! I think this theme still alived... I got thousands of answers! Just one with apropriate contents. The rest was a crap. You can drown in this crap that is freeBSD!!! I suggest using

Re: GPT Question

2010-11-11 Thread Derek Funk
On 11/10/2010 9:34 PM, Mark Caudill wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Firstly, hello list. This is my first post here and while I'm a long time Linux user, I'm a recent FreeBSD convert so please bear with me. Yesterday I installed an extra hard drive that used to be in a

Re: GPT Question

2010-11-11 Thread Ian Smith
In freebsd-questions Digest, Vol 336, Issue 9, Message: 23 On Thu, 11 Nov 2010 17:45:19 -0600 Derek Funk dfu...@cox.net wrote: On 11/10/2010 9:34 PM, Mark Caudill wrote: [..] just ran `dd if=/dev/zero of=/dev/ad12 bs=512` and let it run. That must have done the trick because I was then

Re: Multiple tun loadbalancing question

2010-11-10 Thread Leonardo Santagostini
Vidican; freebsd-questions@freebsd.org Subject: Re: Multiple tun loadbalancing question This might be worth looking into as well! It's an open source load balancer that was originally developed by yahoo and released into the open source community. It is now a part of the Apache project

GPT Question

2010-11-10 Thread Mark Caudill
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Firstly, hello list. This is my first post here and while I'm a long time Linux user, I'm a recent FreeBSD convert so please bear with me. Yesterday I installed an extra hard drive that used to be in a Windows 7 box. In sysinstall I ran fdisk then

Re: GPT Question

2010-11-10 Thread Michael Powell
Mark Caudill wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Firstly, hello list. This is my first post here and while I'm a long time Linux user, I'm a recent FreeBSD convert so please bear with me. Yesterday I installed an extra hard drive that used to be in a Windows 7 box. In

Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
Hello all, I have one freebsd 8.1 box with 3 3G mobile broadband connection. All connections works fine, but i want to do loadbalancing / fault tolerant with this 3 connections. I was reading about lagg interfaces, but i think is not the proper direction. Someone can point me to the rigth one?

Re: Multiple tun loadbalancing question

2010-11-09 Thread Diego Arias
On Tue, Nov 9, 2010 at 1:55 PM, Leonardo Santagostini lsantagost...@gmail.com wrote: Hello all, I have one freebsd 8.1 box with 3 3G mobile broadband connection. All connections works fine, but i want to do loadbalancing / fault tolerant with this 3 connections. I was reading about lagg

Re: Multiple tun loadbalancing question

2010-11-09 Thread Nathan Vidican
Might I suggest you look into MultiLink PPP, or MLPPP - standard FreeBSD ppp does support it. It allows for round-robin, or packet-splitting accross multiple PPP connections to pool bandwidth. I am currently using MLPPP on FreeBSD 8 with multiple DSL connections to the internet and thus far it

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
WOW Excellent !! I'll give it a try at night, later i will reply my result. Thank you Leonardo Santagostini 2010/11/9 Nathan Vidican nat...@vidican.com Might I suggest you look into MultiLink PPP, or MLPPP - standard FreeBSD ppp does support it. It allows for round-robin, or

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
I will also probe PF !!! Kind regards Leonardo Santagostini 2010/11/9 Diego Arias dak@gmail.com On Tue, Nov 9, 2010 at 1:55 PM, Leonardo Santagostini lsantagost...@gmail.com wrote: Hello all, I have one freebsd 8.1 box with 3 3G mobile broadband connection. All connections

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
I was looking for mlppp and as far as i could see, mlppp works only on dsl connections. In my case im working with 3 3G usb dongles, so its no pppoe, just ppp Do you have some working config? Thanks in advance, Leonardo Santagostini 2010/11/9 Leonardo Santagostini lsantagost...@gmail.com

Re: Multiple tun loadbalancing question

2010-11-09 Thread Chuck Swiger
On Nov 9, 2010, at 12:33 PM, Leonardo Santagostini wrote: I was looking for mlppp and as far as i could see, mlppp works only on dsl connections. No, it applies to anything supporting PPP; DSL lines using PPPoE, T1/PRI lines using PPP encapsulation for the data side, and even modem dialups

RE: Multiple tun loadbalancing question

2010-11-09 Thread Gary Gatten
snip Also, may be obvious to point out, but all (3) connections must be from the same provider. In the lab you could MAYBE get a stable/usable connection from multiple providers (with just ppp or 'x' encap) by splitting the requests on the egress side - but it's highly unlikely in the real

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
Hello all, Im using 3 different providers all from Argentina, Clora, Movistar and Personal. Thank you Leonardo Santagostini 2010/11/9 Gary Gatten ggat...@waddell.com snip Also, may be obvious to point out, but all (3) connections must be from the same provider. In the lab you could MAYBE

Re: Multiple tun loadbalancing question

2010-11-09 Thread Chuck Swiger
On Nov 9, 2010, at 12:33 PM, Leonardo Santagostini wrote: Do you have some working config? To answer this part more specifically, from man ppp: Multi-link capabilities are enabled using the ``set mrru'' command (set maximum reconstructed receive unit). Once multi-link is enabled, ppp

RE: Multiple tun loadbalancing question

2010-11-09 Thread Gary Gatten
-questions@freebsd.org Subject: Re: Multiple tun loadbalancing question Hello all, Im using 3 different providers all from Argentina, Clora, Movistar and Personal. Thank you Leonardo Santagostini 2010/11/9 Gary Gatten ggat...@waddell.commailto:ggat...@waddell.com snip Also, may be obvious

Re: Multiple tun loadbalancing question

2010-11-09 Thread bluethundr
Swiger; Nathan Vidican; freebsd-questions@freebsd.org Subject: Re: Multiple tun loadbalancing question Hello all, Im using 3 different providers all from Argentina, Clora, Movistar and Personal. Thank you Leonardo Santagostini 2010/11/9 Gary Gatten ggat...@waddell.commailto:ggat

RE: Multiple tun loadbalancing question

2010-11-09 Thread Gary Gatten
: Leonardo Santagostini; Nathan Vidican; freebsd-questions@freebsd.org Subject: Re: Multiple tun loadbalancing question This might be worth looking into as well! It's an open source load balancer that was originally developed by yahoo and released into the open source community. It is now a part

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
Subject: Re: Multiple tun loadbalancing question This might be worth looking into as well! It's an open source load balancer that was originally developed by yahoo and released into the open source community. It is now a part of the Apache project: http://trafficserver.apache.org/ On Tue

Re: Multiple tun loadbalancing question

2010-11-09 Thread Leonardo Santagostini
they will... -Original Message- From: bluethundr [mailto:bluethu...@gmail.com] Sent: Tuesday, November 09, 2010 5:42 PM To: Gary Gatten Cc: Leonardo Santagostini; Nathan Vidican; freebsd-questions@freebsd.org Subject: Re: Multiple tun loadbalancing question This might be worth looking into as well! It's

Re: portmaster question

2010-11-08 Thread RW
On Sun, 7 Nov 2010 22:11:50 -0700 (MST) Warren Block wbl...@wonkity.com wrote: On Sun, 7 Nov 2010, Jerry wrote: When using 'portupgrade', I commonly use the '-r' flag in conjunction with the previously discussed '-a' flag. While not as through as the -u -p flags with 'portmanger', it

Re: portmaster question

2010-11-08 Thread Jerry
On Sun, 7 Nov 2010 22:11:50 -0700 (MST) Warren Block wbl...@wonkity.com articulated: On Sun, 7 Nov 2010, Jerry wrote: When using 'portupgrade', I commonly use the '-r' flag in conjunction with the previously discussed '-a' flag. While not as through as the -u -p flags with 'portmanger',

Re: portmaster question

2010-11-08 Thread RW
isn't implied by -a, the rR options are ignored in the former. I think it's fairly clear that recursing through installed packages with consistent dependecies isn't going to find a package that isn't in the set of all installed packages. The remaining question is whether -Ra also recurses though new

Re: portmaster question

2010-11-08 Thread Warren Block
On Mon, 8 Nov 2010, RW wrote: -aRr isn't implied by -a, the rR options are ignored in the former. I think it's fairly clear that recursing through installed packages with consistent dependecies isn't going to find a package that isn't in the set of all installed packages. That sentence makes

Re: portmaster question

2010-11-08 Thread RW
On Mon, 8 Nov 2010 12:50:21 -0700 (MST) Warren Block wbl...@wonkity.com wrote: On Mon, 8 Nov 2010, RW wrote: -aRr isn't implied by -a, the rR options are ignored in the former. I think it's fairly clear that recursing through installed packages with consistent dependecies isn't going

portmaster question

2010-11-07 Thread Fred
Hello, According to man portmaster the -a option will Update all ports that need updating. Does this apply to only installed ports or to everything in /usr/ports? Best regards, Fred ___ freebsd-questions@freebsd.org mailing list

Re: portmaster question

2010-11-07 Thread Polytropon
On Sun, 07 Nov 2010 12:21:59 -0700, Fred f...@blakemfg.com wrote: Hello, According to man portmaster the -a option will Update all ports that need updating. Does this apply to only installed ports or to everything in /usr/ports? It applies to installed ports. A commonly used command to

Re: portmaster question

2010-11-07 Thread Jerry
or to everything in /usr/ports? It applies to installed ports. A commonly used command to upgrade them is portupgrad -af. ^^^ Using the 'f' flag can be expensive if there are a large number of ports installed and the machine in question is not relative fast. When using

Re: portmaster question

2010-11-07 Thread Warren Block
On Sun, 7 Nov 2010, Polytropon wrote: On Sun, 07 Nov 2010 12:21:59 -0700, Fred f...@blakemfg.com wrote: Hello, According to man portmaster the -a option will Update all ports that need updating. Does this apply to only installed ports or to everything in /usr/ports? It applies to installed

Re: portmaster question

2010-11-07 Thread Warren Block
On Sun, 7 Nov 2010, Jerry wrote: When using 'portupgrade', I commonly use the '-r' flag in conjunction with the previously discussed '-a' flag. While not as through as the -u -p flags with 'portmanger', it does accomplish its goal. Isn't portupgrade -a equivalent to -arR? I hope so, or I

OT: apache+ssl question _off-list_

2010-11-03 Thread Robert Huff
Would any folks with experience in Apache/SSL be willing to help with a (probably novice) problem off-list? (My search-fu is inferior: I've found the problem mentioned, but no solutions.) Robert Huff ___

Sendmail Question: Smart Host Round-Robin In Mailertable?

2010-10-27 Thread Tim Daneliuk
A bit OT, but I'm hoping one of you resident geniuses can point me to an answer I have a situation where I need to set up round-robin across several smart hosts in the sendmail mailertable for all traffic. (For a variety of reasons, the client does not want this done in either the .mc file or

Re: Sendmail Question: Smart Host Round-Robin In Mailertable?

2010-10-27 Thread Giorgos Keramidas
On Wed, 27 Oct 2010 09:51:59 -0500, Tim Daneliuk tun...@tundraware.com wrote: A bit OT, but I'm hoping one of you resident geniuses can point me to an answer I have a situation where I need to set up round-robin across several smart hosts in the sendmail mailertable for all traffic. (For

Re: Sendmail Question: Smart Host Round-Robin In Mailertable?

2010-10-27 Thread Tim Daneliuk
On 10/27/2010 3:26 PM, Giorgos Keramidas wrote: On Wed, 27 Oct 2010 09:51:59 -0500, Tim Daneliuk tun...@tundraware.com wrote: A bit OT, but I'm hoping one of you resident geniuses can point me to an answer I have a situation where I need to set up round-robin across several smart hosts

struct fileops question

2010-10-20 Thread Fernando Apesteguía
Hi, I'm trying to understand some pieces of the FreeBSD kernel. Having a look at struct fileops in file.h I was wondering why other file related functions don't have an entry in the vector. I was thinking in mmap, fsync or sendfile. Can anyone tell me the reason? Thanks in advance.

Re: Jail question

2010-10-18 Thread Ivan Voras
mode (one public, one private), if that makes any difference This is the more complex question; I think that everything which needs direct access to the NIC (i.e. BPF, DHCP, IPFW, etc.) will need to be run on the host system. TCP services will work inside jails without problems, but with jails

Re: Jail question

2010-10-18 Thread bdsfbsd
On Fri, 15 Oct 2010 09:32:44 -0400, Jerry freebsd.u...@seibercom.net wrote: On Fri, 15 Oct 2010 08:35:39 -0400 Fbsd8 fb...@a1poweruser.com articulated: Check out qjail. It has been submitted for addition to the ports collection, but the ports dept is very slow in performing their task of

Re: Jail question

2010-10-18 Thread Jerry
On Fri, 15 Oct 2010 13:38:17 -0400 bdsf...@att.net bdsf...@att.net articulated: On Fri, 15 Oct 2010 09:32:44 -0400, Jerry freebsd.u...@seibercom.net wrote: On Fri, 15 Oct 2010 08:35:39 -0400 Fbsd8 fb...@a1poweruser.com articulated: Check out qjail. It has been submitted for addition

Re: Jail question

2010-10-18 Thread Matthew Law
a thousand very light-weight jails which are started and managed using only standard FreeBSD tools. In any case, read rc.conf(5) man page for the jail_* settings. snip This is the more complex question; I think that everything which needs direct access to the NIC (i.e. BPF, DHCP, IPFW, etc

Re: Jail question

2010-10-18 Thread Ian Smith
In freebsd-questions Digest, Vol 333, Issue 2, Message: 1 On Fri, 15 Oct 2010 13:38:17 -0400 bdsf...@att.net wrote: On Fri, 15 Oct 2010 09:32:44 -0400, Jerry freebsd.u...@seibercom.net wrote: On Fri, 15 Oct 2010 08:35:39 -0400 Fbsd8 fb...@a1poweruser.com articulated: Check out

Re: Jail question

2010-10-15 Thread Fbsd8
for openvpn and the services jail or is it possible to use a single IP or some NAT/PAT scheme? -this box currently has 4 x NICs split into 2x lagg interfaces in failover mode (one public, one private), if that makes any difference Sorry for the rambling question and I hope this makes sense! Matt

Re: Jail question

2010-10-15 Thread Jerry
On Fri, 15 Oct 2010 08:35:39 -0400 Fbsd8 fb...@a1poweruser.com articulated: Check out qjail. It has been submitted for addition to the ports collection, but the ports dept is very slow in performing their task of adding new ports to the system. So in the mean time you can get qjail from

Jail question

2010-10-14 Thread Matthew Law
and the services jail or is it possible to use a single IP or some NAT/PAT scheme? -this box currently has 4 x NICs split into 2x lagg interfaces in failover mode (one public, one private), if that makes any difference Sorry for the rambling question and I hope this makes sense! Matt

Re: Jail question

2010-10-14 Thread doug
separate public IPs for openvpn and the services jail or is it possible to use a single IP or some NAT/PAT scheme? -this box currently has 4 x NICs split into 2x lagg interfaces in failover mode (one public, one private), if that makes any difference Sorry for the rambling question and I hope

<    3   4   5   6   7   8   9   10   11   12   >