mirror of
https://aur.archlinux.org/vmware-workstation.git
synced 2025-11-28 04:00:35 +08:00
29 lines
894 B
Text
29 lines
894 B
Text
post_install() {
|
|
cat << EOF
|
|
|
|
==> Before using VMware, you need to reboot or load vmw_vmci and vmmon kernel modules (in a terminal on root: modprobe -a vmw_vmci vmmon)
|
|
==> You may also need to enable some of the following services:
|
|
- vmware-networks: to have network access inside VMs
|
|
- vmware-usbarbitrator: to connect USB devices inside VMs
|
|
These services can be activated during boot by enabling .service units or only when a VM is started by enabling .path units.
|
|
|
|
EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
if (( $(vercmp "$2" "16.1.2-2") < 0 )); then
|
|
cat << EOF
|
|
|
|
Now VMware services can be activated only when a VM is started by enabling .path units instead of .service units.
|
|
|
|
EOF
|
|
fi
|
|
}
|
|
|
|
post_remove() {
|
|
cat << EOF
|
|
|
|
==> To completely clean VMware installation, you may have to manually delete /etc/vmware, /etc/vmware-installer and /usr/lib/vmware-installer directories if they still exist.
|
|
|
|
EOF
|
|
}
|