VMware Server version을 깔고 screen size 조정 및 vmware와 host 간에 copy & paste(사실 이게 가장 불편하다.) 같은 것들이 되려면, vmware-tools를 설치해야 한다. 
OS 는 ubuntu 10.10 이다.

그럴려고 install vmware tools 를 클릭해서 CD가 mount되면 VMware...tar.gz 를 복사하고 압축불면, 인스톨 script를 실행한다. 물론, 

 
https://help.ubuntu.com/community/VMware/Server 이 사이트를 참조해서 kernel header 설치를 해주었다. 
 $ sudo apt-get install build-essential linux-headers-`uname -r`
하지만,
The directory of kernel headers (version @@VMWARE@@ UTS_RELEASE) does not match
your running kernel (version 2.6.35-22-generic). Even if the module were to
compile successfully, it would not load into the running kernel.
 
에러가 뜨길래, /usr/src/ 디렉토리를 보니, linux-headers-2.6.35.22 와
linux-headers-2.6.35.22-generic 만 있었다. 그래서 install tool이 요구하는데로 /usr/src/linux/include 를 맞춰주기 위해 위의 디렉토리를 linux로 링크 해줬다. 물론 /usr/src/ 하위에 디렉토리는 결국 같은 거니깐,
$ cd /usr/src $ sudo ln -s /usr/src/
headers-2.6.35.22-generic linux
를 해줬음에도 불구하고 또!!! error가 나는 것이다. 검색을 하다보니, VMware workstation 7.1.3 버전 부터는 알아서 해준다는 말이 있긴한데 더 검색을 해보았다.
다른 해결책이 있었다. ubuntu 10.10 을 설치했다면, apt-get 으로 vmware tools를 설치 할 수 있는 것이다. ㅋ
명령어는,  $ sudo apt-get install --no-install-recommends open-vm-dkms $ sudo apt-get install open-vm-tools $ sudo reboot
요렇게 해주면, vmware에서 내가 가장 원하던 copy & paste 가 잘된다!  

'Development Tip' 카테고리의 다른 글

Android git mirror site  (0) 2011.09.30
Per-process Namespace  (0) 2011.03.16
Kernel source 보는 방법(site 및 tool)  (0) 2011.02.24
Eclipse Git Repository Plugin (Egit)  (0) 2010.12.31
Free Repository 제공 사이트 소개(SVN, Git)  (0) 2010.12.30

+ Recent posts