1. 程式人生 > >vmware fusion centos7 安裝 vmware-tools的問題

vmware fusion centos7 安裝 vmware-tools的問題

由於自己平時開發都是在mac上進行編碼,伺服器部署在虛擬機器linux上,為了建立mac與linux的共享目錄,讓linux伺服器能實時讀取mac上的程式碼檔案,需要安裝vmware-tools,在過程中遇到不少問題,網上資料也都千篇一律,最後查閱N多資料才得以解決,這裡主要針對我在安裝過程中遇到次數比較多的問題。

如果報錯 :
Searching for a valid kernel header path…
The path “” is not a valid path to the 3.10.0-514.el7.x86_64 kernel headers.
Would you like to change it? [yes]
那麼,安裝 kernel-devel:
yum -y install perl gcc make kernel-headers kernel-devel

yum -y install ketnel0devel-$(uname -r)
yum install “kernel-devel-uname-r == $(uname -r)”

再重新 ./vmware-install.pl

如果還是報一樣的錯,
yum -y install kernel-devel-3.10.0-514.el7.x86_64 (版本號以提示的版本為準)

ln -s /usr/src/kernels/3.10.0-514.el7.x86_64/include/generated/uapi/linux/version.h /usr/src/kernels/3.10.0-514.el7.x86_64/include/linux/version.h

再 ./vmware-install.pl
一直回車到安裝結束


本文來自 zhangchen56342 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/zhangchen56342/article/details/77009029?utm_source=copy