PS1/PS2 Disc Verification

How to verify purchased discs are fully readable on a PC

⚠️ Note Any standard external USB DVD drive can read PS1 (CD) and PS2 (DVD) discs. No special hardware needed.

Software Options

ImgBurn

WindowsFreewareBeginner-friendly

The gold standard for disc verification. Simple, reliable, widely used for game disc dumping since the early 2000s.

How to verify a disc:

  1. Insert disc into drive
  2. Open ImgBurn
  3. Select Create image file from disc
  4. Set destination to save the .iso
  5. Click the big icon to start — if it completes without errors, disc is fully readable

Quick verify only:

  1. Tools → Drive → Read Test (scans entire disc surface)
  2. If no errors reported, every sector is readable
imgburn.com →

mkps2iso

WindowsLinuxmacOSOpen Source

Cross-platform PS2 disc dumper. Creates verified ISOs from original discs. Reports read errors immediately.

# On Linux
sudo apt install mkps2iso
mkps2iso /dev/sr0 mygame.iso

# Output will show progress + errors

If the dump completes at 100%, the entire disc is readable. Any errors stop the process and tell you where.

github.com/N4gtan/mkps2iso →

Redump.org + ClrMamePro

WindowsArchiveVerification

After dumping your ISO, compare it against the Redump.org database to confirm it's a perfect 1:1 copy.

How it works:

  1. Dump disc to ISO using any tool above
  2. Load the ISO into ClrMamePro
  3. Point it to the Redump DAT file for PS1 or PS2
  4. If CRC/SHA1 matches — your disc is perfect
redump.org →

DD + sha1sum (Linux)

LinuxBuilt-inZero install

Every Linux system has dd — the most basic but reliable disc reader. No installation needed.

# Read entire disc and compute checksum
dd if=/dev/sr0 bs=2048 conv=noerror,sync status=progress | sha1sum

# If it completes without "Input/output error" → disc is fully readable
# The sha1sum can be compared against Redump.org

The conv=noerror,sync flag means errors won't stop the process — instead it pads bad sectors with zeros. If errors occur, they're logged to dmesg.

Recommended Workflow

1
Insert disc in PC DVD drive

Any standard external USB-C DVD drive works ($20-30 on Amazon). PS1=CD, PS2=DVD, both read natively by any DVD drive.

2
Dump disc to ISO

Use ImgBurn (Windows, easiest) or mkps2iso (cross-platform). Full read = disc is good. Error anywhere = disc has bad sectors.

3
Compare against Redump

Optional but recommended: verify your dump matches the known-good checksums on redump.org to confirm a perfect copy.

What Errors Look Like

# In dd/dmesg:
Buffer I/O error on device sr0, logical block 123456
Read-error on swap-device

# In ImgBurn:
Device  [0:0:0] Disc Read Error
LBA: 123456
Sense: 0x03 (Medium Error)

# In mkps2iso:
Error reading sector 123456: Input/output error

Any read error anywhere on the disc means it's not fully readable — even if the game boots. Scratched or degraded sections further into the disc are common with used games.

What You Really Want to Look For When Buying Used Games

Reference guide — not affiliated with any listed software
redump.org · mkps2iso · ImgBurn