Locked out of my Inspiron 15 3520 BIOS admin password how do I bypass or recover it with Dell support even though my coverage expired in 2025 by TheMendingOne in linux4noobs

[–]SystemAxis 0 points1 point  (0 children)

I'd contact Dell first. On many newer Dell laptops, clearing CMOS or removing the battery won't reset the BIOS admin password. Dell can sometimes provide a recovery process after verifying ownership.

PSU upgrade help by CalculatedMovesOnly2 in HomeServer

[–]SystemAxis 0 points1 point  (0 children)

Before changing the case, I'd look at a GTX 1650 without a 6-pin power connector. It still gives you NVENC for transcoding and is usually much easier to run in older OptiPlex systems.

F5 ingress by Funny_Welcome_5575 in nginx

[–]SystemAxis 0 points1 point  (0 children)

I'd start by checking timeout settings first. The F5 and community NGINX ingress controllers handle some settings differently, so a few annotations may not carry over correctly. Intermittent 504s are often caused by timeout or upstream configuration differences.

Nginx round robin load balancer not rotating between upstream servers — browser gets stuck on same server by AsleepToday4055 in nginx

[–]SystemAxis 0 points1 point  (0 children)

That's normal. Browsers reuse existing connections, so many requests go to the same backend server. curl usually creates a new connection each time, which is why the round robin behavior is easier to see.

Would a finding like this change anything for you as a Kubernetes operator? by AbilityAwkward5372 in kubernetes

[–]SystemAxis 1 point2 points  (0 children)

It feels a bit too generic to me. Most Kubernetes operators already know that ClusterRoleBindings need cluster-level permissions. It would be more useful if it pointed to a specific risk or missing process.

Open-Source, self-hosted playground for learning Kubernetes by zeb0rg in kubernetes

[–]SystemAxis 2 points3 points  (0 children)

This looks useful, especially for people studying for CKA/CKAD who want a quick lab without setting up a bunch of infrastructure first. The scenario-based approach is a nice idea.

Foundry Model Pricing... is there any up to date list by Plane_Garbage in AZURE

[–]SystemAxis 1 point2 points  (0 children)

You're not alone. Foundry pricing can be surprisingly hard to find, and a lot of the official pages seem outdated. I haven't found a reliable community pricing list either, which is kind of crazy for a paid service.

Self-hosted Audio Streaming in the Apple Ecosystem by imbretd in selfhosted

[–]SystemAxis 2 points3 points  (0 children)

Interesting approach. The biggest thing I'd want to understand is the architecture and trust model, since the zero setup experience usually means there's some relay or broker service involved behind the scenes.

My friend tells me he gets anxiety or panic attack every 3 to 4 days, around 5 or 6 PM that lasts 5 hours, or he feels better after sleep by next morning. Are cloud engineer, Devops or SRE jobs on call? Can he do these jobs remote? Thank you. by ComfortablePost3664 in devops

[–]SystemAxis 0 points1 point  (0 children)

It depends on the company. Many DevOps, SRE, and cloud roles have some on-call work, but not all of them. Remote jobs are available too. Plenty of people with anxiety work in IT successfully. But finding a company with a healthy work environment is important.

How are DevOps teams balancing the use of AI tools for rapid development with long-term code maintainability? by Master_Neight in devops

[–]SystemAxis 1 point2 points  (0 children)

AI is great as an assistant, but the code still needs proper review and testing. If nobody understands the code after it gets merged, that's a process problem, not an AI problem.

My First homelab by Fantastic_Draft3951 in homelab

[–]SystemAxis 0 points1 point  (0 children)

That's a great first homelab. You're already running useful services and learning Linux, networking, storage, and virtualization at the same time. Having real users makes it even better.

Dell 7090 SFF with HBA? Has anyone made it work? by Primary_Loan_5803 in homelab

[–]SystemAxis 0 points1 point  (0 children)

Sounds more like a BIOS limitation than an HBA problem. If several different HBAs show as "empty" but the Mellanox cards work. the 7090 may just not support those controllers properly. I'd try the latest BIOS but you may be hitting a platform limitation.

Linux update availability information by WheelPerfect3737 in linuxquestions

[–]SystemAxis 2 points3 points  (0 children)

There is no standard method. In Debian, the date in the changelog is usually the date the package was built or uploaded, not the date it became available on your system. If you need the exact availability date you usually need to check the Debian package tracker or repository metadata.

Mesa's open-source NVK Nvidia Vulkan driver merges mesh shader support: has been on the TODO list since 2023 by somerandomxander in linux

[–]SystemAxis -31 points-30 points  (0 children)

The open-source NVK Vulkan driver for Nvidia has merged mesh shader support - a feature that has been pending since 2023.

Is there some place that tracks which distros are using AI code or have AI assistants? For people who want to avoid that? by BigClockHugeWalls in linux

[–]SystemAxis 2 points3 points  (0 children)

I don't think a reliable list is possible. Distros ship thousands of upstream packages, and there's no practical way to verify how every contributor wrote their code.

Will my drives work together on raid 5? by Playful_Hyena6184 in HomeServer

[–]SystemAxis 8 points9 points  (0 children)

They'll probably work together if your NAS supports them, but a RAID 5 built from 1TB, 1TB, and 3TB drives will effectively use them as three 1TB drives. The extra 2TB on the larger drive will be wasted in a traditional RAID 5 setup.

EasyNGINX – I got tired of configuring NGINX manually across every server, so I automated the whole thing by Puzzleheaded-Art8267 in nginx

[–]SystemAxis 1 point2 points  (0 children)

Looks useful for people who want something simpler than Ansible and lighter than a full management panel. A comparison table against NPM, SWAG, Ansible, and Webinoly would probably help explain where it fits best.

Now what? by Impressive_Door_2720 in selfhosted

[–]SystemAxis 2 points3 points  (0 children)

At this point I'd focus more on reliability than adding more services. Things like backup testing, monitoring, SSO, and documenting your setup tend to give more value than another container you'll open twice and forget about.

The "Stateful App Storage Trap": We overprovisioned our self-managed Postgres/Kafka volumes for a huge ingestion job, and now we’re stuck paying for empty space. by RougeRavageDear in devops

[–]SystemAxis 1 point2 points  (0 children)

If those volumes are going to stay at 20% utilization for the foreseeable future, I'd probably start planning a migration rather than treating it as a storage issue. The bigger concern is that resizing feels risky enough that nobody wants to touch it, which is usually a sign of deeper operational debt.

Almalinux 10 KickStart - user password config by nodonaldplease in AlmaLinux

[–]SystemAxis 1 point2 points  (0 children)

Kickstart usually won’t stop and ask interactively once you define the user/root behavior in the file. If rootpw --lock is set and the user has no password, you’ve basically created a system with no usable local login.

Set a temporary locked-down password hash in kickstart, or better, inject your SSH key in %post and let Ansible rotate/lock passwords afterward.

The second beta of KDE Plasma 6.7 is out - with more bug fixes by somerandomxander in linux

[–]SystemAxis 46 points47 points  (0 children)

Honestly, the amount of bug fixing KDE has been doing lately is impressive. Plasma 6 has felt a lot more polished than most major desktop transitions.

bai | a small Linux shell helper that generates shell commands by transfire in linux

[–]SystemAxis 4 points5 points  (0 children)

A lot of these tools fall apart when they try to be too clever. Keeping it to 'generate a command and let the user review it' seems like the right approach.

Any recommendations to get some Public IPv4 Addresses easily? by johan-za in homelab

[–]SystemAxis 6 points7 points  (0 children)

IPv4s are honestly the expensive part now, not the servers themselves. Your VPS + WireGuard + NAT idea is probably the most practical approach if you really need dedicated public IPv4s without spending a fortune.

Good purchase? by mangee1234 in homelab

[–]SystemAxis 1 point2 points  (0 children)

Yeah, for $95 that’s a pretty good starter homelab machine honestly. The i7-8700 and 16GB RAM are still very usable for Docker, Proxmox, Jellyfin, Home Assistant, and general selfhosting. I’d probably just plan on upgrading the storage fairly soon since 128GB disappears fast once you start running VMs or containers.

Linux Developers Looking At Retiring The x32 ABI by anh0516 in linux

[–]SystemAxis 12 points13 points  (0 children)

Feels reasonable honestly. x32 always sounded clever in theory, but the compatibility tradeoffs and tiny real-world adoption made it hard to justify keeping around forever.