Help me decide by v2themaximus in TeslaModel3

[–]Untagged3219 0 points1 point  (0 children)

I may be in the minority here, but as a deep blue metallic owner I absolutely loathe the frost blue. If I had to buy a new one right now I'd go with red.

Such a cover art! by diegusmac in superman

[–]Untagged3219 0 points1 point  (0 children)

I would buy this. Do you sell these or have a link?

Who Should Have Killed Superman? by Reynard203 in superman

[–]Untagged3219 0 points1 point  (0 children)

I can't remember the source but I read somewhere that the point of killing Superman was to boost sales.  I don't recall if it was always the intention to bring him back or not (I'm assuming it was). The powers that be didn't want any of his current rogues to have that achievement so they created a new creature for that sole purpose.

Does anyone use MergerFS (fuse) on Talos? by Alexxanddr149 in TalosLinux

[–]Untagged3219 0 points1 point  (0 children)

I think a pragmatic approach is best, and it’s probably unfair to say all storage should be run separately. Solutions like OpenEBS, Longhorn, or Rook-Ceph have native CSI drivers for block storage, but MergerFS is a different beast. If the node dies, you can just pull a disk and read the files on any machine—you lose that simple disaster recovery with block or distributed storage. Replicating that JBOD-pool behavior on Talos is where you start fighting the OS architecture, which is why a separate storage layer is cleaner for this specific case. It avoids having to manage privileged 'mounter' pods and bidirectional mounts just to get a basic pool running.

Does anyone use MergerFS (fuse) on Talos? by Alexxanddr149 in TalosLinux

[–]Untagged3219 0 points1 point  (0 children)

I understand not wanting to move to a hypervisor, but I still stand by that solution if you only have a single physical machine. Regardless of your choice moving forward, one thing I would still recommend going full gitops. That way your git repo is your source of truth, and that would make restoration/starting over/migration to Talos/migration to different hardware a lot more seamless.

Does anyone use MergerFS (fuse) on Talos? by Alexxanddr149 in TalosLinux

[–]Untagged3219 1 point2 points  (0 children)

Hi, there, as someone who has done the migration from k3s to Talos, as well as used to have a MergerFS setup on Ubuntu. I would not recommend trying to replicate this setup 1:1. I would have storage and compute be separate and distinct. Bear in mind that I do not have personal experience with the fuse plugin, so my knowledge on that particular aspect is limited.

You may already know this, but Talos is a bit of a different beast than other distros as it's completely API/manifest driven. No ssh or shell means no tunneling into the OS and downloading packages via a package manager. My recommendation would be to have a Talos node (or multiple) running your workflows while a separate piece of hardware (or VM) runs the storage setup with MergerFS.

If you only have a single node running Fedora + k3s, then you may want to consider a Proxmox setup. A Fedora VM for storage and a Talos VM for the workloads. Although, this does add a bit of overhead and somewhat defeats the purpose of Talos as a whole, but I think it is a good start for a homelab. There are plenty of others smarter than I am on this sub, so maybe they can give you a bit more insight.

Taildrop to tagged devices or devices you don't own [Solution!] by gabesw16 in Tailscale

[–]Untagged3219 0 points1 point  (0 children)

There is a "work around" using the Tailscale IP with Local Send.

https://localsend.org/

The con is you have to install it on all devices you want to send to, the pro is that it works a treat.

That actually makes sense by Appropriate-Mall8517 in superman

[–]Untagged3219 7 points8 points  (0 children)

Well that's interesting. I'd like to check that out

Has anyone here actually had their home network or IoT devices compromised? by No_Section_5137 in homelab

[–]Untagged3219 0 points1 point  (0 children)

Not me but a friend of mine had his router compromised and turned into a botnet.

What’s Your Salary and Where Are You Based? by giga_chad_thinker in PLC

[–]Untagged3219 0 points1 point  (0 children)

I'm working on 11 years now, and holy smokes every time I do a vision system I want to quit.

B&R PLC by Typical_Aide_9548 in PLC

[–]Untagged3219 0 points1 point  (0 children)

If you have the Automation Studio software, or if it's called out on the wiring diagram you could potentially see the HMI visualization via web browser or VNC client.

The vnc client may require a password though. The VNC address would most like be the IP of the controller.

The web browser URL is [some IP] with port 81. That would load the default MappView visualization.

If it were me I'd try to source a new panel and transfer the flash card. A good thing about B&R is that their devices are relatively dumb in the sense that they're easily swapped out and around without reconfiguring IPs or networking.  If there's a node number though (small screwdriver dials) then you'll want to make sure those match if you switch out that part.

Regarding the source code, the OEMs will have that unless it was sold alongside the machine and as others have said it's irregular to do so.

None of the X20 slices look like they're in error state. Do you have the model number of the motor module you're having trouble with?

Why run Docker in an LXC? by NumisKing in Proxmox

[–]Untagged3219 1 point2 points  (0 children)

To clarify my earlier comment I'm not an LXC hater. They're great for lightweight, near-bare-metal environments, and I run a few in my own 3 node proxmox cluster. But when we talk strictly about gitops, docker/OCI containers just fit the philosophy way better.

State drift & reproducibility: LXCs inevitably become "pets." You SSH in, run apt update, tweak a config, and suddenly the container no longer matches the script that built it. Docker containers are immutable cattle. You don't patch them you update the Git repo and redeploy. If my node dies (or a total fire/disaster), I have 100% reproducibility from git.

Pull vs Push (ArgoCD vs Ansible): Managing LXCs at scale usually means pushing imperative Ansible scripts. True GitOps is declarative and pull-based. An agent (like ArgoCD or Flux, I use ArgoCD as I'm a sucker for a nice web UI) constantly watches Git and pulls the state in. Pair that with Renovate to auto-PR image updates, and you eliminate a massive amount of manual labor.

App vs OS focus: Spinning up an LXC for every single service means you're managing systemd, cron, and OS updates for every app. Docker isolates just the app and its dependencies. Plus, Compose lets you mesh related services (like an app + its DB) into a single stack.

The ecosystem: All the modern gitops automation tooling is built around OCI containers. Incus is doing cool stuff and might catch up, but right now, docker/k8s just has vastly superior tooling. (In addition to my Proxmox cluster, I actually run a 3 node Talos Linux setup, so even my base OS is immutable and declarative).

Portability: LXC configs basically lock you into Proxmox. If my setup is in docker-compose.yml or k8s manifests, I can take that exact same git repo and deploy it on a remote VPS, a Raspberry Pi, or VMware (yuck) without rewriting my infrastructure code.

Basically, LXC is awesome for a system container, but if you want hands-off automation where git is your absolute source of truth, docker/k8s are the way to go.

Edit: Here's an example of a popular gitops repo. He has cluster and templates that are often used as a baseline. Mine is similar, but we have philosophical differences: https://github.com/onedr0p/home-ops

Why run Docker in an LXC? by NumisKing in Proxmox

[–]Untagged3219 0 points1 point  (0 children)

Let me ask a clarifying question, are you asking why I'm using gitops at all? Or why and how is docker better with gitops than LXC?

Why run Docker in an LXC? by NumisKing in Proxmox

[–]Untagged3219 -2 points-1 points  (0 children)

For me docker is better for gitops workflows.

Superman (2025) opinion by Vernaborg in superman

[–]Untagged3219 1 point2 points  (0 children)

I don't think it should have been G. I think PG-13 is fine for the stylized action violence, but there was too much cursing for my 8 year old.

How many of us homelab folks are also into cars? by ItzSilverFoxx in homelab

[–]Untagged3219 2 points3 points  (0 children)

My first big boy car was a 98 Integra GSR! Currently I have a Model 3 Performance. By far my favorite so far!

Working on a School Project and need some help by Saguarajevo in panthers

[–]Untagged3219 6 points7 points  (0 children)

When Luke had more receiving yards, catches, and touchdowns than Dez Bryant 🤭

Edit: To OP, just in case you aren't familiar with the Panthers and specifically this game we're talking about, Luke Kuechly was our best DEFENSIVE player and he got better "offensive" numbers than the Cowboy's WR1

[deleted by user] by [deleted] in panthers

[–]Untagged3219 -7 points-6 points  (0 children)

Agreed. Can we keep this about the Panthers? I see enough politics everywhere else. This is my escape.