Re: Regex Wizards

2011-09-26 Thread joost
r a bug? > Thanks. Regular expressions are greedy by default. .* is matching "junkBCCC" in your second and third example. Try `sed -E -n 's,^(.*)(AAAB?CCC)?().*$,1 \1 2 \2 3 \3,p'` and you'll see what I mean. In perl I'

Re: Same MAC address in 2 different VLANs

2013-07-19 Thread joost
ke the vlan into account when learning on which port a mac address exists. These switches will see the mac address jumping between ports all the time. Joost. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-q

can't mount root during freebsd-update 7.0 -> 8.1 on amd64

2010-12-05 Thread joost
odd is that instead of finding ad4s1a it finds ad4a. Same for the other filesystems. It however can't find init on this device. Did I miss something important in src/UPDATING? Thanks Joost Bekkers ___ freebsd-questions@freebsd.org mailing list

Re: can't mount root during freebsd-update 7.0 -> 8.1 on amd64

2010-12-07 Thread joost
of 0x00. geom_part seems to do first match when probing. is there a way for me to find out which geom_part_* module is staking a claim on my mbr? I'm assuming I'm not the first person to try 8.x on amd64 with an mbr on a disk so there must be something 'special' with this

Re: FreeBSD and barracudas

2007-10-19 Thread Joost Bekkers
face of the Dell(s). The address to add to lo0 is the VIP, in this case 192.168.0.49 Hope this helps. Joost. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Static (incorrect) ARP entry

2003-11-05 Thread Joost Bekkers
dd -net 10.8.16.0/30 -interface de0 for some reason this doesn't work when you use /32 or -host. -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Back-up on remote machine

2004-08-05 Thread Joost Bekkers
, but I can't send a file without using some > command to ssh. If all you need is somthing at the other end capturing the data try ... | ssh remotehost "cat - > myfile" -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED]

Re: umass.o error

2004-01-22 Thread Joost Bekkers
;: [...] > *** Error code 1 Did you read the comment after 'device umass' in your kernel config? -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Apple?

2004-01-26 Thread joost knetsch
Hello, i wonder if its possible to install freebsd on a apple computer? I have a G4 500mhz macintosh. ?? i need it to config the machine as a 'node' for wireless internet distubution. thanks joost knetsch Mini and Apple is all what you need for a happy life. And offcourse my girl

Re: Syslog and Cisco

2003-11-01 Thread Joost Bekkers
o specify a 'service' of * on the syslogd commandline (with the -a option). By default syslogd only accepts packets coming from the sysog port on the remote host. Cisco uses a dynamicly allocated port for sending the logging. Hope this he

Re: IPX 802.2 nwfs

2004-04-08 Thread Joost Bekkers
> inet addr:192.168.0.217 Bcast:192.168.0.255 Mask:255.255.255.0 > IPX/Ethernet 802.2 addr:0002:00047571E9C4 > While your linux box is using number 2 Try 'ifconfig vr0f2 ipx 2' -- greetz Joost [EMAIL PROTECTED] ___

Re: IPX 802.2 nwfs

2004-04-08 Thread Joost Bekkers
On Thu, Apr 08, 2004 at 03:13:29PM +0200, Feczak Szabolcs wrote: > On Thu, Apr 08, 2004 at 03:08:04PM +0200, Joost Bekkers wrote: > > While your linux box is using number 2 > Linux box is a client as well, server is on > network 2DB6EBF8 as I see it out, but maybe > Im wrong &g

Re: Interpreting ping response? (the POD lives??)

2004-04-13 Thread Joost Bekkers
icmp-unreachable message is a response to. (ie your original ping request) -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: why test(1) works with -eq but not -nq ?

2004-04-21 Thread Joost Bekkers
On Wed, Apr 21, 2004 at 05:09:14PM +0300, Ion-Mihai Tetcu wrote: > # if [ "`cat ports_sup_log | wc -l`" -nq "3" ]; then echo 'da'; fi I think you mean -ne instead of -nq -- greetz Joost [EMAIL PROTECTED] ___ [E

Re: ifconfig in rc.conf network problems

2004-05-30 Thread Joost Bekkers
ig dc0 media 100baseTX > You might want to put stuff like that in /etc/start_if.dc0 It gets executed just before the ip address is set or dhclient is started. -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.fre

measuring avg cpu speed while powerd(8) is running

2005-08-06 Thread Joost Bekkers
Hi Is there a way to calculate (over eg. a 5 minute interval) the average amount the cpu was throttled? In this case by powerd(8). I was thinking there might be a counter/timer which is linked to the cpu clock, but sofar I haven't been able to find one. thanks -- greetz Joost [EMAIL PROT

Re: measuring avg cpu speed while powerd(8) is running

2005-08-07 Thread Joost Bekkers
On Sat, Aug 06, 2005 at 07:33:02PM +0200, Philip S. Schulz wrote: > Joost Bekkers wrote: > > > >Is there a way to calculate (over eg. a 5 minute interval) the average > >amount the cpu was throttled? In this case by powerd(8). > > No, powerd currently reads the CPU usa

Re: Override prompt when deleting a file

2005-11-18 Thread Joost Bekkers
I can't shake the feeling it might be right. Could it be possible you have 2 admin's in your passwd? vipw doesn't complain when you try something like that, so Would you mind doing a 'ls -ln' (uid/gid numeric) and the an 'echo $UID' as admin. -- greet

Re: can't mount root during freebsd-update 7.0 -> 8.1 on amd64

2010-12-11 Thread Joost Bekkers
r converted > to MBR. But there is still an obsolete BSD label in block 1 of the disk. > > # dd if=/dev/zero of=/dev/ad4 seek=1 count=1 Yes, that fixed it. Thanks -- greetz Joost jo...@jodocus.org ___ 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"

moving 'vinum start' forward

2002-12-15 Thread Joost Bekkers
Hello Does anybody know a way to get vinum to load its configuration before root is mounted? I've been hacking away at vinum_attach() in sys/dev/vinum/vinum.c but I can't seen to get it to work properly (yet) -- greetz Joost [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL

Re: moving 'vinum start' forward

2002-12-16 Thread Joost Bekkers
On Mon, Dec 16, 2002 at 08:39:28AM +1030, Greg 'groggy' Lehey wrote: > On Sunday, 15 December 2002 at 20:48:03 +0100, Joost Bekkers wrote: > > > I've been hacking away at vinum_attach() in sys/dev/vinum/vinum.c > > but I can't seen to get it to work properly

Re: moving 'vinum start' forward

2002-12-18 Thread Joost Bekkers
On Tue, Dec 17, 2002 at 11:13:52AM +1030, Greg 'groggy' Lehey wrote: > On Monday, 16 December 2002 at 10:30:42 +0100, Joost Bekkers wrote: > > On Mon, Dec 16, 2002 at 08:39:28AM +1030, Greg 'groggy' Lehey wrote: > >> On Sunday, 15 December 2002

Re: ipf + ipfw + divert = no go

2005-05-24 Thread Joost Bekkers
_FW_ADD): Operation not permitted > bash-2.05b# ipfw add 50 allow ip from me to any > ipfw: getsockopt(IP_FW_ADD): Operation not permitted > bash-2.05b# At what securelevel are you running? You can use 'sysctl kern.securelevel' to check. -- greetz Joost [EMAIL PROTECTED] _

ipsec/racoon broken after upgrade to 4.8

2003-04-06 Thread Joost Bekkers
y kernel config, so that can't be the problem. options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) options IPSEC_DEBUG #debug for IP security Any suggestions? -- greetz Jo

Re: ipsec/racoon broken after upgrade to 4.8

2003-04-06 Thread Joost Bekkers
On Sun, Apr 06, 2003 at 01:19:29AM -0800, Kris Kennaway wrote: > On Sun, Apr 06, 2003 at 11:09:44AM +0200, Joost Bekkers wrote: > > Hello, > > > > After a binary upgrade to 4.8R and making a custom kernel, > > racoon exists when trying to create a tunnel: > >

Re: ipsec/racoon broken after upgrade to 4.8 *fixed*

2003-04-06 Thread Joost Bekkers
On Sun, Apr 06, 2003 at 11:45:43AM +0200, Joost Bekkers wrote: > On Sun, Apr 06, 2003 at 01:19:29AM -0800, Kris Kennaway wrote: > > On Sun, Apr 06, 2003 at 11:09:44AM +0200, Joost Bekkers wrote: > > > Hello, > > > > > > After a binary upgrade to 4.8R and

miniinst and livefs cd merged into a single cd

2003-06-15 Thread Joost Bekkers
upload it someplace where everybody can get at it. -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: options FAST_IPSEC

2004-11-02 Thread Joost Bekkers
gt; Did you inlcude 'device crypto'? see /sys/conf/NOTES for details. -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Locked myself out.. AGAIN!!

2008-12-07 Thread Joost Bekkers
my ISP is closed on Sundays. Is there any > way I can fix this on my own? > Try `su -m` the man page says it will use your current shell instead of the one in passwd. good luck. Joost. ___ freebsd-questions@freebsd.org mailing list http://lists.fr

Re: Can stock syslog do hostA -> fileA?

2009-02-26 Thread Joost Bekkers
for syslogd include a -s which prevents syslogd from logging messages from remote machines. Joost. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to &q

debugging a signal 10 while in libc_r

2004-03-15 Thread Joost Bekkers
me some tips/urls? The app is running on 4.3-R (ancient I know, can't seem to make time for an upgrade) thanks -- greetz Joost [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questio

Re: [perl] sysopen(CD, "/dev/cd0", O_RDONLY | O_NONBLOCK) fails

2009-03-27 Thread Joost Bekkers
meaningful only immediately after a failure. The value of $! is NOT an indicator of success or failure. It only tells you why something failed. If something succeeded $! is usualy left untouched. Joost. ___ 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"

Getting CVSup to work

2005-04-11 Thread Joost van Dijk
to a specific directory to run cvsup? Joost ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Getting CVSup to work

2005-04-11 Thread Joost van Dijk
gain > > personally i prefer to install bash and make that the default shell, I'm using tcsh > GL! Hi Michael and Albi Wow, that was fast. Thanks a lot. Problem is solved! Albi ... you have an .nl domain. So you too are working until

problem with x11

2005-04-12 Thread Joost van Dijk
data base not found which is about the file r200-dri.so What should I do next? Where can I find this file? Joost (graag wil het wel weten) ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

messages from dhclient

2005-04-17 Thread Joost van Dijk
Hello, I have installed dhcp to get my FreeBSD system on line, a machine which I am trying to set up as a web server. I used sysinstall and it seems to work correctly (this e-mail is coming from my Linux workstation). However, when working on the FreeBSD machine I keep getting the following me

Re: messages from dhclient

2005-04-17 Thread Joost van Dijk
ee if it is possible to turn it off. Now, it will probably take me 6 hours to find out how to do that. Whew! Joost ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: messages from dhclient

2005-04-17 Thread Joost van Dijk
essage when something is going wrong. If, as you say, it is not actually written into the file, then it is less damaging than I thought. Thanks. Joost. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/f

Re: messages from dhclient

2005-04-17 Thread Joost van Dijk
s probably a good idea to go on without a Firewall turned on. > If you currently have a "client" type firewall, setting the "net" and > "mask" variables in /etc/rc.firewall might do the trick, depending on > how your network is set up. Thanks again. Joost __

Re: messages from dhclient

2005-04-17 Thread Joost van Dijk
ut that doesn't matter, because there is really nothing on the machine. I am only using it to learn on. What does IMHO mean? What does h4x0r3d mean? Joost ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listin

Re: messages from dhclient

2005-04-17 Thread Joost van Dijk
On Sunday 17 April 2005 17:14, [EMAIL PROTECTED] wrote: > Hate to be the one to break it to you but YOUR privacy is probably the > least important concern (though I mean no offence by this statement). If > you have this kind of connectivity, I'd be more concerned with what a > potential attacker co

Re: newbie question

2005-04-17 Thread Joost van Dijk
On Sunday 17 April 2005 17:52, [EMAIL PROTECTED] wrote: > Can anyone give me a very rough estimate on how much time is required on an > ongoing basis, after a server is set up with FreeBSD and Apache, to maintain > everything. By everything I am referring to everything required to keep > the s