Slashdot Mirror


User: YetAnotherDave

YetAnotherDave's activity in the archive.

Stories
0
Comments
323
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 323

  1. Re:SELinux on Linux 2.6.0 Kernel Released · · Score: 1

    I thought that LSM was getting merged into 2.6

    ??

  2. Re:Regarding the cluttered Kmenu on KDE 3.2-beta2 - Towards a Better KDE? · · Score: 1

    that sounds like the personalized menus in win2K, which are the first thing I turn off...

  3. Re:How bothersome is spam for most slashdotters? on The Life of a Spammer · · Score: 1

    hmm, posting before brain is running, missing obvious jokes :)

  4. Re:How bothersome is spam for most slashdotters? on The Life of a Spammer · · Score: 1

    >>Wait, there's a system? Tell me more...

    http://www.spamassassin.org/doc.html :)

  5. Re:domain owners on The Life of a Spammer · · Score: 1

    that's why I set up a redirection on my home domain for my work address - public stuff goes to work@my.domain.ca, and goes thru spamass-milter.

    That way I just need a local filter in my work client that looks for spamassassin markup

  6. Re:How bothersome is spam for most slashdotters? on The Life of a Spammer · · Score: 5, Informative

    tip - if you have a scoring system like spamassassin, set two thresholds. One which sends mail to the spam box, and a second, higher one which sends to /dev/null

    On my system, (spapassassin + spamass-milter) I file at 6, and reject mail at 14

    I waited a while to ensure that the bayes was tuned properly before adding the reject rule, but if I didn't have it my mail'd be totally unusable...

    If you don't have a scoring system, get one :)

  7. Re:How bothersome is spam for most slashdotters? on The Life of a Spammer · · Score: 2, Informative

    I occasionally get some at work (1-5 a week)

    At home (with spamassassin, instead of the crappy, big$$ system we have at work) I get 1-5 a month that slip thru the net.

    If there are any spamassassin developers reading this, thanks much!

  8. Re:One practical problem ... on Will FCC Regulate Internet Phone Calls? · · Score: 3, Interesting

    minor detail: voice data is passed via RTP, which uses UDP, not TCP. Retransmission of voice data is generally not worth the effort, so the lighter-weight UDP protocol is more efficient...

  9. Re:Home vs. Work on Apple Responds to Exploit · · Score: 1

    >>and often installed by relatively uneducated people, such as in a college or high school.

    y'know, there's some irony there... :)

  10. Re:Home vs. Work on Apple Responds to Exploit · · Score: 1

    >> The techs have been investigating this for a few weeks and I'm not sure if they have found it yet.

    to get the drop (assuming areasonably intelligent switch):

    (on dhcp client)
    ping [IP of dhcp server] (to ensure arp entry is active)
    arp -a [IP of dhcp server] (to get mac address)

    (on switch - this is cisco catalyst syntax, but any managed switch should have this feature)
    show cam [mac addr of dhcp server] (to get port on switch)

    a few weeks? should be a few minutes with a 1/2 decent network config...

  11. Re:Change your TCP/IP fingerprint on Gartner Recommends Holding Onto The SCO Money · · Score: 1

    what fingerprinting tools do you use that can give meaningful info with no closed ports?

    last I checked, nmap gets puzzled if there are not both open and closed ports, and we all know that exposed internet ports should be either filtered or open (and open on purpose :)

  12. Re:7200 Series Only! on Saruman Completely Cut from 'Return of the King' · · Score: 1

    hmmm, where the fsck did that subject come from???

  13. Re:7200 Series Only! on Saruman Completely Cut from 'Return of the King' · · Score: 4, Funny

    >>It's not like we've forgotten that you once burned Washington :)

    really? I didn't think they taught that in american schools...

  14. Re:Has always worked for me ... on Experiences w/ Drive Imaging Software? · · Score: 2, Informative

    Why is the parent modded as 'funny'?

    this is the most reliable system I've seen (I admin ~ 75 win32 desktops). Ghost occasionally fails in wierd ways, which sometimes don't get noticed right away (this is really bad).

    You can do it to files as well, which is a bit more useful
    dd if=/dev/hda1 of=/nfsmount/on/big/drive/billsBox.image && gzip -9 /nfsmount/on/big/drive/billsBox.image

    for speed reasons you'll probably want to compress on the nfs server, but you get the idea...

    caveat: for new installs, remember to make the image before joining the box to your domain, to avoid name-conflict issues

  15. Re:7200 Series Only! on 'Star Wars: Clone Wars' Premieres Tonight · · Score: 1

    Well, in climber slang, 'epic' generally means something long, arduous, and scary.
    I think WW II definitely qualifies as that.

    Grand???

  16. Re:Hmm on Novell Announces Agreement to Acquire SUSE · · Score: 1

    I was actually looking at this as a good thing, since hardware vendors might feel pressured to make more generic packages now...

    For example, I have a bunch of dell servers, with dell raid controllers. Their raid monitors only install via RPM, and in ways which rpm2tgz seems unable to handle. If they just released their tools in tarballs where I could 'configure && make && sudo make install' it'd make my life a bunch easier...

    And no, I will not switch from Slackware to an RPM-based distro. Ever.

  17. Re: GWB considers quitting presidency and working on Google Considering Merger With Microsoft · · Score: 0

    D'you want WMDs with that...

  18. s/BETA // on Top 10 Ways To Lose Your Data · · Score: 1

    I mean really... :)

    and while we're at it
    s/A LIVE/ANY/

  19. Re:Domain-wide service management on Yet Another Critical Windows Flaw · · Score: 1

    yes, poor style - replying to my own post.

    the latest psservice can change the startup config.
    if step 3 above is changed to

    FOR /F "usebackq delims==" %i IN (`cat messengerActive.txt`) do psservice \\%i setconfig messenger disabled

    all is well and good :)

  20. Domain-wide service management on Yet Another Critical Windows Flaw · · Score: 1

    I haven't seen an easy way to disable a service for a few hundred/thousand systems at once, so I cobbled together a quick hack with psservice to turn them off while I looked, since my corporate network has a TON of boxes I don't control which will likely remain unpatched for ages...

    My hack follows, but if there's anyone here who knows the proper windows way to disable services on lotsa machines remotely (my hack just stops them) please respond...

    my hack - 3 steps:

    1) psservice find messenger| > messengerActive.txt

    2) munge file so it's just a list of machine names - a programmable editor like gvim makes this trivial

    3) FOR /F "usebackq delims==" %i IN (`cat messengerActive.txt`) do psservice \\%i stop messenger

    http://www.sysinternals.com/ntw2k/freeware/psser vi ce.shtml

  21. Re:this benchmark was performed using a 200Mhz CPU on Linux File System Shootout · · Score: 1

    Benchmarks aside, I've been running reiserfs on all my boxes since kernel 2.4.5, and I've been completely satisfied with the performance both speed-wise and in terms of recovery after powerfailures.

    Thanks Hans

  22. Re:Not really on Have You Personally Used an Honest Head Hunter? · · Score: 1

    Hmmm, I was with you up until the 'New York' part.
    Sounds like great fun.

    If you're interested in international telecommuters, please let me know...

    as to 'What's the best way to do that on /. without getting spammed?' if it was me I'd create a new email alias, so I could filter it easily. jobs4slashdotters@myCoolStartup.com?

  23. Re:Not really on Have You Personally Used an Honest Head Hunter? · · Score: 1

    >> I've been trying to hire a couple of Linux-savvy
    >> folks for the past month or so,

    and has this posting brought up any leads?

    can you give more details?

  24. Re:Data is Waaaaaay Off on Windows 2003 takes 5% away from Linux · · Score: 1

    something tells me they haven't...
    --
    The site sdflkshfkljsahfkashfklsahdlfk.com is running Apache on unknown.

    Apache is also being used by INetU
    --

  25. Re:real money on The Borg MegaCube · · Score: 1

    whose dollars?

    US, aussie, or canuck?