Welcome to my Website!

https://medium.com/@gamunu/how-to-install-arch-linux-427c1b418ffc https://averagelinuxuser.com/a-step-by-step-arch-linux-installation-guide/ https://blog.linuxserver.io/2018/05/17/how-to-configure-systemd-boot/ https://nerdstuff.org/posts/2020/2020-004_arch_linux_luks_btrfs_systemd-boot/ loadkeys br-abnt2 ::WIRELESS iwctl [iwd]# help [iwd]# device list [iwd]# station device scan [iwd]# station device get-networks iwctl --passphrase [passphrase] station [device] connect [SSID] ::SYSTEM CLOCK timedatectl set-ntp true ::PARTITION /dev/sda1 512M UEFI /dev/sda2 4G SWAP /dev/sda3 16G ROOT /dev/sda4 8G VAR /dev/sda5 32G HOME mkswap /dev/sda2 swapon /dev/sda2 mkfs.ext4 -L ROOT /dev/sda3 mount /dev/sda3 /mnt mkfs.ext4 -L VAR /dev/sda4 mkdir /mnt/var mount /dev/sda4 /mnt/var mkfs.ext4 -L HOME /dev/sda5 mkdir /mnt/home mount /dev/sda5 /mnt/home mkfs.vfat -F32 -n BOOT /dev/sda1 mkdir /mnt/boot mount /dev/sda1 /mnt/boot ::INSTALATION pacstrap /mnt base base-devel linux-lts linux-lts-headers linux-firmware intel-ucode nano iwd links :: genfstab -U /mnt >> /mnt/etc/fstab arch-chroot /mnt echo > /etc/hostname echo LANG=pt_BR.UTF-8 > /etc/locale.conf nano /etc/locale.gen #pt_BR.UTF-8 locale-gen # echo KEYMAP=br-abnt2 > /etc/vconsole.conf # echo FONT=lat9w-16 >> /etc/vconsole.conf ln -sf /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime nano /etc/hosts # 127.0.1.1 arclinux.localdomain archlinux 127.0.0.1 localhost.localdomain localhost ::1 localhost.localdomain localhost passwd ::BOOT MANAGER bootctl --path=/boot install nano /boot/loader/entries/arch.conf title Arch Linux linux /vmlinuz-linux-lts initrd /intel-ucode.img initrd /initramfs-linux-lts.img options root="LABEL=BOOT" rw nano /boot/loader/loader.conf default arch.conf timeout 4 console-mode max editor no # exit # umount -R /mnt # rebo