UntouchedWagons

joined 2 years ago
[–] UntouchedWagons@lemmy.ca 1 points 1 week ago (2 children)

My best guess is there's a permissions issue with whatever you have the ISO stored on. Try copying the iso to somewhere in your home folder.

[–] UntouchedWagons@lemmy.ca 2 points 2 months ago

Debian because it just works. I am interested in trying NixOS though.

[–] UntouchedWagons@lemmy.ca 1 points 3 months ago* (last edited 3 months ago)

For starting out I would suggest Longhorn, I've had several issues with it but maybe they've been fixed. I also used Rook Ceph which is overkill but neat to play with. Techno Tim has several videos on Kubernetes including setting up a cluster (he has an ansible playbook for it) as well as how to set up Longhorn.

[–] UntouchedWagons@lemmy.ca 23 points 4 months ago (1 children)

Jdownloader 2 is the most straightforward.

[–] UntouchedWagons@lemmy.ca 2 points 7 months ago* (last edited 7 months ago)

I made my own solution since I wasn't impressed by projects I had found. There's two parts, the backup image and the restore image.

I use it like so:

services:
  restore_sabnzbd:
    image: untouchedwagons/simple-restore:1.0.5
    container_name: restore_sabnzbd
    restart: no
    environment:
      - BACKUP_APPEND_DIRECTORY=/docker/production/sabnzbd
      - BACKUP_BASE_NAME=sabnzbd
      - FORCE_OWNERSHIP=1000:1000
    volumes:
      - sabnzbd:/data
      - /mnt/tank/Media/Backups:/backups

  sabnzbd:
    image: ghcr.io/onedr0p/sabnzbd:4
    container_name: sabnzbd
    restart: unless-stopped
    user: 1000:1000
    volumes:
      - sabnzbd:/config
      - /mnt/tank/Media/Usenet:/mnt/data/Usenet
    depends_on:
      restore_sabnzbd:
        condition: service_completed_successfully
    networks:
      - traefik_default

  backup_sabnzbd:
    image: untouchedwagons/simple-backup:1.1.0
    container_name: backup_sabnzbd
    restart: unless-stopped
    environment:
      TZ: "America/Toronto"
      BACKUP_APPEND_DIRECTORY: "/docker/production/sabnzbd"
      BACKUP_BASE_NAME: "sabnzbd"
      BACKUP_RETENTION: "24"
      BACKUP_FREQUENCY: "0 0 * * *"
    volumes:
      - sabnzbd:/data:ro
      - /mnt/tank/Media/Backups:/backups
      
networks:
  traefik_default:
    external: true

volumes:
  sabnzbd:

The restore container looks for a file called RESTORED in /data and if one isn't found it'll try to restore the latest backup (if available) and then create a RESTORED file. The backup container ignores this file during backup.

[–] UntouchedWagons@lemmy.ca 9 points 11 months ago

Logistics is important.

[–] UntouchedWagons@lemmy.ca 6 points 1 year ago

JDownloader 2 has never let me down.

[–] UntouchedWagons@lemmy.ca 5 points 1 year ago (9 children)

I think it started with Linus and Luke of Linus Tech Tips doing a 30 day linux challenge to see what it's like daily driving linix. Jeff of Craft Computing did one recently as well.

[–] UntouchedWagons@lemmy.ca 34 points 1 year ago

Zsh + oh-my-zsh

[–] UntouchedWagons@lemmy.ca 5 points 1 year ago (1 children)

I was disappointed that he didn't pull a heel-face turn in 3 because of all the abuse he received. I'd have him try and leech all of his sister's power to kill her even if it ended up killing him as well due to power overload. The leeching wouldn't kill her but it'd be enough for the vault hunters to have a chance to finish her off.

[–] UntouchedWagons@lemmy.ca 44 points 1 year ago (5 children)

I hope the writing is better than 3's.

[–] UntouchedWagons@lemmy.ca 3 points 1 year ago (2 children)

I've got a t14 and it works perfectly under fedora 40. My only complaint is that the Left Ctrl key isn't in the corner.

 

I'm considering switching from Windows 10 to something either using KDE or the new Cosmic DE that System76 is working on. Right now I've got a 3060TI.

 

This is my one main complaint about Fedora Linux.

 

I've only got a couple of categories, one for sonarr, prowlarr (for some reason), and Games. They each have their save path set and thus I would expect any torrent added under the Games category would be saved in the path set for that category. But they're not, they're dumped in the default save path making that folder a hot mess. What's the deal? Why are categories so terrible?

view more: next ›