How to install VMware Player in Fedora 20 - Gnome?
How to install VMWare Player in Fedora 20? I do have an vmware specific image, that I need to run on VMware Player.
How to install VMWare Player in Fedora 20? I do have an vmware specific image, that I need to run on VMware Player.
There are no special steps to install on to vmware as far as I know. Create a new VM and set the boot image to point to a Fedora ISO. It should work like any other virtualization software. If you're having specific issues, please edit your question and provide more information.
Install kernel headers: sudo yum install kernel-headers kernel-devel
Download vmware player: https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_player/6_0
Run bundle in terminal: eg: sudo ./VMware-Player-6.0.4-2249910.x86_64.bundle
Note: If you encounter kernel header version mismatch, update linux kernel using, sudo yum update kernel and restart pc.
sometimes you may get following error, /tmp/modconfig-xxBLCy/vmnet-only/netif.c:152:64: error: macro "alloc_netdev" requires 4 arguments, but only 3 given dev = alloc_netdev(sizeof *netIf, deviceName, VNetNetIfSetup);
This can be solved by,
Change this line in netif.c in /usr/lib/vmware/modules/source/vmnet.tar: from dev = alloc_netdev(sizeof *netIf, deviceName, VNetNetIfSetup); to dev = alloc_netdev(sizeof *netIf, deviceName, NET_NAME_UNKNOWN, VNetNetIfSetup);
Does the download according to your platform
https://my.vmware.com/web/vmware/free#desktop_end_user_computing/vmware_player/6_0
On the command line go to the folder where it is stored vmware, and applies the commands below
You can use sudo or enter the root account. In this example I entered the root account
32bit
]# chmod +x VMware-Player-6.0.1-1379776.i386.bundle
]# ./VMware-Player-6.0.1-1379776.i386.bundle
64bit
]# chmod +x VMware-Player-6.0.1-1379776.x86_64.bundle
]# ./VMware-Player-6.0.1-1379776.x86_64.bundle
Read this document sure you will get an idea.
Asked: 2014-01-30 21:20:02 -0600
Seen: 17,184 times
Last updated: Nov 25 '14