在 Parallels Desktop 上安装 Arch Linux(GNOME 3)
- 新建虚拟机时选择Other Linux。
- 按照Arch Wiki进行安装。
- pacman -S xorg gnome
- vim /etc/gdm/custom.conf
- 去掉禁用Wayland注释。
- Go to the kmods directory (
cd ~/parallels_fixed/kmods
) and extract the files (tar -xzf prl_mod.tar.gz
) - Remove
prl_mod.tar.gz
file from that directory (rm prl_mod.tar.gz
) - Find this file:
~/<your-folder-goes-here>/kmods/prl_fs/SharedFolders/Guest/Linux/prl_fs/prlfs.h
- Modify the file by going to line 16 and inserting a new line. Add this text:
#include <uapi/linux/mount.h>
- The file should now look like this. Save and exit.
..
#include <linux/fs.h>
#include <uapi/linux/mount.h>
#include <linux/types.h>
..
- Go to the kmods directory (
cd ~/parallels_fixed/kmods
) and re-zip the files:tar -zcvf prl_mod.tar.gz . dkms.conf Makefile.kmods
In case you missed it, yes that is a period(.) sitting there by itself and necessary. - Go to the installer directory
cd ~/parallels_fixed/installer
- Sudo chmod the script files:
install-cli.sh
(and others) to be executable eg.sudo chmod 777 *.sh
- Then run that file with:
sudo ./install-cli.sh -i --verbose
- Reboot when it's finished.
License:
CC BY 4.0