Installing VMware Workstation on system with OpenRC
·
1min
·
Dmitry Scherbakov
Table of Contents
Steps
- If you are using AUR helper such as
yay
,pikaur
or other, just install packagesvmware-keymaps
,vmware-openrc
,vmware-workstation-openrc
and you are done. Otherwise, if you are like me and prefer doing this stuff manually, proceed with the guide. - In your projects directory, create folder
VMware
and clone a few AUR repositories to it:mkdir VMware && cd VMware git clone --depth 1 https://aur.archlinux.org/vmware-keymaps git clone --depth 1 https://aur.archlinux.org/vmware-openrc git clone --depth 1 https://aur.archlinux.org/vmware-workstation-openrc
- Generate package files and install them (order matters, installation is interactive):
cd vmware-keymaps && makepkg -si && cd - cd vmware-workstation-openrc && makepkg -si && cd - cd vmware-openrc && makepkg -si && cd -
- Add all vmware services to autostart:
rc-update add vmware default rc-update add vmware-usbarbitrator default rc-update add vmware-networks default rc-update add vmware-networks-configuration default
- Now, you should just reboot. Do not launch VMware application or manually start services.