Advertisement
anhkiet2507

Install VMWare Tools on Arch

Sep 4th, 2021 (edited)
2,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.59 KB | None | 0 0
  1. sudo su
  2. for x in {0..6}; do mkdir -p /etc/init.d/rc${x}.d; done
  3. mount /dev/cdrom /mnt
  4. tar xf /mnt/VMwareTools*.tar.gz -C /root
  5. perl /root/vmware-tools-distrib/vmware-install.pl
  6. /etc/init.d/rc6.d/K99vmware-tools start
  7. nano /etc/systemd/system/vmwaretools.service
  8. Type in nano
  9. ------------
  10. [Unit]
  11. Description=VMWare Tools daemon
  12.  
  13. [Service]
  14. ExecStart=/etc/init.d/vmware-tools start
  15. ExecStop=/etc/init.d/vmware-tools stop
  16. PIDFile=/var/lock/subsys/vmware
  17. TimeoutSec=0
  18. RemainAfterExit=yes
  19.  
  20. [Install]
  21. WantedBy=multi-user.target
  22. ------------
  23. Saved
  24. systemctl enable vmwaretools.service  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement