I have tried everything, and it just trous put errors. How can I fix it?
Asked
Active
Viewed 308 times
2 Answers
0
This is quite easy, you can use the dd command in the terminal.
dd is used to create exact copies of files/partitions/drives into another file/partition/drive, for example:
You could create a backup (copy) of an entire drive into a file called sda.backup with the next command
sudo dd if=/dev/sda of=sda.backup
But in your case, you should do the opposite, restore the image (OS-Name.iso) into a drive (the USB flash drive), to do so you should use a command like this one:
sudo dd if=/path/to/the/image/OS.iso of=/dev/sdX
The X means the letter of the drive, you can find out with the next command (although it's usually b):
sudo fdisk -l
AxeAR
- 548
0
You could also add status=progress since it takes a while to copy the iso
sudo dd if=file.iso of=/dev/<usb drive> status=progress
if you dont know where is your usb drive, use the lsblk command in terminal
Christian
- 41