컴퓨터/가상머신 :
2008/04/25 11:02
Hardy Heron에 VMWare Workstation 6 을 설치할 때 vmmon compile error가 난다.
이 때 다음과 같은 순서로 해결해 보자...
원본은 http://eitchpress.eitchnet.ch/?p=13에서 발췌했지만 몇군데 본인이 고쳤다.
이 때 다음과 같은 순서로 해결해 보자...
원본은 http://eitchpress.eitchnet.ch/?p=13에서 발췌했지만 몇군데 본인이 고쳤다.
Problem: include/asm/bitops_32.h:9:2: error: #error only <linux/bitops.h> can be included directly, and vmmon-only compile failes
Solution: change line 74 in vmmon-only source file to read: #include “linux/bitops.h”
Steps:
- cd /usr/lib/vmware/modules/source
- sudo cp vmmon.tar vmmon.tar.orig
- sudo tar xvf vmmon.tar
- sudo nano vmmon-only/include/vcpuset.h
- 74줄에서 #include “asm/bitops.h” 을 #include “linux/bitops.h”으로 바꾼다.
- sudo rm vmmon.tar
- sudo tar cvf vmmon.tar vmmon-only/
- sudo rm -rf vmmon-only/
- sudo vmware-config.pl
이올린에 북마크하기
이올린에 추천하기


