| |
| |
| |
|
Page: 1 2 3 4 5 6 7
Comments:
<0> 15:57 < Hawson> so here's my question: *why* is that 3 times faster? <0> 15:57 < daxxar> For evaluating the $args->{} part on each hit instead of once? <0> 15:58 <@rmah> Hawson: because the benchmark said so <0> 15:58 < Hawson> That's not an answer, that's a description. ;-/ <0> 15:58 <@rmah> Hawson: wrong. That IS the answer. There is no other answer. <1> Hawson; i have stripe named d24 with data on it. If I create another stripe named d14 to be the mirror of it and I call the new joint name as d4. Now will d4 discriminate d14 vs. d24 in the future or they will have same role ? <0> you're mirroring 2 stripes? <1> yes, i'm planning to <1> raid 0+1 <1> using SVM <0> what do you mean by "discriminate?" <1> will SVM treat d24 as the master in some sort because d24 was the first in the mirror ? <0> Oh, you want to make sure the mirroring happens in the right "direction" <0> I'd have to check the docs on that one. <1> yeah
<1> probably doesn't mean much if metastat shows d24 on top of d14 <2> Hey People http://www.gamesites200.com/ragnarok/vote.php?id=1445 i know that it isnt allowed but could you please vote on that link its just a click then its done <0> "I know this isn't allowed, but please do it anyway" <3> :( <4> ragnarok.. is that the cheap MMO that is so bad that not even a brain damaged rankcor would touc? <5> does anyone know of good software that can record your screen as if you where watching what the user was going, almost li8ke a VNC , and it saves it in .SWF or .MPG/.AVI/.MOV format? <4> I prefer to pipe it out to SVHS output and record it that way. Everything else eats up CPU time. <6> as it was life itself it was eating <6> Momo and the thieves of time :) <0> Manos <0> and the hands of time, IIRC <6> heh <6> It was a long time ago, and I only knew the Norwegian title <0> Did it **** in Norwegian too? <6> these old guys who smoked peoples time ? <0> I've not actually seen it <6> heh <6> like the muslims who are demonstrating against the pictures of Muhammed published in the danish newspaper <6> or those demonstrating against Satanic verses <0> You know, people make fun of Jesus in the US all the time... <6> I bet 99.999% have not seen any of the pictures, or read the book <6> sure, but the world view is waaaay different <0> the population, which is mostly Christian, doesn't riot over it (on a large scale) <6> the population ihich is mostly apathetic and secular, don't riot over it <0> hey! I resemble that! <6> :) I am not being anonymous, so I can annoy you with my writing :D <7> http://www.defense-mechanism.org/sastuff/hahaha.jpg <0> eh... <8> yikes <8> wtf is that? <8> CYCLOPS <9> looks like a prince wannabe <4> if that is want you think a prince should look like then I'd be scares to know what you think a king or duke will look like. <10> I got the big bad bessy with the M-I-L-K. <10> http://www.milkhiphop.ca/ <4> they picked a horrible song <10> http://www.yashy.com/help/index.php/Antennas I just wrote the how to make a dipole article <10> not sure if it makes sense to read it, hopefully pictures will add some clarity <10> or some editors clean it up for me :) <10> thanks Editor2 :) <9> Yashee: http://www.google.ca/search?q=how+to+make+a+dipole <10> http://www.cpsr.org/issues/ethics/cei <9> Results 1 - 10 of about 2,010,000. But im sure yours is special :P <10> :P <0> Mouring: how the hell do you set the IP address in single user mode under OSX? <11> ifconfig? <0> yeah, I tried that <0> there's *NOTHING* that I can find online about this <11> :P <11> damn, that suks <0> Yes, OSX ****s *** <4> hawson, never had the need to try. <0> Mouring: okay, let's try a differnet question <0> what's the device name? <0> I've got gif0 and stf0 <0> this is a 12" laptop, btw <11> gif is a tunnel device
<11> i'd go with stfu0 <0> s/u// <4> en0 and en1 for my serve. <11> I amost baught a 12" powerbook <4> gif0 is a tunnel. <4> /serve/laptop/ <0> ifconfig -a doesn't list it <4> maybe the drivers aren't loaded. <12> Ok basic /bin/sh question. <0> how do you load them>? <12> Why don't backticks capture the output of the killall command properly? <12> I.e if I do FOO=$(date) <12> echo $FOO <12> I get the date. <12> If I do FOO=$(killall blah blah) <4> FOO=$( .. ) captures STDOUT not STDERR <12> instead I immediately see the output of killall, and the variable doesn't get it. <12> Ohhh. <12> Thanks. <11> Hawson: have you mounted all partitions? <0> yes <12> How do I capture STDERR? <11> can you use ifconfig <0> yes <4> 2>& ***uming sh <12> uh, can you show me the full example <11> Hawson: does any devices have a mac-adress other than gif0? <12> i.e. FOO=$(killall) 2>& ? <4> let me guess you are the type that do FOO=$(killall) arguments to killall <12> eh <12> no, I'm just writing a script to check if a browser is running, then start it if it isn't. <12> I'm using killall as a means to check wether it's running <4> if you wouldn't do that for killall arguments.. WHY would you do it for REDIRECTING? <13> what other options are there to minicom? <0> if this laptop were mine, I'd bash it against the table a few times <12> Macintosh:~ myself$ /bin/sh BSTATUS=$(killall -s aasd) 2>& <12> syntax error near unexpected token `newline' <12> Hmm, no work. <4> pro, you don't listen do you? <4> > if you wouldn't do that for killall arguments.. WHY would you do it for <4> +REDIRECTING? <12> Wouldn't do what? Sorry, I'm dense. <12> At least, this afternoon. <4> > let me guess you are the type that do FOO=$(killall) arguments to killall <12> Eh, no. <12> I was abbreviating. <12> FOO=$(killall -s MyProcess) <12> I want that output, whether error or non-error, to end up in my variable. <12> Your suggestion, adding 2>& , doesn't seem to work. <12> So I'm asking again... <4> And again you faill to think.. "2>&" is called a REDIRECT <12> Oh right. <4> Thus again.. WHY if you put the ARGUMENTS in $( .. ) W <4> IF you don't put the REDIRECT in there. <12> Oh I see. <12> Fo realz. <12> Hmm. <12> Macintosh:~ myself$ BSTATUS=$(killall -s myprocess 2>&) <12> command substitution: line 1: syntax error near unexpected token `newline' <12> command substitution: line 1: `killall -s myprocess 2>&' <12> I appreciate your suggestions, but I'm still not getting it. <12> oh hey. <12> here we go: <12> Macintosh:~ myself$ BSTATUS=$(killall -s myprocess 2>&1) <12> Macintosh:~ myself$ echo $BSTATUS <12> No matching processes belonging to you were found <12> Macintosh:~ myself$ <12> So uh, did you just mistype your original advise, or were you testing me? <4> it depends on the version of the shell. <12> Ahh. <4> some imply 2>&1 is 2>& <12> Ahhhhh. Das gut. <12> Thanks. <0> Mouring: no ideas on loading the en module?
Return to
#unixhelp or Go to some related
logs:
#politics #heroin #gentoo #sql #politics #nhl #computers #slackware #goal #cph
|
|