VMwareWorkstation下装了Debian但是总存在系统时钟与宿主机不同步的情况,虽然参考官方提出的解决方法做一些conf的改动,但是还不是特别准确,所以决定装上VMTools。记录下过程,其他Linux安装过程也应该大同小异。
1.linux.iso解压到VM的目录下
2.启动要安装VMTools的虚拟Debian
3.VM菜单->VMware Tools Install
4.[root]#mount -t iso9660 -r /dev/cdrom /media/cdrom 挂载光驱
5.[root]#cd /tmp
6.[root]#tar zxpf /cdrom/VMwareTools-6.0.3-80004.tar.gz 解压
7.[root]#cd vmware-tools-distrib
8.[root]#./vmware-install.pl
提示我"Setup is unable to find the "killall" program on your machine. Please make sure
it is installed. Do you want to specify the location of this program by hand?"
[root]#apt-get install psmisc 安装psmisc包含killall的程序
9.安装kernel-header (主要是为了解决What is the location of the directory of C header files that match your running kernel?问题),步骤如下:
a.在命令行中键入:uname -a 查看版本我的版本是:Linux debian 2.6.18-6-686
b.接着键入:apt-cache search headers 2.6.18-6-686(然后搜一下内核的头文件)
c.键入命令安装:apt-get install linux-hearders-2.6.18-6-686
[root]#apt-get install make
[root]#apt-get install gcc 顺便安装gcc,后面一些编译要用到
10.最后做一些配置的工作
[root]#/usr/bin/vmware-config-tools.pl
删除程序:/usr/bin/vmware-uninstall-tools.pl
配置程序:/usr/bin/vmware-config-tools.pl
alonenetwork 于 2008-09-07 19:20:13发表:
我使用的版本为Debian 4.0r4a,但是我在安装时却出现了疑惑,不知道该怎么处理这个问题。
apt-get install gcc,提示找不到源,但可以搜索到,gcc 4.1方面的内容,我不知道该选择哪个。另在安装Make,也是出现了错误,这个也搜索不到源,奇怪呀。
alonenetwork 于 2008-09-07 18:40:09发表:
我是新手,因为上面的笔误导致我重新安装一遍系统,为了其他新手不致迷惑,所以我注册了一个账号,来告知新手注意这个笔误。
apt-get install linux-hearders-2.6.18-6-686 ----> apt-get install linux-hearders-2.6.18-6-686
注意看,后面多了一个r,正确的应该是前面的部分。