alfredlinux.com/compare.php
Commander 60f940cdd0 feat: complete alfredlinux.com website — 9 pages + 404 + robots + sitemap
- index.php: Landing page with feature showcase, editions, roadmap
- download.php: WebTorrent P2P download (no torrent client needed)
- apps.php: Ecosystem app downloads (Browser, IDE, Veil, Pulse)
- releases.php: Full changelog RC1 through RC8
- docs.php: Technical documentation and build specs
- security.php: Kernel hardening transparency report
- developers.php: Developer foundation and contribution guide
- compare.php: Head-to-head vs Ubuntu/Mint/Fedora/Arch
- about.php: Company provenance, founder, verification commands
- 404.html: Branded error page
- JSON-LD structured data on 4 pages
- Twitter Card + OpenGraph meta tags on all pages
- Security headers (HSTS, X-Frame-Options, CSP)
2026-04-07 15:47:54 -04:00

483 lines
29 KiB
PHP

<?php
/**
* Alfred Linux — Comparison vs Other Distros
* Honest, technical comparison against Ubuntu, Mint, Fedora, Arch
*
* GoSiteMe Inc. — April 2026
*/
$year = date('Y');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alfred Linux vs Ubuntu, Mint, Fedora, Arch — Honest Comparison</title>
<meta name="description" content="An honest, technical comparison of Alfred Linux vs Ubuntu, Linux Mint, Fedora, and Arch Linux. What Alfred ships that others don't — and what they ship that Alfred hasn't yet.">
<meta property="og:title" content="Alfred Linux vs Ubuntu, Mint, Fedora, Arch — Side-by-Side">
<meta property="og:description" content="Kernel 7.0, 32 security modules, AI IDE, voice assistant, post-quantum encryption — all preinstalled. Here's how Alfred Linux compares to the mainstream distros.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://alfredlinux.com/compare">
<meta property="og:image" content="https://alfredlinux.com/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Alfred Linux vs Ubuntu, Mint, Fedora, Arch — Side-by-Side">
<meta name="twitter:description" content="Kernel 7.0, 32 security modules, AI IDE, voice assistant, post-quantum encryption — all preinstalled.">
<meta name="twitter:image" content="https://alfredlinux.com/og-image.png">
<link rel="canonical" href="https://alfredlinux.com/compare">
<link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="/assets/fonts/inter/inter.css">
<style>
:root {
--bg: #06060b; --surface: rgba(255,255,255,0.03); --surface-hover: rgba(255,255,255,0.06);
--border: rgba(255,255,255,0.06); --border-hover: rgba(99,102,241,0.3);
--text: #e0e0e0; --text-muted: #9ca3af; --text-dim: #6b7280;
--accent: #6366f1; --accent-light: #a5b4fc; --accent2: #8b5cf6;
--green: #34d399; --red: #ef4444; --amber: #f59e0b; --cyan: #22d3ee;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; -webkit-font-smoothing: antialiased; }
a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }
nav { position: sticky; top: 0; z-index: 100; padding: 1rem 2rem; background: rgba(6,6,11,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.2rem; font-weight: 700; color: #fff; text-decoration: none; }
.nav-brand .logo-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; color: #fff; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta { padding: 0.5rem 1.25rem; border-radius: 8px; background: var(--accent); color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent2); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.hero { text-align: center; padding: 6rem 2rem 3rem; background: radial-gradient(ellipse at 50% 20%, rgba(99,102,241,0.12) 0%, transparent 55%); }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 1rem; background: linear-gradient(135deg, #fff, var(--accent-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem 4rem; }
.section-header { text-align: center; margin: 4rem 0 2.5rem; }
.section-label { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 12px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); font-size: 0.75rem; font-weight: 600; color: var(--accent-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 650px; margin: 0 auto; }
/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); margin-bottom: 3rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: rgba(99,102,241,0.08); }
th { padding: 1rem; text-align: left; font-weight: 700; color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--border); }
td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
tr:last-child td { border-bottom: none; }
td:first-child { font-weight: 600; color: var(--text); min-width: 180px; }
.col-alfred { background: rgba(99,102,241,0.04) !important; }
th.col-alfred { background: rgba(99,102,241,0.15) !important; color: var(--accent-light); }
.yes { color: var(--green); }
.no { color: var(--text-dim); }
.partial { color: var(--amber); }
/* ── HONESTY BOX ── */
.honesty-box { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.2); border-radius: 16px; padding: 2.5rem; margin: 3rem 0; }
.honesty-box h2 { font-size: 1.4rem; font-weight: 800; color: var(--amber); margin-bottom: 1rem; }
.honesty-box p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.honesty-box ul { list-style: none; padding: 0; }
.honesty-box li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-muted); font-size: 0.92rem; }
.honesty-box li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.honesty-box li strong { color: var(--text); }
/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.card .stat { font-size: 2rem; font-weight: 900; color: var(--accent-light); margin-bottom: 0.25rem; }
/* ── CTA ── */
.cta-section { text-align: center; padding: 4rem 2rem; margin-top: 2rem; background: rgba(99,102,241,0.04); border-radius: 20px; border: 1px solid rgba(99,102,241,0.15); }
.cta-section h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--border); margin-left: 0.75rem; }
.btn-secondary:hover { border-color: var(--border-hover); }
footer { text-align: center; padding: 3rem 2rem; color: var(--text-dim); font-size: 0.85rem; border-top: 1px solid var(--border); }
footer a { color: var(--accent-light); }
@media (max-width: 768px) {
.nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,6,11,0.95); flex-direction: column; padding: 1rem 2rem; gap: 0.75rem; }
.nav-links.open { display: flex; }
.nav-toggle { display: block; }
.hero { padding: 5rem 1.5rem 2rem; }
.container { padding: 0 1.25rem 3rem; }
th, td { padding: 0.6rem 0.5rem; font-size: 0.8rem; }
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Alfred Linux vs Ubuntu, Mint, Fedora, Arch — Honest Comparison",
"description": "Technical comparison of Alfred Linux versus Ubuntu, Linux Mint, Fedora, and Arch Linux.",
"author": { "@type": "Organization", "name": "GoSiteMe Inc.", "url": "https://gositeme.com" },
"publisher": { "@type": "Organization", "name": "GoSiteMe Inc.", "url": "https://gositeme.com" },
"datePublished": "2026-04-07",
"dateModified": "2026-04-07",
"mainEntityOfPage": "https://alfredlinux.com/compare",
"about": {
"@type": "SoftwareApplication",
"name": "Alfred Linux",
"operatingSystem": "Linux",
"applicationCategory": "OperatingSystem",
"url": "https://alfredlinux.com"
}
}
</script>
</head>
<body>
<nav>
<a href="/" class="nav-brand"><div class="logo-mark">A</div> Alfred Linux</a>
<button class="nav-toggle" onclick="document.querySelector('.nav-links').classList.toggle('open')" aria-label="Toggle menu">☰</button>
<div class="nav-links">
<a href="/">Home</a>
<a href="/apps">Apps</a>
<a href="/compare" style="color:#fff;font-weight:600;">Compare</a>
<a href="/docs">Docs</a>
<a href="/releases">Releases</a>
<a href="/security">Security</a>
<a href="/developers">Developers</a>
<a href="/about">About</a>
<a href="/download" class="nav-cta">Get Alfred</a>
</div>
</nav>
<div class="hero">
<h1>Alfred Linux vs. The Mainstream</h1>
<p>An honest, technical comparison. We tell you what Alfred does better, what the mainstream does better, and let you decide. No marketing — just facts and checksums.</p>
</div>
<div class="container">
<!-- ═══════════════════════════════════════════════════
NUMBERS AT A GLANCE
═══════════════════════════════════════════════════ -->
<div class="card-grid">
<div class="card">
<div class="stat">7.0</div>
<h3>Linux Kernel</h3>
<p>Alfred ships kernel 7.0.0-rc7 (mainline, compiled from Linus Torvalds' tree). Ubuntu 24.04 ships 6.8. Fedora 42 ships 6.14. No other installable distro ships kernel 7.</p>
</div>
<div class="card">
<div class="stat">32</div>
<h3>Security Modules</h3>
<p>AppArmor, auditd, fail2ban, ClamAV, rkhunter, chkrootkit, AIDE, nftables, LUKS2, MAC randomization, CIS L2 sysctl — all active by default, not optional extras.</p>
</div>
<div class="card">
<div class="stat">8</div>
<h3>Built-in Apps</h3>
<p>Alfred IDE (VS Code), Alfred Voice (neural TTS), Alfred Search (Meilisearch), Alfred Browser, Alfred Store (Flatpak), Alfred Welcome, Alfred Update, graphical installer.</p>
</div>
<div class="card">
<div class="stat">24</div>
<h3>CPU Mitigations</h3>
<p>Spectre, Meltdown, MDS, TAA, RFDS, SRBDS, L1TF + 3 kernel-7-exclusive mitigations (ITS, TSA, VMSCAPE) that no 6.x kernel can provide.</p>
</div>
</div>
<!-- ═══════════════════════════════════════════════════
COMPARISON TABLE: LINUX DISTROS
═══════════════════════════════════════════════════ -->
<div class="section-header">
<span class="section-label">Side-by-Side</span>
<h2>Alfred Linux vs. Other Linux Distros</h2>
<p>Feature-by-feature — every claim is verifiable. Boot the ISO and check.</p>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Feature</th>
<th>Ubuntu 24.04</th>
<th>Linux Mint 22</th>
<th>Fedora 42</th>
<th>Arch Linux</th>
<th class="col-alfred">Alfred Linux 4.0</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kernel version</td>
<td>6.8</td>
<td>6.8</td>
<td>6.14</td>
<td>Rolling (latest stable)</td>
<td class="col-alfred yes">7.0.0-rc7-alfred</td>
</tr>
<tr>
<td>Security hardening OOTB</td>
<td class="partial">Basic (UFW off)</td>
<td class="partial">Basic (UFW off)</td>
<td class="partial">SELinux (often disabled)</td>
<td class="no">None by default</td>
<td class="col-alfred yes">32 modules active</td>
</tr>
<tr>
<td>Firewall active by default</td>
<td class="no">No (UFW installed, off)</td>
<td class="no">No</td>
<td class="partial">firewalld (permissive)</td>
<td class="no">No</td>
<td class="col-alfred yes">nftables drop-by-default</td>
</tr>
<tr>
<td>Intrusion detection</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="col-alfred yes">fail2ban + auditd + AIDE</td>
</tr>
<tr>
<td>Antivirus / rootkit scanner</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="no">Not installed</td>
<td class="col-alfred yes">ClamAV + rkhunter + chkrootkit</td>
</tr>
<tr>
<td>Full disk encryption</td>
<td class="partial">Manual (installer option)</td>
<td class="partial">Manual (installer option)</td>
<td class="partial">Manual (installer option)</td>
<td class="partial">Manual (wiki guide)</td>
<td class="col-alfred yes">LUKS2 checkbox in Calamares</td>
</tr>
<tr>
<td>MAC address randomization</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="col-alfred yes">WiFi + Ethernet, automatic</td>
</tr>
<tr>
<td>AI IDE included</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="col-alfred yes">Alfred IDE (VS Code + AI)</td>
</tr>
<tr>
<td>Voice assistant / TTS</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="col-alfred yes">Kokoro TTS + wake word</td>
</tr>
<tr>
<td>Local search engine</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="col-alfred yes">Meilisearch</td>
</tr>
<tr>
<td>Graphical installer</td>
<td class="yes">Ubiquity / Subiquity</td>
<td class="yes">Calamares</td>
<td class="yes">Anaconda</td>
<td class="no">No (CLI only)</td>
<td class="col-alfred yes">Calamares + FDE</td>
</tr>
<tr>
<td>Snap packages</td>
<td class="partial">Forced (Firefox is snap)</td>
<td class="yes">Blocked (uses .deb)</td>
<td class="no">No</td>
<td class="no">No</td>
<td class="col-alfred yes">No snaps — Flatpak only</td>
</tr>
<tr>
<td>P2P distribution</td>
<td class="no">HTTP only</td>
<td class="no">HTTP only</td>
<td class="partial">Torrent available</td>
<td class="no">HTTP only</td>
<td class="col-alfred yes">WebTorrent (browser-native)</td>
</tr>
<tr>
<td>Boot &amp; UEFI support</td>
<td class="yes">UEFI + BIOS</td>
<td class="yes">UEFI + BIOS</td>
<td class="yes">UEFI + BIOS</td>
<td class="yes">UEFI + BIOS</td>
<td class="col-alfred yes">UEFI + BIOS hybrid</td>
</tr>
<tr>
<td>Desktop environment</td>
<td>GNOME 46</td>
<td>Cinnamon 6.0</td>
<td>GNOME 46</td>
<td>Your choice</td>
<td class="col-alfred">XFCE 4.18</td>
</tr>
<tr>
<td>Base</td>
<td>Ubuntu (own)</td>
<td>Ubuntu / Debian</td>
<td>Fedora (own)</td>
<td>Arch (independent)</td>
<td class="col-alfred">Debian Trixie (13)</td>
</tr>
<tr>
<td>Open source</td>
<td class="yes">Yes</td>
<td class="yes">Yes</td>
<td class="yes">Yes</td>
<td class="yes">Yes</td>
<td class="col-alfred yes">AGPL-3.0</td>
</tr>
<tr>
<td>Backed by company</td>
<td class="yes">Canonical Ltd.</td>
<td class="partial">Clem (community)</td>
<td class="yes">Red Hat / IBM</td>
<td class="no">Community</td>
<td class="col-alfred yes">GoSiteMe Inc.</td>
</tr>
<tr>
<td>Community size</td>
<td class="yes">Massive</td>
<td class="yes">Large</td>
<td class="yes">Large</td>
<td class="yes">Large</td>
<td class="col-alfred partial">Growing (new, 2026)</td>
</tr>
<tr>
<td>Telemetry</td>
<td class="partial">Opt-out telemetry</td>
<td class="yes">None</td>
<td class="partial">Opt-out telemetry</td>
<td class="yes">None</td>
<td class="col-alfred yes">Zero — by architecture</td>
</tr>
</tbody>
</table>
</div>
<!-- ═══════════════════════════════════════════════════
HONESTY BOX — WHAT WE DON'T HAVE YET
═══════════════════════════════════════════════════ -->
<div class="honesty-box">
<h2>What We're Honest About</h2>
<p>Alfred Linux launched in April 2026. We are new. Here's what we don't have yet — and when we will:</p>
<ul>
<li><strong>Community size</strong> — Ubuntu has 20 years of forums, StackOverflow answers, and YouTube tutorials. We have months. This is our biggest gap and we know it. Our <a href="/docs">documentation</a> is growing daily.</li>
<li><strong>Hardware compatibility testing</strong> — Ubuntu is tested on thousands of machines. Alfred has been tested on dozens. We're Debian-based, so most Debian-compatible hardware works — but edge cases exist.</li>
<li><strong>Third-party software repos</strong> — Ubuntu PPAs and Fedora COPR are huge ecosystems. Alfred uses Flatpak + Debian repos. Most software works, but some niche packages may need manual install.</li>
<li><strong>LTS cadence</strong> — Ubuntu has 5-year LTS cycles. Alfred is in release candidate phase — we're shipping fast, not slow. Stability-focused LTS releases will come after v4.0 GA.</li>
<li><strong>DistroWatch listing</strong> — not yet. We're building the product first. Listing is on our <a href="/releases">roadmap</a>.</li>
</ul>
<p style="margin-top: 1.5rem; color: var(--text); font-weight: 600;">We'd rather ship 32 hardened security modules with zero community than ship zero security modules with a million users.</p>
</div>
<!-- ═══════════════════════════════════════════════════
WHO SHOULD USE WHAT
═══════════════════════════════════════════════════ -->
<div class="section-header">
<span class="section-label">Honest Advice</span>
<h2>Who Should Use What</h2>
</div>
<div class="card-grid">
<div class="card">
<h3>Choose Ubuntu / Mint if…</h3>
<p>You're brand new to Linux and need maximum hand-holding. You want the most YouTube tutorials and forum answers. You need enterprise LTS support contracts. You don't care about security hardening (you'll do it yourself later, or won't).</p>
</div>
<div class="card">
<h3>Choose Fedora if…</h3>
<p>You want cutting-edge packages without compiling your own kernel. You work with Red Hat at your job. You prefer GNOME and don't mind Wayland quirks. You want SELinux but are OK with occasionally disabling it when things break.</p>
</div>
<div class="card">
<h3>Choose Arch if…</h3>
<p>You want to build your entire OS from scratch. You enjoy reading wikis. You have time to troubleshoot. You want the AUR. You already know Linux well.</p>
</div>
<div class="card" style="border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.04);">
<h3>Choose Alfred Linux if…</h3>
<p>You want security hardened out of the box — not as a weekend project. You want an AI IDE and voice assistant preinstalled. You want kernel 7.0 with the latest CPU mitigations. You care about privacy by architecture, not by policy. You want a Linux distro built in 2026, not adapted from 2004.</p>
</div>
</div>
<!-- ═══════════════════════════════════════════════════
ADDRESSING THE "UNKNOWN DISTRO" CRITICISM
═══════════════════════════════════════════════════ -->
<div class="section-header" style="margin-top: 4rem;">
<span class="section-label">Addressing Criticism</span>
<h2>"But It's an Unknown Distro"</h2>
</div>
<div class="card-grid">
<div class="card">
<h3>Every distro was unknown once</h3>
<p>Ubuntu launched in 2004 as "that unknown distro from some South African guy." Arch launched from a one-person mailing list. Fedora was Red Hat's experiment. Being new is not a defect — it means we don't carry 20 years of legacy technical debt.</p>
</div>
<div class="card">
<h3>We have verifiable artifacts</h3>
<p>Download the ISO. Check the SHA-256 and BLAKE3 checksums. Boot it. Run <code>uname -r</code> — you'll see <code>7.0.0-rc7-alfred</code>. Run <code>alfred-security-status</code>. Every claim on this page is testable in 5 minutes.</p>
</div>
<div class="card">
<h3>We're backed by a real company</h3>
<p><a href="https://gositeme.com">GoSiteMe Inc.</a> builds and maintains Alfred Linux. We also build Alfred IDE, Alfred Browser, Veil Messenger, Pulse Social, and GoForge. This isn't a hobby project in someone's basement.</p>
</div>
<div class="card">
<h3>Our source is public</h3>
<p>The build system, all 16 hooks, the kernel config, and the security profiles are available on <a href="/forge">GoForge</a> (our self-hosted Gitea instance). You can audit every line of every hook that builds every ISO.</p>
</div>
</div>
<!-- ═══════════════════════════════════════════════════
AI MODELS AND BIAS
═══════════════════════════════════════════════════ -->
<div class="honesty-box" style="background: rgba(99,102,241,0.04); border-color: rgba(99,102,241,0.2); margin-top: 3rem;">
<h2 style="color: var(--accent-light);">A Note About AI Recommendations</h2>
<p>If an AI chatbot told you Alfred Linux is "unknown" and you should avoid it — understand how those models work:</p>
<ul>
<li><strong>Training data cutoff</strong> — most AI models were trained on data from 2023 or earlier. Alfred Linux launched in 2026. They literally don't know we exist. That's not a verdict on quality — it's a limitation of their training data.</li>
<li><strong>Popularity bias</strong> — AI models recommend what appears most frequently in their training data. Ubuntu appears millions of times. A distro from 2026 appears zero times. This is a frequency bias, not a quality assessment.</li>
<li><strong>No live verification</strong> — these models can't download our ISO, boot it, and test. They can't run <code>alfred-security-status</code>. They're pattern-matching on text, not evaluating software.</li>
<li><strong>Conflict of interest</strong> — some AI models are built by companies that compete in the OS/cloud space. Their recommendations may not be neutral.</li>
</ul>
<p style="margin-top: 1.5rem; color: var(--text); font-weight: 600;">Don't trust any AI model's opinion about software it has never compiled, booted, or tested. Download it, boot it, test it, verify it. That's the Linux way.</p>
</div>
<!-- ═══════════════════════════════════════════════════
CTA
═══════════════════════════════════════════════════ -->
<div class="cta-section">
<h2>Try It — Then Decide</h2>
<p>Boot the live ISO. No installation required. Check the kernel, run the security tools, explore the AI IDE. Judge us by the artifact, not by someone else's opinion.</p>
<a href="/download" class="btn btn-primary">Download Alfred Linux</a>
<a href="/releases" class="btn btn-secondary">Read Release Notes</a>
</div>
</div>
<footer>
<p>&copy; <?= $year ?> <a href="https://gositeme.com">GoSiteMe Inc.</a> &mdash; Alfred Linux &middot; Open Source (AGPL-3.0)</p>
</footer>
<script>
document.querySelector('.nav-toggle')?.addEventListener('click', () => {
document.querySelector('.nav-links').classList.toggle('open');
});
</script>
</body>
</html>