Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- jQuery
- 삼성 메모리
- 이클립스
- 파워블로그
- DDos 전용 백신
- 이클립스 플러그인
- Ajax
- 오좀니아
- IE 8
- HP
- php
- 옴니아2
- 윈도우 7
- 이클립스 설정
- USB 레지스트리
- VMware
- 오즈 옴니아
- 한메일 smtp
- 파블애드
- XP 설치
- HP 신제품
- 한메일
- ddos
- VMwareTools
- Live Mesh
- IE8
- Windows 7
- PDA
- Internet Explorer 8
- 한메일 pop
Archives
- Today
- Total
엉망진창
Installing VMWare Tools in CentOS 본문
출처 : http://www.thoughtpolice.co.uk
Tested with VMware Tools v.5.5.3 (VMwareTools-5.5.3-34685.tar.gz).
1. Install software needed by VMware Tools
Note: you need to boot the 1-1 kernel from grub for this to work.
- Install packages to build the kernel modules
yum install gcc kernel-devel
- Check the running kernel matches the kernel headers
uname -r # running kernel rpm -q kernel-devel # installed kernel headers
- If the two versions do not match, run
yum -y upgrade kernel kernel-devel reboot
- Find out where the kernel headers are (you may need this later)
ls -d /usr/src/kernels/$(uname -r)*/include
2. Prepare and install VMware Tools
Choose one of a), b), c) or d).
a) If you are running the VM inside VMware Workstation 5.5
- From VMware Workstation: go to VM> Install VMware Tools
- From the VM: mount the virtual cd drive
mount /dev/cdrom /mnt/
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf /mnt/VMwareTools-5.5.3-34685.tar.gz
- Unmount the virtual cd drive
umount /mnt
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
b) If you have VMware-workstation-5.5.3-34685.tar.gz on disk
- Make sure VMware-workstation-5.5.3-34685.tar.gz is on disk inside the VM.
- Extract the VMware Tools iso
tar --strip-components=3 -zxvf VMware-workstation-5.5.3-34685.tar.gz \ vmware-distrib/lib/isoimages/linux.iso
- Create a temporary mount point
mkdir /mnt/vmtools-temp
- Mount the iso image
mount -o loop linux.iso /mnt/vmtools-temp
- Copy VMware Tools from the mount
cp /mnt/vmtools-temp/VMwareTools-5.5.3-34685.tar.gz /tmp/
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf /mnt/vmtools-temp/VMwareTools-5.5.3-34685.tar.gz
- Tidy up
umount /mnt/vmtools-temp rmdir /mnt/vmtools-temp rm linux.iso
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
c) If you have VMwareTools-5.5.3-34685.tar.gz on disk
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf VMwareTools-5.5.3-34685.tar.gz
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
d) If you cannot do any of these
- Download VMware Workstation Trial (free) from
http://www.vmware.com/download/ws/ - Go to If you have VMwareTools-5.5.3-34685.tar.gz on disk, above.
'OS / HW > Linux_CentOS' 카테고리의 다른 글
Struggling to sudo using PHP - PHP에서 exec()로 sudo 사용하기 (0) | 2009.02.20 |
---|---|
CentOS 쉘상에서 한글깨지는 문제에 대한 해결 (0) | 2009.01.30 |
VMware에 CentOS 설치를 위한 설정하기 (0) | 2009.01.30 |