21 comments

  • 1970-01-01 8 hours ago
    The sound is not right. This clicker sounds like a Geiger counter ticking out of control. The HDD sound is much deeper. It should sound as if the minute hand on a clock decided to tick out of control.

    https://www.youtube.com/watch?v=SUvlWt9WTKA

    • phire 7 hours ago
      It's not really possible to replicate the HDD sound with anything so simple.

      Because what you hear on a real HDD is the seeks, and the seek time of any SSD is close enough to zero that it probably won't even show up on the HDD LED. All that's left is the data transfer, which are more or less silent on real mechanical HDDs.

      That's part of the reason why it was useful to have the HDD LED despite fact you already had the loud HDD. The LED showed data transfer, while the sound indicated seeks.

      • HPsquared 41 minutes ago
        Time for a custom FUSE layer or kernel module! Monitor all file I/O and simulate "how would this sound?"

        A nice portfolio art piece for GitHub (could even be useful for keeping an ear on virtual machines)

        Come to think of it, maybe the best way is to run the whole system on a VM with a simulated HDD that includes all the delays of a real one, and sound generation. Could also do optical drives.

      • globular-toast 39 minutes ago
        I think under ideal conditions, like raw dogging with `dd`, it wouldn't make a sound. But with a filesystem, at least, there is always a slight sound, but you're right, it's would be very different to a constant seeking sound.

        It makes me wonder if filesystems had recognisable sounds. I feel like I kinda knew what my hard disk was doing just based on the sound.

        I also think a large part of the sound was due to the desk it sat on. The only HDDs I run now are in a NAS in a 6 disk RAID. I've had it upstairs and I can hear a thumping sound through the floor downstairs. But now it's on solid ground and all I can hear is the more high-pitched click.

    • rzzzt 3 hours ago
      This can be resolved by sampling a real hard drive's sounds (spin-up, idle, spin-down, short seek, long seek, big klonk etc.) and playing it back in plausible sequences and variations. You might have to add some mixing capability as well since the motor will drone on constantly.

      On the ultra realistic end: take a dead hard drive, trim the head assembly back so it won't touch/scratch the platter surface, remove its original PCB and replace it with the simulator which now will be responsible for driving the motor and the voice coil. If there is some space left for SSD storage, slap that on as well and use the original power and data connections.

    • GCUMstlyHarmls 5 hours ago
      Quite nostalgic about that floppy disk "check disk" boot sound.

      I know it's a yelling at cloud position to take, but it really does feel like we lost a lot of the human connection to machines when we ditched that kind of physical media. Switches that physically actuated the eject mechanism, clicks, clunks, scrapes, covers and slides. It all felt real and you could weirdly build a relationship with the object, hear it struggle and whine or working away. You could snap a floppy disk in anger or fawn over it in hopes of repair or recovery. You could maybe stomp on a USB stick but you'd probably need a hammer.

      Obviously it was all slow, somewhat prone to breaking or gumming up, etc. There's a reason we moved past it but the most my computer (the thinky bit of it) feels like it exists now are its fans and they're no fun really.

      I can't abstract myself from the reaction to Alien & Starwars set design where everything feels very tactile. Maybe I like that because I'm old, maybe Gen++ also thinks its neat.

      I'm replacing the old fluro lights in my shed, that have been in there since it was my dads shed, some are probably 20 years old and I realised how much I like the "burrr ping ping tick ting PING". The space speaks to me when I enter, hello how are you lets do something. The LEDs just turn on, bang, light.

      • mcny 5 hours ago
        Everyone I talk to remembers it differently than I do but I absolutely hated floppies. Probably because I used them even as late as 2003 but I remember floppies as very unreliable with CRC-32 or whatever that could happen every time inserted it into the computer.

        My use case? Sneaker net -- copying documents between my computer at home and the computer at an Internet cafe. I would ride my bicycle to the cyber cafe, download these PDF or plain text and read them on my computer at home. Kind of scary how little I actually remember but that's a different topic.

    • ryukoposting 6 hours ago
      To be fair, hard drive noises come in many registers (heh). The Maxtor drive in my 1995 HP Vectra sounds much higher than the drive in that video. The drive in my 1998 Compaq laptop is even higher than that.

      Granted, the most distinctive noise of the Vectra's boot sequence is the moaning of the floppy drives, not the hard drive.

      • bitwize 4 hours ago
        A lot of older hard drives made a soft "fweep fweep fweep" as the heads were actuated by a stepper motor. The "tik-tik-tik" hard drives had servomotors. Occasionally I heard the stepper-motor "fweep fweep" sound to indicate "computer is working" in media, even when said computer was too new to have like an ST506 in it.
  • geocrasher 5 hours ago
    Yes, but does it make that magical spool-up sound of a 5MB ST-506 trying to sound like a jet turbine?

    ST-506 startup:

    https://www.youtube.com/watch?v=o7ImJwSmjzs

    T-53 startup:

    https://www.youtube.com/watch?v=rNe9T1FRhwg

    Tell me those aren't the best sounds ever.

  • stevekemp 36 minutes ago
    That reminds me of the Click of Death, which plagued the Iomega zip/jazz drives

    https://en.wikipedia.org/wiki/Click_of_death

  • hengheng 8 hours ago
    I have a watercooled workstation (don't ask), and one day I made it spin up the pump when the chips heat up. I believe it goes from 17% pwm to 18% whenever any chip is more than 15°C warmer than the water. Changes nothing, and you wouldn't set it up like that.

    But the immediate frequency change is enough for me to anticipate a delayed reaction. "Oh, computer is computing. Reach for coffee."

  • RedShift1 8 hours ago
    There's probably a way to do this in software? Like some cars simulating engine noises through the speakers...
    • rzzzt 3 hours ago
      Under MS-DOS such utilities existed and it was also used to demonstrate interrupt hooks in assembly tutorials. To do this, they'd:

      - change INT 13h (the disk access routines in the BIOS) handler address

      - write a handler that clicks the speaker or draws something to video memory without modifying any input registers

      - pass the input over to the original handler which will complete the disk operation

      - return or remove the return address of the inserted snippet from the stack and let the original handler do an IRET

      The end result is e.g. an ASCII smiley face blinking in one of the corners of the screen in text mode or a similar style of crackling/screetching from the PC speaker.

      Here is a full-featured example: https://github.com/MobyGamer/softhddi

    • bn-l 8 hours ago
      But then you need to install something. Probably give it some perm.
      • palmotea 6 hours ago
        Not necessarily. You could do it in a similar form factor, you'd just probably need a bigger speaker and more complicated acoustic model.

        Though maybe instead of keying of an HDD LED, it should sit on the IDE/SCSI bus and generate sounds based on the actual access commands. That shouldn't be impossible, since the main market would be in retro-computing, and there are already devices that emulate those disks. Instead of figuring out what block to return, it would instead figure out of how long of a seek would have been needed and play the right sound.

        If someone produces something that can simulate the sound of a 20MB Miniscribe drive, I'd buy it in a heartbeat:

        https://youtu.be/9gTiBYEY02E?si=arGdgyI7hCnmJgN4&t=1866

  • cFyrute 43 minutes ago
    Cool idea, embarrassing execution.

    It has one job. It can't be this bad at sounding like a HDD if that's what it exists to do.

  • Quitschquat 8 hours ago
    Don’t forget to PARK YOUR HEADS before shutting down!!
    • burnt-resistor 3 hours ago
      ;) That's why I only buy HDDs with voice coil actuators and auto-parking controllers.
  • beardedmoose 9 hours ago
    Im all for this. I miss the tactile feedback of older hard drives, you knew the computer was actually doing something. New computers are too quiet, like electric cars.
  • burnt-resistor 3 hours ago
    Agreed with other comments that it doesn't sound quite right. There are many types of HDD seeking noises, but this one is too high pitched, too fast, and too loud.

    I have a lot of vintage HDDs from 20 MB MFM to several GB IDE & SCSI drives and grew up with them.

  • thepryz 8 hours ago
    Reminds me of adding a Taptic Engine™ to a flash-upgraded iPod classic.

    https://eoe.works/collections/shop-all-ipod-video-ipod-class...

    • moron4hire 8 hours ago
      I didn't realize you could get Taptic Engines. I had wanted some about 10 years ago while I was working on a haptic data glove project, but Apple kept them under tight wraps because they own the patent and wanted them exclusive to their devices. I ended up using small pager motors, but I really think Taptic Engines would have made for a much better experience, both because they are smaller and because they are 3 axis linear vibrators, instead of a single axis rotary vibe.
      • gkhartman 6 hours ago
        I wanted to do something similar 3-5 years ago, and while I found that you could order the Taptic Engine, I couldn't find any good info for driving them last time I checked.
  • _0xdd 6 hours ago
    Is it perfect? No. But I have one of them in a Pentium 200 MHz system that I use a front-facing CF card slot as the primary means of storage, and I very much appreciate the audible feedback for disk activity. I just wish there was some mechanism to simulate more accurate sounds, but I digress.

    P.S., Depending on the CF card, this machine runs Windows 9.x, Red Hat 6.2, OPENSTEP 4.0, or Apple Rhapsody DR2 hehe

  • 1-6 7 hours ago
    I just realized today after 20 years that my computer stopped making noises.

    It's progress but I miss those clicking sounds.

    • leptons 5 hours ago
      I've got 16 3.5" hard drives whirring and chugging next to me. I do not miss the sounds. If I could afford the same setup with SSDs I'd do it in a heartbeat. The heat is another story.
      • nvllsvm 3 hours ago
        I found it worthwhile to move my desktop to another room by using long, 50ft cables (DP1.4, USB 3.0, powered USB hubs). I also have a pikvm connected to Home Assistant so I can press the power and reset buttons using a ZigBee remote. The desktop lives in a Sliger 4U chassis in a rack with my NAS, networking gear, and a UPS.

        My office room is now absent of both noise and heat generated by my desktop and it's so much nicer for it.

      • burnt-resistor 3 hours ago
        My home NAS is 4U 45 3.5" drives 200 TB NAS with a bunch of 1U screaming fans, periodic clicking, and lots of power consumption.
  • burnt-resistor 3 hours ago
    This needs a floppy companion with spinning and seeking noises for external drives.
  • neilv 9 hours ago
    If it hooked into the OS, it could generate even more appropriate sounds:

    * past SMART errors => knock of death sound

    * unrecovered errors => head crash sound

  • overstay8930 4 hours ago
    21% VAT when shipping to the US? No thanks.
  • adzm 3 hours ago
    Now I miss Nullsoft Beep which did this along with other futuristic kinda hums and etc. I assumed there would be other good implementations of the same idea but haven't found much yet.
  • dbg31415 7 hours ago
  • jader201 4 hours ago
    Now if it could just play FF7 tunes:

    https://m.youtube.com/watch?v=RLXQpJgZklk

  • catapart 9 hours ago
    What absolute nonsense. I love it!
  • ValveFan6969 6 hours ago
    [dead]