ASCII码 ASCII码

Vmware Station安装Arch Linux

发布于:2022-04-30 22:35:49  栏目:技术文档

镜像下载、域名解析、时间同步请点击 阿里云开源镜像站

一、测试环境及工具

当前教程在win10环境中进行,网络为有线连接

vmware station版本为 16.2.1

arch linux镜像为 archlinux-2022.04.05-x86_64.iso

终端工具Xshell 6,也可使用putty,mobaxterm,finalshell等工具均可,没有区别

二、下载arch linux镜像

访问阿里开源镜像站

选择当前最新版本,用下载工具下载到本地

http://mirrors.aliyun.com/archlinux/iso/2022.04.05/archlinux-2022.04.05-x86_64.iso

三、vmware创建虚拟机

file

创建新的虚拟机—>自定义(高级)

file

默认下一步

file

选择稍后安装操作系统

file

选择Linux和其他linux 5.x内核64位

file

自定义虚拟机名称和虚拟机的保存位置

file

默认下一步

file

根据自己的情况配置虚拟机内存,当前配置成2GB

file

默认下一步

file

默认下一步

file

默认下一步

file

创建新虚拟磁盘,下一步

file

自定义磁盘大小,选择将虚拟磁务存储为单个文件

file

默认下一步

file

选择自定义硬件

file

file

设置arch linux的iso路径

file

编辑虚拟机设置,设置uefi启动

file

四、安装arch linux

1. 远程终端登录

file

启动虚拟机,进入终端界面

ls /sys/firmware/efi/efivars 如果结果显示了目录且没有报告错误,则系统是以 UEFI 模式引导的。

file

ping某个公网的域名,测试网络是否是通的,通了才能进行后面的步骤。

file

执行以下命令查看启动系统IP

  1. ip -brief address

file

设置一个临时密码,简单点就好

  1. passwd

使用终端连接工具ssh连接启动系统,用root和刚设置的密码登录。这么做是为了方便复制命令,毕竟手动在虚拟机上敲不仅慢,还容易出错。

2. iso启动系统更换国内源

由于在安装arch linux过程中,需要通过网络下载安装相关包,默认的国外源速度太慢,故配置成国内源进行安装。

安装中出现yes/no的提示时一率按回车,后面的步骤不再额外说明

  1. pacman -Sy vim

等待安装成功后,给iso启动系统配置阿里开源镜像站的软件源

用vim编辑/etc/pacman.conf文件,末尾添加以下两行:

  1. [archlinuxcn]
  2. Server = https://mirrors.aliyun.com/archlinuxcn/$arch

vim /etc/pacman.d/mirrorlist把以下配置放到所有Server链接的最上面

Server = https://mirrors.aliyun.com/archlinux/$repo/os/$arch

保存退出后安装 archlinuxcn-keyring 包导入GPG key。

  1. pacman -Sy archlinuxcn-keyring

3. 磁盘分区

按以下的分区种类分三个区即可,内存较小时,swap分区一般设为真实内存的两倍,本教程虚拟机内存是2G,所以swap分区给4G就行。

  1. EFI分区 300 MB
  2. swap分区 4GB
  3. root分区 剩余空间

fdisk -l 查看磁盘信息,并执行cfdisk命令,如此教程中为cfdisk /dev/sda

file

选择gpt分区表,回车

file

选择[ New ],回车

file

设置大小为300M,回车

file

选择[ Type ],回车,选择 EFI System,回车

file

file

按向下的光标键,回到Free space,选择[ New ]继续分区,swap分区设4G,Type选择Linux swap。root分区默认剩余全部空间,Type选择Linux filesystem

file

分好区后选择[ Write ]写入配置,提示Are you sure you want to write the partition table to disk?时要手动输入yes再回车,这里直接敲回车不管用

file

[ Write ]之后选择[ Quit ]退出

接下来依次对三个分区进行格式化

EFI分区格式化

  1. mkfs.vfat /dev/sda1

root分区格式化,强制分区为xfs

  1. mkfs.xfs -f /dev/sda3

创建swap分区

  1. mkswap /dev/sda2

使用lsblk -f查看磁盘分区情况

file

4. 挂载分区并安装系统

  1. # 挂载分区
  2. mount /dev/sda3 /mnt
  3. mkdir -p /mnt/boot/efi
  4. mount /dev/sda1 /mnt/boot/efi
  5. swapon /dev/sda2
  6. #安装系统
  7. pacstrap /mnt linux linux-firmware linux-headers base base-devel vim git bash-completion
  8. # 生成文件系统的表文件,作用是后面重启进去系统能自动挂载分区
  9. genfstab -U /mnt >> /mnt/etc/fstab
  10. cat /mnt/etc/fstab

5. 进入新系统并配置

  1. arch-chroot /mnt

前面把格式化好的分区已经挂载在iso启动系统的/mnt目录下,并在该目录下安装了系统,执行arch-chroot相当于从当前的启动系统进入到安装好的arch linux系统中。

进到安装好的系统之后,第一步还是配置国内源,方法跟前文中的一样,不再赘述。

  1. # 设置时区
  2. ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
  3. hwclock --systohc
  4. # 设置系统语言
  5. sed -i "s/#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/g" /etc/locale.gen
  6. sed -i "s/#zh_CN.UTF-8 UTF-8/zh_CN.UTF-8 UTF-8/g" /etc/locale.gen
  7. # 生成本地语言信息
  8. locale-gen
  9. # 设置本地语言环境变量
  10. echo "LANG=en_US.UTF-8" > /etc/locale.conf
  11. # 设置主机名,如archlinux
  12. echo "archlinux" > /etc/hostname
  13. # hosts文件中添加主机名
  14. echo "127.0.0.1 localhost
  15. ::1 localhost
  16. 127.0.1.1 archlinux.localdomain archlinux" >> /etc/hosts
  17. # 安装以下软件包
  18. pacman -S grub efibootmgr efivar networkmanager intel-ucode
  19. # 配置grub
  20. grub-install /dev/sda
  21. grub-mkconfig -o /boot/grub/grub.cfg
  22. # 激活启用NetworkManager
  23. systemctl enable NetworkManager
  24. # 给root创建密码
  25. passwd
  26. # 安装openssl
  27. pacman -S openssh
  28. # 设置开机自启动
  29. systemctl enable sshd
  30. # 修改/etc/ssh/sshd_config允许root登录,修改PermitRootLogin的值为yes
  31. sed -i "s/#PermitRootLogin prohibit-password/PermitRootLogin yes/g" /etc/ssh/sshd_config
  32. # 添加其他用户并设置密码,如test_user
  33. useradd --create-home test_user
  34. passwd test_user
  35. # 设置用户组
  36. usermod -aG wheel,users,storage,power,lp,adm,optical test_user
  37. # 修改当前用户权限,编辑以下文件,取消%wheel ALL=(ALL) ALL前的注释,用:wq!保存退出
  38. vim /etc/sudoers
  39. # 安装显卡驱动
  40. pacman -S xf86-video-intel vulkan-intel mesa
  41. # 安装声卡驱动
  42. pacman -S alsa-utils pulseaudio pulseaudio-bluetooth cups
  43. # 安装英文字体
  44. pacman -S ttf-dejavu ttf-droid ttf-hack ttf-font-awesome otf-font-awesome ttf-lato ttf-liberation ttf-linux-libertine ttf-opensans ttf-roboto ttf-ubuntu-font-family
  45. # 安装中文字体
  46. pacman -S ttf-hannom noto-fonts noto-fonts-extra noto-fonts-emoji noto-fonts-cjk adobe-source-code-pro-fonts adobe-source-sans-fonts adobe-source-serif-fonts adobe-source-han-sans-cn-fonts adobe-source-han-sans-hk-fonts adobe-source-han-sans-tw-fonts adobe-source-han-serif-cn-fonts wqy-zenhei wqy-microhei
  47. # 打开字体引擎,取消最后一句的注释
  48. # export FREETYPE_PROPERTIES="truetype:interpreter-version=40"
  49. vim /etc/profile.d/freetype2.sh
  50. # 安装显示服务
  51. pacman -S xorg
  52. # 安装桌面环境。plasma:就是桌面环境;sddm:登录管理器;konsole:kde下的终端;kate:文本编辑器;ark:解压与压缩;okular:PDF查看器;spectacle:截图工具;AUR:管理工具
  53. pacman -S plasma sddm konsole dolphin kate ark okular spectacle yay
  54. # 设置sddm登录
  55. systemctl enable sddm
  56. # 安装中文输入法
  57. sudo pacman -S fcitx fcitx-im fcitx-configtool
  58. yay -S fcitx-sogoupinyin
  59. # 编辑 /root/.xprofile写入以下内容
  60. export GTK_IM_MODULE=fcitx
  61. export QT_IM_MODULE=fcitx
  62. export XMODIFIERS="@im=fcitx"
  63. # 安装其他软件
  64. sudo pacman -S typora netease-cloud-music
  65. yay -S baidunetdisk-electron visual-studio-code-bin google-chrome qv2ray
  66. # 清理缓存
  67. pacman -Scc

6. 重启进入安装系统

以上的配置是从启动系统arch-chroot配置的,我们现在退出启动系统,重启进去安装配置好的系统。

接上一步,依次执行

  1. exit
  2. umount /mnt/boot/efi
  3. umount /mnt
  4. reboot

输入前面设置的密码登入系统

file

file

本文转自:https://www.cnblogs.com/kuroisky/p/16183128.html

相关推荐
阅读 +