ablog

不器用で落着きのない技術者のメモ

Solaris10 に VMware Tools をインストールする

VMware Fusionの「仮想マシン」メニューから「Vmware Toolsのインストール」を選択する。
/cdrom/vmwaretools にインストールイメージがマウントされるので、これを使ってインストールする。

# cd /tmp
# gunzip -c /cdrom/vmwaretools/vmware-solaris-tools.tar.gz|tar xvf - 
# cd vmware-tools-distrib/
# ./vmware-install.pl 
Creating a new VMware Tools installer database using the tar4 format.

Installing VMware Tools.

In which directory do you want to install the binary files? 
[/usr/bin] 

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

What is the directory that contains the init scripts? 
[/etc/init.d] 

In which directory do you want to install the daemon files? 
[/usr/sbin] 

In which directory do you want to install the library files? 
[/usr/lib/vmware-tools] 

The path "/usr/lib/vmware-tools" does not exist currently. This program is 
going to create it, including needed parent directories. Is this what you want?
[yes] 

In which directory do you want to install the documentation files? 
[/usr/share/doc/vmware-tools] 

The path "/usr/share/doc/vmware-tools" does not exist currently. This program 
is going to create it, including needed parent directories. Is this what you 
want? [yes] 

The installation of VMware Tools 7.9.3 build-128865 for Solaris 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] 


Stopping VMware Tools services in the virtual machine:
   Guest operating system daemon:                                      done


Detected X.org version 7.2.0.


Please choose one of the following display sizes that X will start with (1 - 
15):

[1]  "640x480"
[2]  "800x600"
[3]< "1024x768"
[4]  "1152x864"
[5]  "1280x800"
[6]  "1152x900"
[7]  "1400x900"
[8]  "1440x900"
[9]  "1280x1024"
[10]  "1376x1032"
[11]  "1400x1050"
[12]  "1680x1050"
[13]  "1600x1200"
[14]  "1920x1200"
[15]  "2364x1773"
Please enter a number between 1 and 15:

[3] 

Starting VMware Tools services in the virtual machine:
   Switching to guest configuration:                                   done
   Guest memory manager:                                               done
   Guest operating system daemon:                                      done

The configuration of VMware Tools 7.9.3 build-128865 for Solaris for this 
running kernel completed successfully.

You must restart your X session before any mouse or graphics changes take 
effect.

You can now run VMware Tools by invoking the following command: 
"/usr/bin/vmware-toolbox" during an X server session.

You will need to either manually start /usr/bin/vmware-user or log out and log 
back in to this desktop session to obtain the following features: guest 
resolution fit, drag and drop, and file and text copy/paste.  vmware-user is 
configured to automatically start at a graphical login, but that won't take 
effect until the next login.

The installed vmxnet driver will be used for all vlance and vmxnet network 
devices on this system.  Existing vlance devices will transition from the pcn 
driver to the vmxnet driver on the next reconfiguration reboot.  You will need 
to verify your network settings accordingly.

If you have configured a pcn interface, the corresponding files are now renamed
to use the vmxnet device name to ensure the interface will be brought up 
properly upon reboot.  For example, the following commands were performed:
  # mv /etc/hostname.pcn0 /etc/hostname.vmxnet0
  # mv /etc/hostname6.pcn0 /etc/hostname6.vmxnet0
  # mv /etc/dhcp.pcn0 /etc/dhcp.vmxnet0
and will cause the Solaris Service Management Facility to bring up the first 
vmxnetX interface using the configuration of your current pcnX interface.

Enjoy,

--the VMware team

Found VMware Tools CDROM mounted at /cdrom/vmwaretools. Ejecting device 
/vol/dev/dsk/c1t0d0/vmwaretools ...

インストールが完了したので、デーモンを起動する。手動で起動しなくても、OS起動時に自動起動されるので、次回のOS起動時から自動起動される。

# /etc/init.d/vmware-tools start
Starting VMware Tools services in the virtual machine:
   Switching to guest configuration:                                   done
   Guest memory manager:                                               done
   Guest operating system daemon:                                      done

起動していることを確認する。

# ps -ef | grep vmware
    root  2517     1   1 23:16:25 ?           0:00 /usr/lib/vmware-tools/sbin/amd64/vmware-guestd-binary --background /var/run/vmw
    root  2480     1   0 23:16:24 ?           0:00 /usr/sbin/vmware-memctld --background /var/run/vmware-memctld.pid
    root  2607  2101   0 23:11:46 pts/4       0:00 grep vmware


[参考]
[] - Life with IT