Recovering files from a readable disk
Windows
CautionThis will wipe all existing data on the USB drive.
- Download and run Rufus.
- Select “ISO Image” and then browse for the ISO image.
- Select which flash drive you want to put the installer on.
- Select the Partition scheme (GPT/MBR) depending on your motherboard’s capabilities.
- Click “Start” and wait for it to finish.
- Eject the USB flash drive.
There is no need to mess with any other settings in Rufus.
macOS
- Open the Terminal.
- First, without the flash drive inserted, run
diskutil list
in the Terminal. - Plug in the flash drive and run
diskutil list
again. You can do this to identify the drive device path. The device path is in the form of/dev/diskN
, where N is a number (example:/dev/disk1
). - Unmount the flash drive you have identified.
diskutil unmountdisk /dev/diskN
. - Convert the ISO image.
hdiutil convert /path/to/image.iso -format UDRW -o /path/to/ubuntu.img
- Run
sudo dd if=/path/to/image.img of=/dev/rdiskN status=progress
to create a bootable drive from the image. Using/dev/rdiskN
instead of/dev/diskN
usually results in faster media creation. - Wait until dd finishes. The terminal will display the next prompt when it’s done.
- Eject the USB flash drive:
diskutil eject /dev/diskN
.
Linux
- First, without the flash drive inserted, run
lsblk
in the Terminal. - Plug in the flash drive and run
lsblk
again. You can do this to identify the drive device path. The device path is usually in the form of/dev/sdX
, where X is a letter (example:/dev/sdb
). - Run
dd if=/path/to/image.iso of=/dev/sdX status=progress
to create a bootable drive from the ISO. - Wait until dd finishes. The terminal will display the next prompt when it’s done.
Ventoy (Windows and Linux)
Follow our Ventoy guide to make one flash drive that can boot multiple ISO files, this is a more advanced method but suitable for power users who may not have heard about it before.
Open the File Manager from the applications menu, you should see your disk in the pane on the left. In the below image, it is the “11GB Volume”
Double click the desired disk and it should open in the file manager.
Once opened, you can drag and drop files to another disk that you mount into the system just like in Windows.