硬盤分區(qū)
cfdisk /dev/sda
創(chuàng)建文件系統(tǒng)
mkfs.ext4 /dev/sda1
掛在分區(qū)
mount /dev/sda1 /mnt
安裝基礎(chǔ)系統(tǒng)
選擇鏡像
nano /etc/pacman.d/mirrorlist
Server = http://mirrors.163.com/archlinux/$repo/os/$arch
安裝鏡像
pacman -Syy
pacstrap -i /mnt base base-devel
生成fstab
genfstab -U -p /mnt >> /mnt/etc/fstab
進(jìn)入系統(tǒng)
arch-chroot /mnt /bin/bash
設(shè)置語(yǔ)言
nano /etc/locale.gen
en_US.UTF-8 UTF-8
locale-gen
echo LANG=en_US.UTF-8 > /etc/locale.conf
設(shè)置主機(jī)名
echo archer > /etc/hostname
設(shè)置網(wǎng)絡(luò)
systemctl enable dhcpcd
設(shè)置密碼
passwd
root
設(shè)置硬件時(shí)間
hwclock --systohc --localtime
安裝ntp
pacman -S ntp
安裝syslinux引導(dǎo)
pacman -S syslinux
pacman -S gptfdisk
syslinux-install_update -iam
nano /boot/syslinux/syslinux.cfg
完成基本系統(tǒng)安裝
exit
umount -R /mnt
reboot
同步網(wǎng)絡(luò)時(shí)間
timedatectl set-ntp true
設(shè)置時(shí)區(qū)
timedatectl set-timezone "Asia/Shanghai"
安裝OpenSSH
pacman -S openssh
nano /etc/ssh/sshd_config
PermitRootLogin yes
systemctl start sshd
設(shè)置--》網(wǎng)絡(luò)--》端口轉(zhuǎn)發(fā)
添加轉(zhuǎn)發(fā)規(guī)則 22