• 12 Posts
  • 317 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle






  • Lem453toLinux@lemmy.mlHDMi port om Fedora 40
    link
    fedilink
    arrow-up
    1
    ·
    4 days ago

    I have an atomic variant of fedora 40 (Aurora) and it just works on an Intel CPU with integrated graphics. I have a USB c dongle with HDMI out and it just works when I plug it in.

    I also tried it on my steam deck dock the other day and it worked without issue.


  • Thanks! Makes sense if you can’t change file systems.

    For what it’s worth, zfs let’s you dedup on a per dataset basis so you can easily choose to have some files deduped and not others. Same with compression.

    For example, without building anything new the setup could have been to copy the data from the actual Minecraft server to the backup that has ZFS using rsync or some other tool. Then the back server just runs a snapshot every 5 mins or whatever. You now have a backup on another system that has snapshots with whatever frequency you want, with dedup.

    Restoring an old backup just means you rsync from a snapshot back to the Minecraft server.

    Rsync only needed if both servers don’t have ZFS. If they both have ZFS, send and recieve commands are built into zfs are are designed for exactly this use case. You can easily send a snap shot to another server if they both have ZFS.

    Zfs also has samba and NFS export built in if you want to share the filesystem to another server.


  • I use zfs so not sure about others but I thought all cow file systems have deduplication already? Zfs has it turned on by default. Why make your own file deduplication system instead of just using a zfs filesystem and letting that do the work for you?

    Snapshots are also extremely efficient on cow filesystems like zfs as they only store the diff between the previous state and the current one so taking a snapshot every 5 mins is not a big deal for my homelab.

    I can easily explore any of the snapshots and pull any file from and of the snapshots.

    I’m not trying to shit on your project, just trying to understand its usecase since it seems to me ZFS provides all the benefits already








  • The proper way of doing this is to have two separate systems in a cluster such as proxmox. The system with GPUs runs certain workloads and the non GPU system runs other workloads.

    Each system can be connected (or not) to a ups and shut down with a power outage and then boot back up when power is back.

    Don’t try hot-plugging a gpu, it will never be reliable.

    Run a proxmox cluster or kubernetes cluster, it is designed for this type of application but will add a fair amount of complexity.