You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
401 B
11 lines
401 B
#!/usr/bin/env bash
|
|
|
|
wget https://github.com/nan0desu/vmware-host-modules/archive/refs/heads/tmp/workstation-17.5.2-k6.9.1.zip
|
|
unzip workstation-17.5.2-k6.9.1.zip
|
|
cd vmware-host-modules-tmp-workstation-17.5.2-k6.9.1
|
|
tar -cf vmmon.tar vmmon-only
|
|
tar -cf vmnet.tar vmnet-only
|
|
sudo cp -v vmmon.tar vmnet.tar /usr/lib/vmware/modules/source/
|
|
sudo vmware-modconfig --console --install-all
|
|
|
|
echo "Finished."
|
|
|