Howto install archlinux: Difference between revisions
Jump to navigation
Jump to search
Mandulete1 (talk | contribs) No edit summary |
Mandulete1 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
= download and create archlinux usb = | |||
download latest archlinux iso: | download latest archlinux iso: | ||
http://ftp.osuosl.org/pub/archlinux/iso/latest | http://ftp.osuosl.org/pub/archlinux/iso/latest | ||
Line 6: | Line 7: | ||
https://www.balena.io/etcher | https://www.balena.io/etcher | ||
boot the computer with the live usb and select Boot Arch Linux (x86_64): | boot the computer with the live usb and select Boot Arch Linux (x86_64): | ||
= create partitions = | |||
list all the disk and partitions on your system: | |||
fdisk -l | |||
select the disk you are going to format and partition: | |||
parted /dev/vda | |||
inside parted use the following commands: | |||
mklabel gpt | |||
mkpart primary 1 1G | |||
mkpart primary 1G 100% | |||
set 1 boot on | |||
set 1 bios_grub on | |||
quit | |||
format partitions: | |||
mkfs.fat -F32 /dev/vda1 | |||
mkfs.ext4 /dev/vda2 |
Revision as of 16:52, 12 January 2022
download and create archlinux usb
download latest archlinux iso:
http://ftp.osuosl.org/pub/archlinux/iso/latest
create a live usb of archlinux:
dd if=/home/carlito/Desktop/isos/archlinux-2022.01.01-x86_64.iso of=/dev/sdb bs=4M status=progress
if you're using windows download etcher to create the live usb:
https://www.balena.io/etcher
boot the computer with the live usb and select Boot Arch Linux (x86_64):
create partitions
list all the disk and partitions on your system:
fdisk -l
select the disk you are going to format and partition:
parted /dev/vda
inside parted use the following commands:
mklabel gpt mkpart primary 1 1G mkpart primary 1G 100% set 1 boot on set 1 bios_grub on quit
format partitions:
mkfs.fat -F32 /dev/vda1 mkfs.ext4 /dev/vda2