Skip to content

v0.11.0

Latest

Choose a tag to compare

@github-actions github-actions released this 05 Sep 15:02
a254080

Install

curl -fsSL https://raw.githubusercontent.com/casmith/ps2hdd/main/scripts/install.sh | sh -s -- v0.11.0

The script checks the architecture and the checksum, waits out a
download that is not there yet, and does all of its work inside a
function called on its last line, so a transfer cut partway runs
nothing. Save and read it first if you would rather.

Or by hand:

base=https://github.com/casmith/ps2hdd/releases/download/v0.11.0
curl -fLO --retry 3 $base/ps2hdd-linux-amd64
curl -fLO --retry 3 $base/SHA256SUMS
sha256sum -c --ignore-missing SHA256SUMS
sudo install -m0755 ps2hdd-linux-amd64 /usr/local/bin/ps2hdd

-f is not decoration. Without it curl writes the server's error page
to the file, and install will happily mark nine bytes of Not Found
executable; the first thing you see is a shell trying to run it. With
-f a failed download leaves no file and says so.

Use ps2hdd-linux-arm64 on aarch64. /usr/local/bin matters: sudo's
secure_path does not include ~/.local/bin or Homebrew, and ps2hdd
needs raw block device access, so a binary anywhere else is invisible to
exactly the runs that need it.

Reading a PS2 HDD needs no external tools. Installing games needs
hdl_dump, and artwork or PS1 support needs pfsfuse; run
ps2hdd doctor and it prints the commands for your distribution.

0.11.0 (2026-09-05)

Features

  • name games from the serial on the disc, not the filename (#65) (e7f9e11)

Bug fixes

  • verify the POPS runtime by content, not just by presence (#64) (bffdb3e)