lka1988
@lka1988@lemmy.dbzer0.com
- Comment on Is they're an easy way to make my Jellyfin accessible outside of my home network 5 days ago:
Tailscale. It’s free.
Something about Tailscale rubs me the wrong way. That “free” aspect, specifically. No company ever runs a free service without some sort of compromise somewhere.
- Comment on Is they're an easy way to make my Jellyfin accessible outside of my home network 5 days ago:
Porkbun master race!
- Comment on Immich vs Ente ? 5 days ago:
Did you just go for 3.0, or did you do “baby steps” in between? (e.g. 1.138 > 2.0 > 3.0)
Pretty much that. Downloaded the latest
compose.yml, copied all the relevant bits from my existing compose file to the fresh one (volumes, database/db credentials, etc), set the version tov2.0.0, and let 'er rip. Made sure it was playing nice, then checked all the changelogs up to 2.7.x (whatever patch was the newest last week), set the version tov2, and updated it again.Fast forward to this week, all I did was set the version to ‘v3’ and the update took without a problem.
- Comment on Xbox One X to Linux Questions 6 days ago:
Just find an old office PC. It’ll do just as much as (if not more than) an Xbox One X, which runs even older hardware.
- Comment on Xbox One X to Linux Questions 6 days ago:
7020 with the i7-4790
I’ve got a pair of those in my basement closet just waiting for something to do. The 4790 will always have a special place in my heart 😂
- Comment on Immich vs Ente ? 6 days ago:
Oh, same here. As soon as I discovered Immich, I pored through all the info I could get my hands on and found that breaking changes happened often, so I made absolutely certain to read every changelog for things that may affect my setup. I sstopped updating it last year due to life getting in the way, and it was stuck on 1.138 (and shut off) until last week when I decided to pay attention to it again.
- Comment on Immich vs Ente ? 1 week ago:
Downside: breaking changes are fairly common AFAIK.
Breaking changes only come with major version changes now.
- Comment on Immich v3.0.0 is out, with Workflows preview 1 week ago:
I literally just updated mine two days ago 😂
- Comment on Self-hosted keypass fork recommendation 1 week ago:
Ah yes, I forgot about the merge ability. Pretty sweet protocol, honestly.
- Comment on Self-hosted keypass fork recommendation 1 week ago:
Keepass has native support for ftp, http, https, and webdav, and with a plugin supports scp, sftp, and ftps through the native save/open from url. There are even plugins for proton drive, google drive, onedrive, s3, box, dropbox… etc.
Important distinction: The OG KeePass desktop program supports that. KeePass XC (popular fork for Linux users) does not, and the maintainers have loudly rejected any attempts to add it.
- Comment on Self-hosted keypass fork recommendation 1 week ago:
So I’d there a server + local system? Like Joplin… You can write notes all day with no server at all. The server just Synchronizes it all. In the past I used syncthing and I will continue using it. One thought was to have an automated backup from Vaultgarden that was automatically synced to my various devices as a Keypass database.
This is exactly how I use KeePass, and is fully supported as well. Set it up, import the VW database (might need some fuckery to do so, I’ve not played with VW), place the KeePass database in a location that makes sense to you on your device, then sync that folder via Syncthing to your other devices.
You’re using Linux, obviously, and the OG KeePass program was never written for Linux, so you’ll want a fork called KeePass XC. Unfortunately, the XC team doesn’t support plugins, but that should be a non-issue if you’re using Syncthing. Just point XC at the folder that’s being synced and you’re golden.
What other platforms are you using? Android? iOS? Windows? There are many forks of KeePass available for every platform. they are all cross-compatible and can utilize the same database.
- Comment on What apps do you use to listen music at work/on phone? 3 weeks ago:
I have a Pandora subscription. Trying to make it play nice with Music Assistant.
- Comment on Any self-hosted option for real time location sharing? 3 weeks ago:
So we took a look trying to figure out why her phone wasn’t giving HA a consistent location… She likes to turn off the camera/mic/location killswitches 😂
Quick fix haha, but at least we know that Graphene is doing the thing that it’s known to do!
- Comment on Any self-hosted option for real time location sharing? 3 weeks ago:
Interesting. Thanks for the screenshots, I’ll have my wife check those settings.
- Comment on Could somebody share a working Arr stack in docker with me? 3 weeks ago:
Here’s mine (that sorely needs updating, but it’s LAN only, so…meh). I have a separate stack for media players (Plex, JF) and downloaders (sabnzbd, qbittorrent), which is what the network config at the bottom is for:
volumes: movies: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Movies tvshows: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/TV_Shows music: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Music torrents: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Torrents prerolls: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Plex_prerolls books: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Books downloads: driver_opts: type: nfs o: addr=192.168.1.175,nolock,soft,nfsvers=4 device: :/Downloads services: sonarr: image: lscr.io/linuxserver/sonarr:latest container_name: sonarr restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/sonarr_config:/config - tvshows:/TV_Shows - torrents:/Torrents - downloads:/Downloads ports: - 8989:8989 networks: - plex_default - downloaders_default radarr: image: lscr.io/linuxserver/radarr:latest container_name: radarr restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/radarr_config:/config - movies:/Movies - torrents:/Torrents - downloads:/Downloads ports: - 7878:7878 networks: - plex_default - downloaders_default lidarr: image: lscr.io/linuxserver/lidarr:latest container_name: lidarr restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/lidarr_config:/config - music:/Music - torrents:/Torrents - downloads:/Downloads ports: - 8686:8686 networks: - plex_default - downloaders_default bazarr: image: lscr.io/linuxserver/bazarr:latest container_name: bazarr environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/bazarr_config:/config - movies:/Movies #optional - tvshows:/TV_Shows #optional ports: - 6767:6767 restart: unless-stopped networks: - downloaders_default - plex_default overseerr: image: lscr.io/linuxserver/overseerr:latest container_name: overseerr restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/overseerr_config:/config ports: - 5055:5055 networks: - plex_default - downloaders_default jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr environment: - LOG_LEVEL=debug - TZ=Etc/UTC - PORT=5055 ports: - 5056:5055 volumes: - /var/lib/docker/volumes/jellyseerr_config:/app/config healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1 start_period: 20s timeout: 3s interval: 15s retries: 3 restart: unless-stopped prowlarr: image: lscr.io/linuxserver/prowlarr:latest container_name: prowlarr restart: unless-stopped environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /var/lib/docker/volumes/prowlarr_config:/config ports: - 9696:9696 networks: - plex_default - downloaders_default networks: plex_default: external: true downloaders_default: external: true
- Comment on Any self-hosted option for real time location sharing? 3 weeks ago:
I want to say I enabled it, but I’ll have to check again.
Does it affect the battery usage much by increasing the poll rate?
- Comment on Any self-hosted option for real time location sharing? 3 weeks ago:
Home Assistant location doesn’t quite play nice with GOS. My wife and I have been looking for a Life360 replacement ourselves. She runs Graphene, and it’ll grab location periodically, but it’s not consistent.
- Comment on Doorbell Camera / NVR (post Unifi) 4 weeks ago:
So i’m moving to one of the new unifi doorbell lites until I find a better solution, or bite the bullet and buy a higher end one.
I really wish they made these with wifi capabilities. I would love to run a POE doorbell, but renting makes that very difficult.
- Comment on Doorbell Camera / NVR (post Unifi) 4 weeks ago:
I’ve got that UDM as well. It’s been doing the thing just fine since 2020.
Moved to a bigger place a few years ago, so I added an AP to resolve poor wifi coverage in certain areas. Works great, no complaints.
- Comment on Email ownership, I give up. 4 weeks ago:
Proton encrypts your emails. Clients like Thunderbird aren’t capable of handling that (yet).
- Comment on What are your self–hosted alternatives for inter device communication? 5 weeks ago:
Ohhhhhhhhhh
Man I need to read better
- Comment on What are your self–hosted alternatives for inter device communication? 5 weeks ago:
So does KDE Connect. It’s a standalone program that happens to also be integrated into the KDE DE.
- Comment on What are your self–hosted alternatives for inter device communication? 5 weeks ago:
I’m aware, but some devices I use regularly like an iPhone, work computer, etc, are limited in their capacity to run it.
- Comment on This community isn't your personal adviser 5 weeks ago:
It’s not that complicated. New user gets an answer, feels like the post isn’t relevant anymore, and deletes it without thinking.
Still a massive dick move, but still.
- Comment on This community isn't your personal adviser 5 weeks ago:
Unfortunately, this is nothing new. Forums have been dealing with this for decades. XKCD even made a comic about forum posts going stale.
- Comment on What are your self–hosted alternatives for inter device communication? 5 weeks ago:
You can use KDE Connect itself without KDE.
- Comment on What are your self–hosted alternatives for inter device communication? 5 weeks ago:
PC to phone:
- USB cable
- KDE Connect
- Nextcloud
- Syncthing
PC to PC:
- USB drive
- SFTP
- SSH
- Nextcloud
- Syncthing
Phone to PC:
- USB cable
- KDE Connect
- Nextcloud
- Syncthing
- Comment on Immich: FUTO — 2 years later 5 weeks ago:
Hardly.
Curtis Yarvin and his associates have talked to FUTO and attempted to pitch Eron on investing in his tech startup Urbit. Yarvin also sat down and talked to Eron about issues relating to technology. Eron did not agree to fund their work and did not find their pitch to be particularly compelling. That is the extent of FUTO’s relationship with Yarvin and Urbit.
Source: your github link below.
- Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 9 months ago:
Fair point. I’m 12 years into my own self-hosting journey, I guess it’s easy to forget that haha.
- Comment on Those who are hosting on bare metal: What is stopping you from using Containers or VM's? What are you self hosting? 9 months ago:
I would give docker compose a try instead. I found Proxmox to be too much, when a simple yaml file (that can be checked into a repo) can do the job.
Proxmox and Docker serve two completely different purposes.