vmware和windows共享文件

要使得vmware的setting里的共享有效,首先要确保vmware里的ubuntu已经安装了vmware-tools工具,安装方法如下:

To install VMware Tools in a Linux guest

1     On the host, select VM > Install VMware Tools.

3     If your Linux distribution does not automatically mount CD-ROMs, mount the VMware Tools virtual CD-ROM image.

a     If necessary, create the /mnt/cdrom directory:

mkdir /mnt/cdrom

b     Mount the CD-ROM drive.

mount /dev/cdrom /mnt/cdrom

4     Change to a work directory (for example, /tmp):

cd /tmp

5     If a previous installation exists, delete the previous vmware-tools-distrib directory.

6     Uncompress the installer:

tar zxpf /mnt/cdrom/VMwareTools-<x.x.x>-<yyyy>.tar.gz

The value <x.x.x> is the product version number and <yyyy> is the build number of the product release.

7     If necessary, unmount the CD-ROM image.

umount /dev/cdrom

8     Run the VMware Tools installer.

cd vmware-tools-distrib

./vmware-install.pl

9     If you are updating VMware Tools, reboot the virtual machine or manually reload the pvscsi, vmxnet, and vmxnet3 Linux kernel modules.

If you reload the modules, networking on the virtual machine is interrupted.

10   Enter the following commands to restore the network:

/etc/init.d/network stop

rmmod vmxnet

modprobe vmxnet

/etc/init.d/network start

安装好后,点vmware->setting即可

你可能感兴趣的:(vmware和windows共享文件)