Slashdot Mirror


User: rcw-work

rcw-work's activity in the archive.

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

Comments · 358

  1. Re:Another option for some... on WinVNC vs. KVM Extender? · · Score: 2
  2. Re:why? on HP Officially Announces 40g MP3 Stereo Component · · Score: 2, Informative

    The ~50Hz hum you're hearing is actually 60Hz AC. This is usually caused by a ground loop. It can be eliminated using a ground loop isolator or (more cheaply) hooking the stereo and computer to the same power strip. Removing the ground connection from the computer via a 2-prong to 3-prong adapter can also eliminate it (although you're not supposed to do that. :)

  3. Re:Firewalls on Road Runner Doesn't Do XP · · Score: 2
    Any tech and any ISP will do anything they can to eliminate anything between your computer and the cable modem/cpe/whatever to eliminate variables.

    If you pay enough money, you can get an ISP that calls you in less than 10 minutes if your circuit goes down. They don't tell you to reboot your computer, they don't tell you to doublecheck your workgroup name, they look at the alarm light on their router's interface and call the telco for you.

    It doesn't matter how cheap the equipment is, or whether it's "for consumers", BLINDLY REBOOTING EQUIPMENT IS NOT THE ANSWER. If the crappy cable modem on your end is overheating and needs rebooting every 2 weeks, they should replace the modem. If DOCSIS authentication isn't happening because @home needs to unfuck their gateway, rebooting won't help anyway, it'll just make your cable modem try to sync endlessly until the gateway becomes unfucked. If your Windows PC suddenly forgot how to do TCP/IP, there's a bug that needs to be addressed and probably a patch to address it. Etc, etc etc.

    &lt/rant&gt

  4. Re:Two Words on Dolby Tells NetBSD Project: Don't Decode AC3 · · Score: 2
    The ability to encode 6 channels of discrete audio in one signal doesn't qualify as "obvious".

    A quick google search reveals amplitude modulation was first demonstrated in 1906.

    Of course, AC3 isn't just about finding a way to encode 6 channels of discrete audio in one signal.

  5. You don't have to make them match on Obtaining Reverse DNS Records from Your Uplink? · · Score: 4
    All dns verification systems such as tcp wrappers and ssh will work as long as the reverse dns hostname for your ip address resolves to the same ip.

    For example, take a random cable modem user (if you have the itch to portscan someone, PLEASE pick your own completely random ips), 24.5.2.24. This address reverses to cx54499-b.dt1.sdca.home.com, which in turn resolves to 24.5.2.24.

    That machine may host example.com and example.net... You'll still be able to ssh to example.com and example.net, send mail to them, or do whatever, even though 24.5.2.24 does not reverse to example.com or example.net.

  6. Re:This makes a good point... on Monitoring What Files Your Applications Leave Behind? · · Score: 2
    make -n install used to be really useful, but now most apps that use autoconf have an install target that iterates over several directories and output several hundred lines of junk. You really have to know what you're doing to find out what it's doing. I'd hate to have to use that feature to determine if something malicious was in there.

    For those kind of apps, it's faster to build a chroot (Debian chroots are really simple to make - unpack the base2_2.tgz to a dir somewhere, cd to it, and do chroot . bin/bash), make a copy of it, then do rsync --dry-run --verbose or diff -u --recursive on the two dirs to find out what changed.

  7. Re:Abcde on Automated MP3 Ripping? · · Score: 1

    It needs to be run after the cd is in. It has no "waiting state". I'd recommend running it from something like autorun.

  8. Re:How about playing while ripping? on Automated MP3 Ripping? · · Score: 2

    What I usually do with abcde is generate a playlist (which is created before any of the tracks are read), wait for one or two tracks to encode, and then play the list in any playlist-capable player. By the time the player gets to the next track, that track would have finished encoding.

  9. Re:Abcde on Automated MP3 Ripping? · · Score: 1

    Email the compile errors to me (not just the "make : *** [target] Error 1" stuff please) and I'll see if I can help.

  10. Abcde on Automated MP3 Ripping? · · Score: 3
    abcde 1.9.x can do non-interactivity and you can even add all the track titles when you're done if there's no CDDB entry. Plus there's Ogg support, you can format the filenames any way you please, and you can use other machines for remote encoding.

    Disclaimer: I wrote abcde.

  11. Re:Bernoulli Effect on What Bernoulli Missed About Flight · · Score: 1

    Sustained level inverted flight in calm air generates exactly -1G.

  12. Re:Bernoulli Effect on What Bernoulli Missed About Flight · · Score: 2
    Nobody flies 747's upside down because the plane is not designed to do stunts - I don't know what its negative G rating is but I do know it's only rated for 2.5G's positive G's (most aerobatic planes are rated for +/-12 - some properly trained humans can tolerate up to +9 for short periods, and some of the big roller coasters pull +2 G's now). If it's only rated for something like -1.2G's, flight upside down only leaves you with .2G's of wiggle room before the wings tear off.

    Those big jets do fly upside down though.

  13. How to get mail to @microsoft.com with postfix on Microsoft's DNS Down · · Score: 2
    My day job's responsibilities include making sure mail from us actually gets to Microsoft, so here's what we did on our postfix mail gateway - I figure others out there would like to know how to do the same thing.

    Create an /etc/postfix/transport file with the contents:

    microsoft.com smtp:[131.107.3.124]
    .microsoft.com smtp:[131.107.3.124]

    (.124 is mail2.microsoft.com; .125 is mail1, which is apparently down right now.)

    Put this in your /etc/postfix/main.cf:

    transport_maps = hash:/etc/postfix/transport

    Reload or restart postfix and have it flush all the mail. It might take a while, especially if you have a lot of mail queued up. To speed things up, try these two settings:

    default_destination_concurrency_limit = 200
    qmgr_site_hog_factor = 100

  14. Re:Not Comfortable... on Tux2: The Filesystem That Would Be King · · Score: 2
    You will still be able to do that, but as for the people running servers with disk arrays that are a significant fraction of a terabyte, well, they need the choice of being able to bring the server up now rather than waiting several hours (or days) for an fsck to finish.

    For an array where you've promised 99.99% uptime (an hour a year), you simply can't check it like that. You wait until you can upgrade the array to new hardware that you can start with a fresh filesystem on.

    For the less extreme circumstances, it's still nice to be able to plan downtime for this. That way you can schedule it to automatically happen Thanksgiving day instead of when someone trips over the power cord.

    And yes, you are correct that having filesystem integrity does not necessarily mean you also have file integrity. You can't do much about that unless you go the VMS route of keeping versions of files around.

  15. Re:I've never needed drugs, 'cept caffeine, Guinne on Techies Rampant on Drugs · · Score: 1
    I mean, really, who else does stuff like this?

    Lots of people.

    unsigned char *a="\x98mWPS\x1\x87hSJH\0159F",b;main(){for(;b+=*a ++-80;putchar(b));}

  16. Re:De-crypt/delete option on Linux Encryption HOWTO · · Score: 2
    Make a plausible (legal) replacement for what was encrypted, use chaffing to place both items in the same file along with a bunch of other random garbage, and when they ask for the passphrase, give them the one that decodes the file to the birdwatching tapes you've been recording.

    If you do it properly they won't be able to prove there's any other data there. There's not much to tell them it's 32x chaff instead of 64x chaff.

  17. abcde can help with this on Using Automated CD Duplicators as Mass MP3 Converters? · · Score: 2
    [disclaimer - being the author of software can make you biased towards it]

    If your CD duplicator is a bunch of drives hooked up via a SCSI bus, you'll find abcde extremely handy for this.

    http://frantica.lly.org/~rcw/abcde/page/

    Command-line based, can be non-interactive, has support for all the major encoders + distmp3 remote encoding support, does cddb, playlists, id3 tagging, customizable output filenames, etc.

    Some people use it with autocd for that truly hands-off feel.

  18. Re:I don't get it: dselect selects more than I sel on Debian 2.2 Reviewed, Interview on Embedded Debian · · Score: 2
    I'm sure Debian isn't as stupid.

    In this instance, that's wishful thinking, see: #15865, #24950, #65690.

  19. Re:I don't get it: dselect selects more than I sel on Debian 2.2 Reviewed, Interview on Embedded Debian · · Score: 2
    Where are these selections coming from?

    Any package marked with a Priority: of "standard" or higher is automatically selected for install by dselect if it's a new package (everything is a new package at install time). AFAIK this isn't customizable.

    At one point in time I tried to get tex and emacs pulled from standard, but I never got the concensus necessary from the policy cabal to carry out my evil schemes. Oh well.

  20. Re:Why do peopel feel the need to store Credit Car on Western Union Cracked, Credit Cards Stolen · · Score: 1
    Wonderful. I'm not familiar enough with the intricacies of the MD5 algorithm to know exactly how many bits of input randomness are needed to guarantee the full 128 bits of output randomness, but the several hundred bits you're using above should be plenty.

    How do you store the random 56 character string so you can verify it later though? If you need to put all these pieces back together again at a later date, and the only thing the customer is entering is the credit card number, you have to store the other pieces in cleartext or a cleartext-equivalent. If the hypothetical cracker can get their paws on that table and the customer id table, you're back to a few dozen bits to bruteforce.

  21. Re:Unstable Isotopes on The Puzzle of Martian Meteorites · · Score: 2
    What I'm saying is there's a lot of assumptions being made.

    For example, with potassium-argon dating, how do we:

    • know that potassium-40's half-life is 1.3 billion years? Even over 10 years, that's a part-per-billion experiment.
    • know that there wasn't argon trapped in the rock along with the potassium in the first place?
    Some good scientists admit these assumptions up front, for example http://www.icr.org/research/sa/sa-r03.htm clearly says:
    The model age method assumes no radiogenic 40Ar was present when diabase and lavas cooled to form rocks.
  22. Re:Unstable Isotopes on The Puzzle of Martian Meteorites · · Score: 2
    How do you know how much of the original isotope you started out with?

    Also, how are half-lifes measured to millions of years? We've only known about this stuff for about 100 years...

  23. If this is needed, it's worrisome. on Pentium 4 Requires New Case And Power Supply · · Score: 3
    Newer Alpha CPU's take almost 100 watts each, and require no modifications to ATX.

    Intel is releasing a chip that will require modifications to ATX.

    Therefore, it would be worthwhile to assume this chip will consume over 100 watts.

  24. Re:MPAA is doing this NOW on More Threats From The MPAA · · Score: 2
    This reminds me of Web That Smut!

    The idea of the game is that you start at a web page of a competitor's choice and compete to find smut the fewest number of links away.

    Bookmark pages, search engines, etc, are off limits as they make the game too easy.

  25. Re:Can Someone Help? on Debian 2.2 "Has Major Security Issues"? UPDATED · · Score: 2
    now all this talk is worrying me.

    Does a lot of talking make your system more insecure, or does it just make you feel insecure?

    It is much safer to be frightened by talk and let the fear drive you to education than to wallow in ignorance.

    Anyway, please check http://security.debian.org/ if you're using Debian.

    Making a network more secure requires an admin to think of what could possibly happen in any situation. For example once upon a time in a land far far away, someone pondered:

    "Hmmm, packet sniffers make it possible for someone else on a network to capture transmitted data."
    "Waitasec, telnet is unencrypted! Everything is sent out in the clear."
    "Maybe I should stop typing in my passwords via telnet to access a machine remotely."