15.04 VMWare Player “unable to start services” errorVMWare player and Ubuntu 15.04: net driver does not compile anymore, how to fix?Unable to install vmware workstation on ubuntu 15.04How to fix “Unable to start services” in VMware Player 4.0.3. on Ubuntu 12.04 32 BitVmware installation on ubuntu 10.04VMware Workstation: Error, modules must be compiled… - how to fix?VMWare Player 3.1.6 32 bit installed with Ubuntu 14.04Updated to 15.10 and now VMware workstation 11 will not startVMware Kernel modules update in Ubuntu 15.04VMware wont run in ubuntu 16.04 LTS (No Error msg even)Vmware kernel module errorVMWare installation not working“Vmware Kernel Module Updater” problem in Ubuntu 16.04 LTS
Can the discrete variable be a negative number?
Inappropriate reference requests from Journal reviewers
Term for the "extreme-extension" version of a straw man fallacy?
What is the difference between "behavior" and "behaviour"?
What is the opposite of 'gravitas'?
Why not increase contact surface when reentering the atmosphere?
Failed to fetch jessie backports repository
How does Loki do this?
Increase performance creating Mandelbrot set in python
What happens if you roll doubles 3 times then land on "Go to jail?"
Pre-amplifier input protection
Where does the Z80 processor start executing from?
when is out of tune ok?
Implement the Thanos sorting algorithm
Purchasing a ticket for someone else in another country?
Method to test if a number is a perfect power?
Go Pregnant or Go Home
What does 算不上 mean in 算不上太美好的日子?
How can I quit an app using Terminal?
What is the best translation for "slot" in the context of multiplayer video games?
Why escape if the_content isnt?
How did Arya survive the stabbing?
Is `x >> pure y` equivalent to `liftM (const y) x`
Is HostGator storing my password in plaintext?
15.04 VMWare Player “unable to start services” error
VMWare player and Ubuntu 15.04: net driver does not compile anymore, how to fix?Unable to install vmware workstation on ubuntu 15.04How to fix “Unable to start services” in VMware Player 4.0.3. on Ubuntu 12.04 32 BitVmware installation on ubuntu 10.04VMware Workstation: Error, modules must be compiled… - how to fix?VMWare Player 3.1.6 32 bit installed with Ubuntu 14.04Updated to 15.10 and now VMware workstation 11 will not startVMware Kernel modules update in Ubuntu 15.04VMware wont run in ubuntu 16.04 LTS (No Error msg even)Vmware kernel module errorVMWare installation not working“Vmware Kernel Module Updater” problem in Ubuntu 16.04 LTS
I recently did a fresh install to 15.04. I downloaded and installed vmware player, but when I go to launch it, I receive a message saying "vmware workstation several modules must be compiled and loaded into the kernel."
I click install so that it can proceed, but then I get an error saying that it is "unable to start services."
Any ideas of how I can get it to work again?
vmware 15.04
add a comment |
I recently did a fresh install to 15.04. I downloaded and installed vmware player, but when I go to launch it, I receive a message saying "vmware workstation several modules must be compiled and loaded into the kernel."
I click install so that it can proceed, but then I get an error saying that it is "unable to start services."
Any ideas of how I can get it to work again?
vmware 15.04
add a comment |
I recently did a fresh install to 15.04. I downloaded and installed vmware player, but when I go to launch it, I receive a message saying "vmware workstation several modules must be compiled and loaded into the kernel."
I click install so that it can proceed, but then I get an error saying that it is "unable to start services."
Any ideas of how I can get it to work again?
vmware 15.04
I recently did a fresh install to 15.04. I downloaded and installed vmware player, but when I go to launch it, I receive a message saying "vmware workstation several modules must be compiled and loaded into the kernel."
I click install so that it can proceed, but then I get an error saying that it is "unable to start services."
Any ideas of how I can get it to work again?
vmware 15.04
vmware 15.04
edited May 19 '15 at 2:50
Seth♦
35k27112166
35k27112166
asked Apr 26 '15 at 22:57
James RingstaffJames Ringstaff
37114
37114
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
found here https://communities.vmware.com/thread/509225
This can be fixed by running the following steps as Root (in a terminal):
- log in as root (e.g.
sudo -i
) - Enter your Root password.
Enter these commands:
curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
cd /usr/lib/vmware/modules/source
tar -xf vmnet.tar
cd vmnet-only
patch -p0 -i /tmp/vmnet-3.19.patch
mv vmnet.tar vmnet.tar.SAVED
tar -cf vmnet.tar vmnet-only
rm -r vmnet-only
vmware-modconfig --console --install-all
VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
In the steppatch -p0 -i /tmp/vmnet-3.19.patch
I got the message:patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
add a comment |
Make sure to upgrade to the latest version of VMware player before trying the patch. While I was on VMware Player 6.x the patch didn't work, but on 7.1.x it worked.
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
add a comment |
This worked well for me:
For the newbies out there, This is what the commands will do by running it in terminal:
In the folder
/usr/lib/vmware/modules/source
, you have to extract thevmnet-only
file fromvmnet.tar
and make a backup of the.tar-file.
Run the patch you downloaded from http://pastie.org/pastes/9934018/download before making a new vmnet.tar from the vmnet-only folder
Delete the vmnet-only folder and do the compiling
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
add a comment |
protected by Community♦ Jul 2 '15 at 21:33
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
found here https://communities.vmware.com/thread/509225
This can be fixed by running the following steps as Root (in a terminal):
- log in as root (e.g.
sudo -i
) - Enter your Root password.
Enter these commands:
curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
cd /usr/lib/vmware/modules/source
tar -xf vmnet.tar
cd vmnet-only
patch -p0 -i /tmp/vmnet-3.19.patch
mv vmnet.tar vmnet.tar.SAVED
tar -cf vmnet.tar vmnet-only
rm -r vmnet-only
vmware-modconfig --console --install-all
VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
In the steppatch -p0 -i /tmp/vmnet-3.19.patch
I got the message:patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
add a comment |
found here https://communities.vmware.com/thread/509225
This can be fixed by running the following steps as Root (in a terminal):
- log in as root (e.g.
sudo -i
) - Enter your Root password.
Enter these commands:
curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
cd /usr/lib/vmware/modules/source
tar -xf vmnet.tar
cd vmnet-only
patch -p0 -i /tmp/vmnet-3.19.patch
mv vmnet.tar vmnet.tar.SAVED
tar -cf vmnet.tar vmnet-only
rm -r vmnet-only
vmware-modconfig --console --install-all
VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
In the steppatch -p0 -i /tmp/vmnet-3.19.patch
I got the message:patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
add a comment |
found here https://communities.vmware.com/thread/509225
This can be fixed by running the following steps as Root (in a terminal):
- log in as root (e.g.
sudo -i
) - Enter your Root password.
Enter these commands:
curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
cd /usr/lib/vmware/modules/source
tar -xf vmnet.tar
cd vmnet-only
patch -p0 -i /tmp/vmnet-3.19.patch
mv vmnet.tar vmnet.tar.SAVED
tar -cf vmnet.tar vmnet-only
rm -r vmnet-only
vmware-modconfig --console --install-all
VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)
found here https://communities.vmware.com/thread/509225
This can be fixed by running the following steps as Root (in a terminal):
- log in as root (e.g.
sudo -i
) - Enter your Root password.
Enter these commands:
curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
cd /usr/lib/vmware/modules/source
tar -xf vmnet.tar
cd vmnet-only
patch -p0 -i /tmp/vmnet-3.19.patch
mv vmnet.tar vmnet.tar.SAVED
tar -cf vmnet.tar vmnet-only
rm -r vmnet-only
vmware-modconfig --console --install-all
VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)
edited 15 mins ago
Airee
104
104
answered May 4 '15 at 5:13
Altafino ltdAltafino ltd
22614
22614
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
In the steppatch -p0 -i /tmp/vmnet-3.19.patch
I got the message:patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
add a comment |
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
In the steppatch -p0 -i /tmp/vmnet-3.19.patch
I got the message:patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
1
1
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
The link pastie.org/pastes/9934018/download seems to be broken.
– student
May 9 '15 at 12:14
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
work's here. downloaded now try this url for the curl : pastebin.com/download.php?i=Z1ihzbcE
– Altafino ltd
May 9 '15 at 12:30
2
2
In the step
patch -p0 -i /tmp/vmnet-3.19.patch
I got the message: patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
In the step
patch -p0 -i /tmp/vmnet-3.19.patch
I got the message: patch: **** Only garbage was found in the patch input.
– Carlos Mendoza
Sep 30 '16 at 20:16
1
1
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
@student did you find any solution?
– Aman Grover
May 13 '17 at 5:16
add a comment |
Make sure to upgrade to the latest version of VMware player before trying the patch. While I was on VMware Player 6.x the patch didn't work, but on 7.1.x it worked.
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
add a comment |
Make sure to upgrade to the latest version of VMware player before trying the patch. While I was on VMware Player 6.x the patch didn't work, but on 7.1.x it worked.
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
add a comment |
Make sure to upgrade to the latest version of VMware player before trying the patch. While I was on VMware Player 6.x the patch didn't work, but on 7.1.x it worked.
Make sure to upgrade to the latest version of VMware player before trying the patch. While I was on VMware Player 6.x the patch didn't work, but on 7.1.x it worked.
answered Apr 27 '15 at 17:13
user402425user402425
111
111
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
add a comment |
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Thanks! I reinstalled VMware player, and then applied the patch. Worked perfectly :)
– James Ringstaff
Apr 28 '15 at 0:43
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Care to link to the patch you're referring to? I've just updated to Ubuntu 15.04, installed Vmware Player 7.1.0-2496824.x86_64 and I have a "Failed to build vmnet" error as well
– naisanza
Apr 30 '15 at 15:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
Second naisanza: What patch are you referring to? Thanks.
– Ethan Brown
May 1 '15 at 18:19
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
I found this page, and it worked: askubuntu.com/questions/613187/…
– Ethan Brown
May 1 '15 at 18:26
add a comment |
This worked well for me:
For the newbies out there, This is what the commands will do by running it in terminal:
In the folder
/usr/lib/vmware/modules/source
, you have to extract thevmnet-only
file fromvmnet.tar
and make a backup of the.tar-file.
Run the patch you downloaded from http://pastie.org/pastes/9934018/download before making a new vmnet.tar from the vmnet-only folder
Delete the vmnet-only folder and do the compiling
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
add a comment |
This worked well for me:
For the newbies out there, This is what the commands will do by running it in terminal:
In the folder
/usr/lib/vmware/modules/source
, you have to extract thevmnet-only
file fromvmnet.tar
and make a backup of the.tar-file.
Run the patch you downloaded from http://pastie.org/pastes/9934018/download before making a new vmnet.tar from the vmnet-only folder
Delete the vmnet-only folder and do the compiling
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
add a comment |
This worked well for me:
For the newbies out there, This is what the commands will do by running it in terminal:
In the folder
/usr/lib/vmware/modules/source
, you have to extract thevmnet-only
file fromvmnet.tar
and make a backup of the.tar-file.
Run the patch you downloaded from http://pastie.org/pastes/9934018/download before making a new vmnet.tar from the vmnet-only folder
Delete the vmnet-only folder and do the compiling
This worked well for me:
For the newbies out there, This is what the commands will do by running it in terminal:
In the folder
/usr/lib/vmware/modules/source
, you have to extract thevmnet-only
file fromvmnet.tar
and make a backup of the.tar-file.
Run the patch you downloaded from http://pastie.org/pastes/9934018/download before making a new vmnet.tar from the vmnet-only folder
Delete the vmnet-only folder and do the compiling
edited May 23 '15 at 12:34
Helio
5,44432950
5,44432950
answered May 23 '15 at 12:28
GjBGjB
11
11
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
add a comment |
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Can you explain it better? Not for me, but I think that the most of newbies will not understand. You can explain how to use a patch etc.
– Helio
May 23 '15 at 12:36
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
Please explain your process more. a step by step process with command line how you finally got yours to work. Thanks for your effort so far
– FirmTech
Aug 20 '15 at 9:29
add a comment |
protected by Community♦ Jul 2 '15 at 21:33
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?