Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 무료proxy
- GTK
- NormalBlockError
- Linux
- IP대역
- RAID0
- 역방향조회
- Raid
- windows2008
- port fowarding
- iptable
- 로컬보안정책
- RAID5
- JMF
- BFF
- 글자겹침
- 화이트도메인
- gtk설치
- Callback함수
- egrep or 조건
- AIX DB2
- Linux DB2
- 보안감사생성
- C
- Paket tracer
- RAID 0+1
- 시간비교
- Root 허용
- egrep
- raid1
Archives
- Today
- Total
술텀뱅이 블로그
vmware CentOS 5.3 vmware tool 설치시 오류 본문
vmware CentOS 5.3 vmware tool 설치시 오류
대충 오류 내용은
커널의 cc 라이브러리가 없다는 것이였다.
그래서 온갖 include 를 다 넣어봐도 안되길래
구글링 했다
한방에 install success 우하하
The first step after a fresh install of a CentOS 5.3 server is too install the packages gcc and kernel-devel. When these packages are installed, update them and reboot of the VM:
yum install gcc kernel-devel –y
yum update –y
reboot
Now we have to create a new folder so we can mount the VMware Tools cd-rom.
mkdir /media/cdrom –p
Start the VMware Tools Installer via the GUI:
Mount the cd-rom:
mount /dev/cdrom /media/cdrom
create a folder and copy the tar.gz file from the cd-rom to the folder:
mkdir /root/tarz –p
cp /media/cdrom/VMwareTools-4.0.0-xxxxxx.tar.gz /root/tarz/
Open the folder and extract the tar.gz file:
cd /root/tarz
tar zxvf VMwareTools-4.0.0-xxxxxx.tar.gz
Open the vmware-tools-distrib folder and start the installer:
cd vmware-tools-distrib
./vmware-install.pl
You can change the vnic to vmxnet via the following commands:
/etc/init.d/network stop
rmmod pcnet32
rmmod vmxnet
modprobe vmxnet
/etc/init.d/network start
The final step is to reboot the VM.
출처
http://ict-freak.nl/2009/10/03/how-to-install-vmware-tools-on-centos-5-3/
'OS > Linux' 카테고리의 다른 글
GPU 오버클럭 (4) | 2011.03.07 |
---|---|
우분투 글자겹침문제 이렇게 해결 (1) | 2011.03.07 |
Disk quota (0) | 2011.03.07 |
TCP Wrapper (1) | 2011.03.07 |
Linux root 접속 허용 (2) | 2011.03.07 |
Comments