You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
root@archiso#pacstrap /mnt linux linux-firmware base nano grub networkmanager dhcpcd netctl wpa_supplicant dialog efibootmgr
Install basic packages (BIOS)
root@archiso#pacstrap /mnt linux linux-firmware base nano grub networkmanager dhcpcd netctl wpa_supplicant dialog
Generate fstab (UEFI & BIOS)
root@archiso#genfstab /mnt>> /mnt/etc/fstab
Check
root@archiso#cat /mnt/etc/fstab#Static information about the filesystems.#See fstab(5)for details.#<file system><dir><type><options><dump><pass>#UUID=XXXXX-XXXX-XXXX-XXXX-XXXX/dev/sda2 / ext4 rw,relatime0 1...
Host, Clock and Locale configurations (UEFI & BIOS)
Mount the filesystem
root@archiso#arch-chroot /mnt
Set Host name (whatever name you choose)
root@archiso#echo your_host_name> /etc/hostname
Set localtime (choose yours, this is an example with Argentina)
root@archiso#grub-install --efi-directory=/boot/efi --bootloader -id='Arch Linux' --target=x86_64-efiInstalling for x86_64-efi platformInstallation finished. No error reported.
Configure grub
root@archiso#grub-mkconfig -o /boot/grub/grub.cfgGenerating grub installation file...Found linux image: /boot/vmlinuz-linuxFound initrd image: /boot/initramfs-linux.imgFound fallback initrd image(s) in /boot: initramfs-linux-fallback.imgWarning: os-prober will not be executed to detect other booteable partitions.Systems on them will not be added to the GRUB boot configuration.Check GRUB_DISABLE_OS_PROBER documentation entry.Adding boot menu entry for UEFI Firmware Settings ...done
Installing GRUB (BIOS)
Rungrub-install with this params
root@archiso#grub-install /dev/sdaInstalling for i386-pc platformInstallation finished. No error reported.
Configure grub
root@archiso#grub-mkconfig -o /boot/grub/grub.cfgGenerating grub installation file...Found linux image: /boot/vmlinuz-linuxFound initrd image: /boot/initramfs-linux.imgFound fallback initrd image(s) in /boot: initramfs-linux-fallback.imgWarning: os-prober will not be executed to detect other booteable partitions.Systems on them will not be added to the GRUB boot configuration.Check GRUB_DISABLE_OS_PROBER documentation entry.Adding boot menu entry for ...done
Root and User configuration (UEFI & BIOS)
Set root password
root@archiso#passwdNew password:Retype new password:passwd: password updated successfully
Create user and set password
root@archiso#useradd -m your_user_nameroot@archiso#passwd your_user_nameNew password:Retype new password:passwd: password updated successfully