"ERROR: Could not statfs" during Fedora Workstation installation

You can wipe your disk beforehand from the terminal:

# List block devices
lsblk

# Wipe partition table
sudo parted /dev/sda mklabel gpt

# Wipe all data
sudo dd if=/dev/zero of=/dev/sda bs=1M

Then reboot and proceed with the Fedora installer.

3 Likes