Last active
June 20, 2025 11:23
-
-
Save jeansflores/76707a937c28e48e4cabddab976dcf21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> Config Wireless | |
# iwctl | |
# device list | |
# station wlan0 scan | |
# station wlan0 get-networks | |
# station wlan0 connect <SSID> | |
# station wlan0 show | |
# quit | |
>> Config NTP | |
# systemctl status systemd-timesyncd | |
# timedatectl | |
# vim /etc/systemmd/timesyncd.conf | |
NTP=0.br.pool.ntp.org 1.br.pool.ntp.org 2.br.pool.ntp.org 3.br.pool.ntp.org | |
or | |
NTP=a.st1.ntp.br b.st1.ntp.br c.st1.ntp.br d.st1.ntp.br gps.ntp.br a.ntp.br b.ntp.br c.ntp.br | |
# timedatectl set-ntp true | |
# systemctl restart systemd-timesyncd | |
>> Config Disks&Partitions | |
# lsblk | |
# cfdisk /dev/nvme0n1 | |
Create a 1GB for /boot partition with EFI System format | |
Create a partition for / in the size you want in Linux System format | |
# mkfs.fat -F32 /dev/mvne0n1p6 (para o boot) | |
# mkfs.ext4 /dev/nvme0n1p7 (para a /) | |
# mount /dev/nvme0n1p7 /mnt | |
# mount --mkdir /dev/nvme0n1p6 /mnt/boot | |
# lsblk | |
# archinstall | |
Set Disk configuration type > Pre-mounted configuration > /mnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment