• 0 Posts
  • 32 Comments
Joined 8 months ago
cake
Cake day: January 31st, 2024

help-circle





  • Some suggestions for solid state alternatives as old mechanical magnetic storage has such a high failure rate. But retro whatever way you want, of course!

    You can get ide to compact flash or ide to sata adapters and get some reasonably modern solid state hard drive storage in there, if that interests you. I understand (haven’t tried personally) that compatibility can be kind of a crapshoot though.

    You can also get a gotek which has a floppy interface and can load floppy images from a USB thumbdrive. Which might be a more functional option than getting a USB floppy drive for a modern machine.








  • It doesn’t copy data, no. Symlink is short for symbolic link. So it’s a pointer to another location. But it might be useful for you. Taking a guess at your goal, here’s a relevant example.

    Say you moved all of your emulation stuff stored under /media/largehdd/retroarch. You could then symlink that directory to ~/.config/retroarch like so:

    ln -s /media/largehdd/retroarch ~/.config/retroarch

    That data is still stored on the large drive but will now also show under that symlinked directory.





  • Apology not needed.

    I agree with you. The ozone layer is a great example of this being successful. And there are other examples of this kind of issue elsewhere. Like the we have to push for user repair rights or against planned obsolescence (which one could argue this is planned obsolescence, in thinking about it).

    A small number of informed users won’t disincentiveize companies from abusing the masses. Because most companies are garbage so of course they will if they can. And regulations are the solution. I’m not suggesting we ignore that. But those of us who are informed can still incentiveize those companies that do treat their customers well in the interim.

    I concede to the point though. I said, in effect, that supporting businesses that treat us well will help. But I suppose it’s more accurate to say that will, at best, stop things from getting worse.




  • This doesn’t fit the question exactly but I feel it’s in the same spirit, and a kind of interesting solution, I think.

    Back in the early days of scryptcoin mining, I had a few gpu mining rigs running Linux. Occasionally they would hard lock and I’d have to power cycle them.

    What I ended up doing is getting some usb to serial adapters, wrote a python script that ran on startup and would send a character over serial at a set interval in a loop. That was hooked up, if I recall correctly, to an attiny85 using softwareserial and some ttl to rs232 conversion. It would listen over serial and if it didn’t receive anything with a reasonable time frame it’d flip a relay that cut mains power to the pc, then flipped it back. A deadman’s switch, of a sort. It worked great!