this post was submitted on 02 Jan 2025
43 points (100.0% liked)

technology

23968 readers
13 users here now

On the road to fully automated luxury gay space communism.

Spreading Linux propaganda since 2020

Rules:

founded 5 years ago
MODERATORS
 

My aunt's got an old slightly broken laptop. She's got a new one. No one has any need for this old one anymore. It has no selling value. Etc etc etc.

I know I can put an SSD in it and run it on Linux to make it run smoothly as a laptop for emails and word processing etc, but I already have a crap old laptop for exactly that.

What sort of fun things can you do with an old laptop? I'm talking like, using it as a whole new device. Maybe using it as a 'TV Box' of sorts - getting some radio apps, and hacked streaming apps... Or loading up a bunch of PS2 games on it... or having it as the jankiest personal assistant, with timers, and calendars, and all that.

You know what I mean.

I love pointless gadgetry.

you are viewing a single comment's thread
view the rest of the comments
[–] ProletarianDictator@hexbear.net 8 points 8 months ago (1 children)

Expanding upon other users' suggestions of running self-hosted services...

If you have multiple unused devices laying around, I'd suggest making a Kubernetes cluster out of them. (The easiest way to bootstrap a cluster would probably be using k3s.)

The main benefits of doing this are:

  • Your self-hosted services can scale to meet demand by running them on multiple nodes or more powerful nodes, letting you make the most of multiple crappy machines instead of being limited to its specs.
  • You can combine storage devices from across all your machines and create distributed volumes or large shared volumes.
  • If a machine goes down, your workloads can switch to another node to run on, preventing downtime.
  • You can add new machines as nodes and they'll be available to run your services without much additional effort.

It's a fair amount of effort to setup, but the benefits are worth it IMO.