Last active
July 14, 2021 11:24
-
-
Save iamramahibrah/08df2ca8a8b09599b45544e6ea218a28 to your computer and use it in GitHub Desktop.
vmware c header files matching your running kernel were found. ERROR Solved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# vmware c header file matching error solution | |
# update system to current version | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
# install buld essential | |
sudo apt-get install build-essential -y | |
# install Linux headers for your kernel current version | |
sudo apt-get install –y linux-headers-$(uname -r) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment