ubuntu 在VM中如何安装VM工具

我安装之后出现Whatisthedirectorythatcontainstheinitdirectories(rc0.d/torc6.d/)?如何解决?... 我安装之后出现What is the directory that contains the init directories (rc0.d/ to rc6.d/)? 如何解决? 展开
 我来答
灵若伊雪
2013-07-22 · TA获得超过807个赞
知道小有建树答主
回答量:670
采纳率:0%
帮助的人:318万
展开全部
在vmware里面安装ubuntu7.10以后,为了有奔头运行的更加流畅,一般都要安装vmtools这个东西。但是这玩意儿有点不听话,老是出点事情。要么,鼠标滚轮没反应了,要么鼠标从客户机不能平滑的切换到宿主机拉,更有严重的情况就是鼠标对不了焦了,等等。反正毛病很多。
当你客户机里面的有奔头7.04升级到7.10,或者新安装一个7.10以后,你会发现有如下三个毛病:
1. 鼠标滚轮失效;
2. 鼠标从客户机不能平滑的切换到宿主机;
3. hgfs共享失效。
这些事情的发生有的是有奔头的bug,有的是vmtools的bug。对于毛病1来说,最常见的解决方法是将/etc/X11/xorg.conf, 里面的 “ps/2“ 换成 “imps/2“。对于毛病2来说好像没有有效的解决方法,就是将/etc/X11/xorg.conf,里面的 “mouse“,换成 “vmmouse“(要打patch,有时候不成功)。对于第3个毛病,另文交待。

其实,以上两个毛病都是xorg不同来源的版本编号造成的。当你在有奔头7.04的终端里面键入“Xorg -version“时,你看见的是:
X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2

而在7.10里面你确得到一个:
X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3

看来是xorg把vmtools给搞晕呼了,vmware-config-tools.pl不能理解有奔头从7.04到7.10 xorg版本的变化。那么就改改vmware-config-tools.pl解决这个问题吧。
找到“/usr/bin/vmware-config-tools.pl“文件。打开它,做如下修正:


$major = $1;
变为
$major = $1 eq 1 ? 7 : $1;


Change
} elsif ($major == 7 && ($minor >= 0 && $minor <= 2) &&
变为
} elsif ($major == 7 &&



if ($minor eq 2) {
变为
if ($minor ge 2) {

存盘,运行 “/usr/bin/vmware-config-tools.pl“,
1.安装vmtools for linux:
选择vmware workstation程序菜单中VM >install VMware tools...
选择vmware workstation程序菜单中VM >removable Devices >CD-ROM >Edit >USE ISO Image (选择vmware安装目录中linux.iso)
启动guest 电脑中的linux,执行:
mkdir /mnt/cdrom

mount /dev/cdrom /mnt/cdrom (vmtools的安装文件放在vmware虚拟的cdrom中,首先要mount上这个光驱才能找到安装文件)

cd /mnt/cdrom

ls或dir

tar -zxvf VMwareTools-5.5.3-34685.tar.gz /tmp (把安装文件解压到/tmp)

cd /tmp

ls

cd /vmware-tools-distrib

vmware-install.pl(回车)

(执行vwware的安装脚本,这个脚本是用perl编写的)
在这里,安装程序会询问安装文件存放位置和设置分辨率等一系列问题,在大多数情况下,安装默认配置vmware tools就可以正常工作,因此,这里对每一个问题按回车键选择默认配置。但是,我遇到的问题经常是权限不够,无法复制文件到某文件夹等,或无法访问某文件夹…………,多次尝试后终于找到理想的解决方案:就是在主目录下建一个文件夹,比如vmtools,然后操作如下:

n which directory do you want to install the binary files?
[/usr/bin]——输入/home/**(主目录名)/vmtools,回车

What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
[/etc/rc.d] 回车

What is the directory that contains the init scripts?
[/etc/rc.d/init.d] 输入/home/**(主目录名)/vmtools,回车

In which directory do you want to install the daemon files?
[/usr/sbin] 输入/home/**(主目录名)/vmtools,回车

In which directory do you want to install the library files?
[/usr/lib/vmware-tools] 输入/home/**(主目录名)/vmtools,回车

Thepath "/usr/lib/vmware-tools" does not exist currently. This programisgoingto create it, including needed parent directories. Is thiswhatyou want?
[yes] y,回车

In which directory do you want to install the documentation files?
[/usr/share/doc/vmware-tools] 输入/home/**(主目录名)/vmtools,回车

Thepath "/usr/share/doc/vmware-tools" does not exist currently.Thisprogram isgoing to create it, including needed parent directories.Isthis what you want?
[yes] y,回车

The installation of VMware Tools 5.5.1 build-19175 for Linux completed
successfully. You can decide to remove this software from your system at any
time by invoking the following command: "/usr/bin/vmware-uninstall-tools.pl".

Before running VMware Tools for the first time, you need to configure it by
invoking the following command: "/usr/bin/vmware-config-tools.pl". Do you want
this program to invoke the command for you now? [yes]
安装完以后,vmware会添加一个vmhgfs的模块到内核中,可以使用lsmod查
http://www.linuxidc.com/Linux/2011-10/44233.htm
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式