Patch it to Jellyfin 10.10.7.
Avid Amoeba
- 6 Posts
- 105 Comments
As others have mentioned this is practical with a VM. It might also be doable with Docker, saving some resources.
The 8K porn was too hot.
I’m planning to introduce my kids to Linux at a really early age. I was using DOS at 4-5 years of age. They’ll be using Linux. I hope by hooking them up young, they’ll grow resistance to corporat OSes and devices. Plus I’d be able to delegate the maintenance of the self-hosted services to them. 😄
“Hey girl, Immich is outta date!”
Avid Amoeba@lemmy.caOPto Linux@lemmy.ml•NVIDIA driver 570.181 released for Linux as the latest recommended stable driver9·12 days agoThank you for your service!
Avid Amoeba@lemmy.caOPto Linux@lemmy.ml•NVIDIA driver 570.181 released for Linux as the latest recommended stable driver4·13 days agoIs Ollama doing the cooking? 😂
Add storage via good USB hub or use a multi-bay storage box later on. The have built-in hubs. E.g. Terramaster or OWC Mercury Elite Pro.
For the highest possible resource utilization and security support beyond Apple’s, you could try installing Linux and using Docker containers for everything. You should be able to run quite a few services.
The next best option resource-wise is to run a large Linux VM and docker containers inside it. The Docker for Mac setup does exactly that. This is how we solved running a complex and resource hungry tech stack locally for development at a past workplace.
Then come running services in multiple VMs.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Introducing UniFi OS Server for MSPsEnglish7·18 days agoI’m running a container,
Debian
I did not read the post, I just came here to say Debian since that’s the answer to the general question. 😄
Avid Amoeba@lemmy.cato Linux@lemmy.ml•Immich 1.136 Photo and Video Backup Brings Breaking Changes7·22 days agoThe Android app finally does IO on a background thread. 🫠
Seems like stillbirth to me.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English2·1 month agoUpdated ☝️ 👇
It probably can be packaged in a flatpak but it would be more of a challenge than using the docker package. You could implement your use case today with the default docker compose setup. You could be up and running in minutes. Start it with
-d
and it would even start automatically on reboot. It won’t consume any more resources than a flatpak version.Just try this in a directory somewhere: https://immich.app/docs/install/docker-compose/
As for docker itself, if you’re on Ubuntu or Debian, you can use the docker version from the stock repos. The package is
docker.io
and for compose you wantdocker-compose-v2
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English4·1 month agoYes, it prevents bit rot. It’s why I switched to it from the standard mdraid/LVM/Ext4 setup I used before.
The instructions seem correct but there’s some room for improvement.
Instead of using logical device names like this:
sudo zpool create zfspool raidz1 sda sdb sdc sdd sde -f
You want to use hardware IDs like this:
sudo zpool create zfspool raidz1 /dev/disk/by-id/ata-ST8000VN0022-2EL112_ZA2FERAP /dev/disk/by-id/wwn-0x5000cca27dc48885 ...
You can discover the mapping of your disks to their logical names like this:
ls -la /dev/disk/by-id/*
Then you also want to add these options to the command:
sudo zpool create -o ashift=12 -o autotrim=on -O acltype=posixacl -O compression=lz4 -O dnodesize=auto -O normalization=formD -O relatime=on -O xattr=sa zfspool ...
These do useful things like setting optimal block size, compression (basically free performance), a bunch of settings that make ZFS behave like a typical Linux filesystem (its defaults come from Solaris).
Your final create command should look like:
sudo zpool create -o ashift=12 -o autotrim=on -O acltype=posixacl -O compression=lz4 -O dnodesize=auto -O normalization=formD -O relatime=on -O xattr=sa zfspool raidz1 /dev/disk/by-id/ata-ST8000VN0022-2EL112_ZA2FERAP /dev/disk/by-id/wwn-0x5000cca27dc48885 ...
You can experiment till you get your final creation command since creation/destruction is nearly instant. Don’t hesitate to create/destroy multiple times till you got it right.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English2·1 month agoYes exactly.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English6·1 month agoBasically the equivalent of RAID 5 in terms of redundancy.
You don’t even need to do RAIDz expansion, although that feature could save some space. You can just add another redundant set of disks to the existing one. E.g. have a 5-disk RAIDz1 which gives you the space of 4 disks. Then maybe slap on a 2-disk mirror which gives you the space of 1 additional disk. Or another RAIDz1 with however many disks you like. Or a RAIDz2, etc. As long as the newly added space has adequate redundancy of its own, it can be seamlessly added to the existing one, “magically” increasing the available storage space. No fuss.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English8·1 month agoThis. Also it’s not difficult to expand at all. There are multiple ways. Just ask here. You could also ask for hypothetical scenarios now if you like.
Avid Amoeba@lemmy.cato Selfhosted@lemmy.world•Rough draft server/NAS is complete!English42·1 month ago- That power situation looks suspicious. You better know what you’re doing so you don’t run into undercurrent events under load.
- Use ZFS RAIDz1 instead of RAID 5.
Avid Amoeba@lemmy.caOPto Selfhosted@lemmy.world•PSA: If the first Smart Search in Immich takes a whileEnglish1·1 month agoNice. So this model is perfectly usable by lower end x86 machines.
I discovered that the Android app shows results a bit slower than the web. The request doesn’t reach Immich during the majority of the wait. I’m not sure why. When searching from the web app, the request is received by Immich immediately.
Used Ubuntu LTS in a VM at a bank, a tech company and now using it as an officially sanctioned OS at my workplace.