--All this is about terminal--
I know some of you will laugh, but I'm trying to install Arch Linux
, since I want to learn as much as I can about linux system and how it works. I want to be an expert (maybe in 1000 years, but that's okay :)).
The problem is that even tho I know how to do some stuff under linux I'm having a hard time with those names about hard drives, usb, cd, blah blah and how to access them. Big introduction and no question yet, but the purpose is for you to see where I'm standing and give me as many details as possible.
And here's the question:
How can I put the .iso file in a usb that will run on computers startup and allow me to install Arch linux? Details as to how to turn my pc on and hit F8
or whatever can be discarted lmao :)
Ty in advance.
If the .iso is a "hybrid mode" image (like most Ubuntu and Debian images these days, have no idea about Arch), then you can just write it directly to the USB just as if it was a CD-ROM drive. For instance, using dd.
If the .iso is not a hybrid mode image, then you can use UNetBootin, available from Ubuntu's repositories, which is an easy way to burn an ISO (for a Linux distro) to a USB key, converting its filesystem to be compatible. Note: UNetBootin is a GUI app.
First let's find out where your USB is in using the
fdisk
command:and you'll see a list of partitions in your computer.
now you'll know that your usb is at
/dev/sdb
and/dev/sdb1
is the only 'partition' on it, if not per se a partition.Now you have to do a block-by-block copy of the .iso file that you have to boot from to the disk.
dd
command is the one to use.Notice that I'm using
sdb
here, notsdb1
or any other partition.Now you'll be able to boot from the usb when you restart your computer. Just select to boot from the USB disk.