Advertisement
Guest User

How to install VMware Player in Arch Linux

a guest
May 28th, 2010
4,345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. Install VMware Player in Arch Linux:
  2.  
  3. 1. Create some necessary directories:
  4.  
  5. VMware Player relies in a SysV init framework so we need to make it believe we have one. To do so execute the following as root:
  6.  
  7. mkdir -p /etc/rc.d/vmware.d/rc{0,1,2,3,4,5,6}.d
  8. mkdir /etc/rc.d/vmware.d/init.d
  9.  
  10. 2. Start the installation:
  11.  
  12. Start the VMware Player installation as root, for example:
  13.  
  14. sudo VMware-Player-3.0.1-227600.i386.bundle
  15.  
  16. 3. When the installation program asks for the system service runlevels enter "/etc/rc.d/vmware.d/" without quotes.
  17. 4. For the system service scripts use "/etc/rc.d/".
  18. 5. Done! The installation should be finished in the next step.
  19.  
  20. Post installation things:
  21.  
  22. If when you try to launch the player (vmplayer command) it crashes (i.e. nothing comes up, the window dissapears, ...) follow this
  23. steps:
  24.  
  25. 1. Create a new file /etc/ld.so.conf.d/vmware.conf with the following content:
  26.  
  27. /usr/lib/vmware/lib/libssl.so.0.9.8
  28. /usr/lib/vmware/lib/libcrypto.so.0.9.8
  29.  
  30. 2. Run ldconfig as root.
  31. 3. Done! You should be able to launch and run VMware Player now.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement