# ps5-linux Loadr (TheFlow's PS5 Linux release)

In April 2026 [Andy Nguyen](https://github.com/TheOfficialFloW) (online as TheFlow), a security engineer with a long history of PlayStation kernel research, released [ps5-linux-loader](https://github.com/ps5-linux/ps5-linux-loader) on GitHub: a complete, reproducible toolchain for booting Linux on PlayStation 5 Phat consoles running firmware versions 3.xx through 4.xx. The proof-of-concept that ran GTA V Enhanced Edition at 60 FPS / 1440p with ray tracing surfaced [in March](https://www.tomshardware.com/video-games/playstation/linux-hacked-onto-a-ps5-to-turn-sonys-console-into-a-steam-machine-gta-v-enhanced-edition-runs-at-60-fps-on-1440pwith-ray-tracing); this release is the public, documented version anyone with compatible hardware can follow.

## What's in the release

- A Linux **payload** that exploits a now-patched hypervisor vulnerability
- A **build script** that produces a bootable Ubuntu 24.04 image
- **M.2 SSD installation tools** for using the PS5's expansion slot as a separate Linux partition
- A **fan and CPU/GPU boost control utility** — Sony's stock cooling profile is tuned for Sony's stock power management, so boosting safely requires the bundled tool

Nguyen credits c0w, resulknad, flatz, and the fail0verflow + ps5-payload-dev teams. This is the consolidated, polished delivery of years of community work, not a single-person discovery.

## Hardware unlocked

Once booted, the PS5 runs as an x86 Linux desktop with:

- All eight Zen 2 CPU cores (16 threads) at up to 3.5 GHz
- RDNA 2 GPU at up to 2.23 GHz
- HDMI video + audio at 1080p, 1440p, or 4K @ 60 Hz
- All USB ports functional (so peripherals work normally)
- Optional M.2 SSD install in the PS5's expansion slot — this is the dedicated-Linux-partition path that keeps the internal SSD untouched

For comparison: a Steam Deck OLED has a 4-core Zen 2 APU with much weaker GPU, so a PS5 Phat running Linux is genuinely more capable Linux gaming hardware than the popular handhelds.

## How the exploit chain works

The release isn't a one-click installer. The boot path is:

1. **Initial code execution** via the separate **umtx2 jailbreak** (a kernel exploit, not part of the loader release itself)
2. Set up a **fake DNS server and HTTPS host** on a local PC
3. **Redirect the PS5's manual page lookup** through the fake DNS — this triggers the entry point
4. **Send the ps5-linux-loader payload over TCP**
5. The console enters **rest mode** and the LED goes solid orange
6. **Press the power button** — the LED turns white if the boot succeeded

This is a **soft mod, not a permanent installation.** The exploit must be re-run each time you want to boot Linux. Standard PS5 reboot returns the console to normal Sony firmware operation. The internal SSD is never modified — the M.2 expansion slot install gives Linux its own physical disk separate from the console's stock storage.

## Caveats and known issues

- **Firmware-locked.** Only PS5 Phat consoles on 3.xx-4.xx work. Newer firmware patched the hypervisor vulnerability and Sony auto-updates aggressively, so the prerequisite is a PS5 the owner kept offline.
- **Slim and Pro models are not supported.** The hypervisor exploit targets Phat-specific code paths.
- **Some monitors don't handle 1440p/4K HDMI output**; Nguyen's FAQ recommends a 1080p fallback or the project Discord for troubleshooting.
- **No real-hardware testing of every release path** — it's been validated on the maintainers' devices, but hobbyist driver coverage is what it is.
- **Always enable the bundled fan profile when boosting clocks.** Sony's thermal solution wasn't designed for the boost-disable Sony's internal scheduler implements.

## Why this matters now

The release timing intersects with two market pressures: discrete GPUs are still expensive (see [[hold-on-to-your-hardware]] on AI data centers eating consumer hardware supply), and Valve [delayed the Steam Machine](https://www.tomshardware.com/video-games/console-gaming/valve-delays-steam-machine-and-says-it-is-reconsidering-pricing-critical-component-shortage-and-costs-behind-the-move) past its early-2026 window over component shortages and pricing. A used PS5 Phat on old firmware is suddenly a legitimate budget Linux gaming PC — not by performance benchmarks, but by total-cost-of-entry for someone who already has the console and wants more out of it.

It also lands in the same window as [[sdl3-dos-port|SDL3's native DOS support]] and [[early-dos-paterson-listings|the Paterson DOS source listings release]] — three independent retrocomputing-meets-modern-Linux moments inside a single April.

## Related

- [[toolbox/ps5-linux-loader]] — toolbox entry
- [[hold-on-to-your-hardware]] — context on why people are looking for cheaper consumer hardware in 2026
- [[sdl3-dos-port]] — adjacent retro-target Linux work in the same window
- [[win32-stable-abi]] — adjacent "what runs on Linux" thread

Repo: <https://github.com/ps5-linux/ps5-linux-loader>
