I installed the Ubuntu distribution via Unetbootin and everything went fine, but to put Arch in the same way, you need to change the syslinux file, which I didn’t, because I did not find the desired string. I tried to do it through dd, but it gives me an error that / dev / sdb does not exist or does not contain such a directory in it. K3b didn't help me either, writes nothing to disk. Win32 disk imager I have not found the file format iso. What am I doing wrong and how to install Arch.
2 answers
You need to drag the archlinux.iso file onto the disk and ubuntu will offer to write the image. After that, it remains only to reboot and change the BIOS settings.
If you need to write from under Win, then it is convenient to use rufus , and if from under Linux, then just type in the terminal command:
# dd bs=4M if=/путь/к/образу/archlinux.iso of=/dev/sdx status=progress && sync where instead of sd x , you need to register the desired disk (not a partition, additional digits are indicated for the partition), you can find it in the command output:
$ lsblk usually it is sd b , sd c ...
With the dd command, you need to act neatly, if you miss the disc, you can screw up the working system or lose important data on the data disk. In general, as always: measure 10 times, 1 - cut.
Also, your flash drive before recording should be pre-unmounted:
# umount /dev/sdx For more information on different ways to record an Arch image, see the official Arch wiki - USB flash installation media
ddenough. Show the command and the error received. - awesoonimage.isofile must be in the same directory in which you are located. Otherwise, theifparameter must be passed the path to this file (absolute or relative). The first command is incorrect,$not needed at the beginning. - awesoon