-
挂载主分区到 /mnt :mount 主分区 /mnt
-
创建boot目录,并挂载boot分区:mount boot分区 /mnt/boot
-
安装linux:pacstrap /mnt base linux linux-firmware
-
生成分区列表:genfstab -U /mnt > /mnt/etc/fstab
-
进入新系统:arch-chroot /mnt
-
设置时区:ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
-
更新时间:hwclock --systohc
-
pacman安装vim
-
编辑/etc/locale.gen
:打开en_US.UTF-8 UTF-8
、zh_CN.UTF-8 UTF-8
-
生成本地化:locale-gen
-
编辑/etc/locale.conf
:LANG=en_US.UTF-8
-
编辑/etc/hostname
:机器的名字
-
编辑/etc/hosts
127.0.0.1 localhost
::1 localhost
127.0.0.1 机器名字.localdomain 机器名字
-
更改root密码passwd
-
安装必要软件:pacman -S iwd dhclient grub efibootmgr intel-ucode base-devel libappimage kate konsole dolphin firefox
-
配置grub
# mkdir /boot/grub
# grub-mkconfig > /boot/grub/grub.cfg
# grub-install --target=x86_64-efi --efi-directory=/boot
-
添加用户:
# useradd -m -G wheel 用户名
# passwd 用户名
# vim /etc/sudoers
-
安装图形界面(KDE)
// 如果安装的是dhcpcd,就需要开启dhcpcd服务