• 0 Posts
  • 18 Comments
Joined 3 years ago
cake
Cake day: July 31st, 2023

help-circle
  • Linux hobbyist for 20+ years, pro for 6+. Fedora for workstations, proxmox for hypervisors, and rocky for servers is my usual personal recommendation. Beyond that, secureblue (a hardened downstream of fedora atomic) with heads firmware is a fantastic daily driver if you’re into that kind of thing.

    Started with debian sarge way back in the day, currently using secureblue and qubes with fedora vms for most work, with a debian htpc on the side. For servers, I’m mostly debian-based on hardware (a bunch of proxmox machines at various sites and debian-based raspberry pis everywhere), with mostly redhat-based vms. Some alpine and freebsd baremetal and virtual machines sprinkled in here and there for flavor where they fit right.


  • It isn’t much to ask for a game built for one operating system to work perfectly on a completely, fundamentally different operating system, by means of the vastly complex and enormous work of thousands of people, which they donated to the world so that you can access it for free?







  • Podman/docker leave behind old images, image layers, and containers that need to be cleaned up occasionally. podman system prune will do so.

    If 8TB was taken up quickly or unexpectedly, it might be something like a container failing to start and being recreated over and over, leaving each failed container behind as it goes. podman ps --all will list all containers, running or stopped. Before doing the system prune run that and podman image ls --all to see if anything looks amiss.



  • I just set up Readeck a few weeks ago, and I’ve been liking it. Very minimalist, utilitarian. One feature I’d like that isn’t included is the ability to add specific labels or collections to the sidebar, but that’s my only quibble so far.

    It has an official browser extension for adding urls to it, but if you can’t or don’t want to use that, it has a nice api. I use the api to add bookmarks from my phone using a termux-url-opener script, which is as easy as the extension - just hit the “share” button and select termux, and it does the rest.


  • Navigating around supporting bad actors in the foss community is probably far easier than in the closed, commercial software space, given that all the code, discussion, and money are out in the open.

    Also I think the proportion of fascists and bad actors in the foss community is probably lower than elsewhere in the first place, given that the community is based on the free and open sharing of work and knowledge.



  • The rclone fuse mount is essentially running in the memory of the container, and doesn’t translate back into the filesystem that the host presents from itself into that container.

    Since rclone is available in the debian repos, the simplest and easiest option would be to do the rclone mount on the host and then pass that via bind mounting into the Plex container.

    If you want to keep the rclone mounting containerized though (or if your Proxmox host is clustered, you want to mount it on the host, and you want the mount to be shared between your nodes), you can use rclone’s experimental but built-in nfs server feature: https://rclone.org/commands/rclone_serve_nfs/

    Make sure your 2 containers can talk to each other over a secure network (“this server does not implement any authentication so any client will be able to access the data”), start the nfs server in the rclone container, and mount it via nfs in the Plex container.

    Good luck!