Your are right, well spoken.
We have to change how we look at knowledge. I read an article on AI which made a separation by defining two knowledge categories: creative (new) and reuse (existing). Reuse knowledge (e.g. a Linux or Windows security expert who learned to secure and harden devices and networks) becomes less and less of value, because anyone can ask AI (write a prompt) to secure or harden a system. Linux for example has quite a few intrusion detection and hardening tools which analyse your system and tell which area's are vulnerable or could be improved (leveled up). How long will it take for those tools to incorporate AI and implement the advice's?
A few clarifications (and some practical “family PC” takeaways)
“Harden” really
is a relative term, and most of the disagreement in this thread comes down to different threat models (home user vs. exposed server vs. “installs random stuff from the internet”).
1) “Linux is far more insecure than Windows” — not as a blanket statement
Both ecosystems have a constant flow of vulnerabilities, and both have supply-chain risk (libraries, dependencies, compromised upstream projects, malicious installers, etc.). The “dependency” concern is real, but it’s not uniquely a Linux problem—Windows has its own supply chain (installers, drivers, vendor updaters, adware bundlers, browser extensions, etc.).
Where Linux can be
safer in practice for a typical relative is when you keep it boring:
- Install software from the distro’s repositories (or a well-known store like Flatpak/Snap) rather than random downloads.
- Use a standard user account for daily work.
- Auto security updates (or at least unattended security updates).
- Minimal attack surface: browser + a few apps.
That’s exactly the “Lubuntu on old laptop used as a web appliance” success story described earlier—low complexity, low risk, low maintenance.
2) “Linux is only safe because it’s not targeted” — partly true, but incomplete
It’s fair to say Linux desktop is generally a smaller target than Windows desktop for mass malware. That reduces opportunistic attacks, but it doesn’t eliminate:
- phishing/social engineering (OS-agnostic)
- browser exploits (OS-agnostic)
- malicious extensions (OS-agnostic)
- credential theft (OS-agnostic)
- supply-chain compromise (OS-agnostic)
So “less targeted” helps, but “security by low market share” shouldn’t be your only plan.
3) “Linux needs SELinux like Windows” — depends on distro and use case
Mandatory Access Control is great, but on many desktops it’s not the first lever to pull:
- Ubuntu-family distros commonly use AppArmor (often enabled by default).
- Some distros support/ship SELinux, and it can meaningfully improve containment—especially on servers or higher-risk endpoints.
- For relatives, turning on SELinux without understanding policy/alerts can create breakage and “support calls,” which defeats the goal.
A sensible approach is: keep the OS updated + restrict install sources + reduce admin use + browser hardening. MAC layers are an “advanced” step, not a default requirement for every home laptop.
4) AI and “reuse knowledge” vs “creative knowledge”
AI will absolutely make “reuse knowledge” easier to access (configs, checklists, scripts, hardening guidance). But it won’t remove the need for judgment, because:
- AI can confidently suggest settings that are obsolete, distro-specific, or conflict with your environment.
- AI often can’t see your real system state unless you provide logs/configs (and even then, it can miss context).
- Hardening is trade-offs; someone still has to decide what breakage is acceptable for the user.
So the value shifts from “knowing every setting by memory” to “knowing what to verify, what to prioritize, and how to keep usability intact.”
Practical conclusion for relatives
If you want fewer support calls, the winning strategy is usually
boring + consistent, regardless of OS:
- Auto updates
- Standard user (not admin)
- Install apps only from trusted sources/stores
- Browser with sensible defaults (uBO is fine; don’t over-tweak into constant site breakage)
- Basic “don’t act on links” habits
If the relative’s workflow is basically “web + email,” a lightweight Linux setup can be a very good outcome (especially on older hardware). If they depend on specific Windows-only apps or Office workflows, Windows may still be the least-friction choice—and hardening should be done quietly and conservatively to avoid turning you into permanent tech support.