1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| vim /etc/hostname vim /etc/hosts
127.0.0.1 localhost ::1 localhost 127.0.1.1 你的主机名.localdomain 你的主机名
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime timedatectl set-ntp true
编辑 /etc/locale.gen,去掉 en_US.UTF-8 行以及 zh_CN.UTF-8 的注释符号后: locale-gen 向 /etc/locale.conf 输入内容: echo 'LANG=en_US.UTF-8' > /etc/locale.conf
passwd root
pacman -S grub efibootmgr os-prober(双系统需要)
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=ArchLinux
grub-mkconfig -o /boot/grub/grub.cfg
|