Tips: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 chsh -s /bin/zsh rdesktop 192.144.238.188 -u administrator -p 0Xiao4Sheng2Ye6 prime-run vboxmanage startvm "Win10" --type gui archlinux-java status proxychains systemsettings5 radeontop nvidia-smi lspci | grep -E 'VGA|3D' HTTP_PROXY=127.0.0.1:1089 HTTPS_PROXY=127.0.0.1:1089 sudo balooctl disable ctrl+z bg fg
2021 Archlinux双系统安装教程(超详细) - 知乎 以官方Wiki的方式安装ArchLinux | viseator’s blog
0x00.安装前期准备
将Arch的镜像安装到安装介质中
使用Arch启动盘开机启动安装程序
使用fdisk
/cfdisk
进行分盘 可以使用lsblk
查看分盘情况
0x01.相关引导设置 创建引导分区
创建根分区
挂载分区 1 2 3 4 5 6 7 8 mkdir /mnt/bootmount /dev/引导分区 /mnt/boot mount /dev/根分区 /mnt
0x02.联网 连接无线网络
使用iwctl
进入iwd模式,并依次使用以下命令1 2 3 4 5 6 7 8 9 10 11 12 13 14 device list station wlan0 scan station wlan0 get-networks station wlan0 connect 选中的网络 exit
更改系统时间 1 timedatectl set-ntp true
0x03.安装基本系统及组件 改变镜像源 1 2 3 4 5 6 7 8 9 10 11 vim /etc/pacman.d/mirrorlist Server = https://mirrors.tuna.tsinghua.edu.cn/archlinux/$repo /os/$arch Server = http://mirrors.163.com/archlinux/$repo /os/$arch Server = http://mirrors.aliyun.com/archlinux/$repo /os/$arch
安装基本系统 1 pacstrap /mnt base base-devel linux linux-firmware dhcpcd
生成自动挂载分区的文件 1 2 3 4 5 genfstab -L /mnt >> /mnt/etc/fstab cat /mnt/etc/fstab
进入安装的系统本身
(可选)如果安装的Arch Linux属于双系统 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 pacman -S os-prober grub efibootmgr vim /etc/default/grub grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=Arch grub-mkconfig -o /boot/grub/grub.cfg
0x04.进入系统后需要进行的设置 设置时区 1 2 ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtimehwclock --systohc
安装必要安装的安装包 1 pacman -S neovim dialog wpa_supplicant ntfs-3g networkmanager netctl
设置locale语言选项 1 2 3 4 5 6 7 8 9 10 11 vim /etc/locale.gen locale-gen vim /etc/locale.conf LANG=en_US.UTF-8
更改Linux系统的通用设置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 vim /etc/hostname vim /etc/hosts 127.0.0.1 localhost ::1 localhost 127.0.1.1 myhostname.localdomain myhostname passwd useradd -m -G wheel resek4 passwd resek4 EDITOR=vim visudo
设置网络 1 2 3 4 5 systemctl enable --now NetworkManager nmtui
安装yay 技术|初级:如何在 Arch Linux 中安装 Yay AUR 助手 yay 指南: 2. 代理问题
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 cd /optsudo git clone https://aur.archlinux.org/yay.git id resek4sudo chown -R debugpoint:users ./yay cd yayexport GO111MODULE=onexport GOPROXY=https://goproxy.cnmakepkg -si
安装显卡驱动 1 pacman -S xf86-video-amdgpu nvidia nvidia-utils
Display Server
Display Manager
设置开机启动