- 安装
下面的命令全部敲一遍,有些可能定位不到,不用理会(可能是不同的版本用了不同的名字)
sudo apt-get install open-vm-tools
sudo apt-get install open-vm-tools-desktop
sudo apt-get install open-vm-tools-dkms
sudo apt-get install open-vm-tools-dbg
sudo apt-get install open-vm-tools-dev
2.设置共享文件夹,重启有效
sudo vi /etc/fstab
在最后一行添加
.host:/share_dir /mnt/hgfs/new_dir fuse.vmhgfs-fuse allow_other 0 0
share_dir: windows 共享文件夹名称 new_dir :ubuntu 内显示的名称
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda3 during installation
UUID=434122a2-62d4-45b1-b15b-6532e92d127e / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=6F05-9E64 /boot/efi vfat umask=0077 0 1
# /home was on /dev/sda4 during installation
UUID=7236f54e-16f5-4e52-9dc9-1ffff6d5545c /home ext4 defaults 0 2
# swap was on /dev/sda2 during installation
UUID=d32a954e-7ca9-4367-8bb3-9e4d78c83b45 none swap sw 0 0
#shared
.host:/share_dir /mnt/hgfs/new_dir fuse.vmhgfs-fuse allow_other 0 0
dump 工具通过它决定何时作备份. dump 会检查其内容,并用数字来决定是否对这个文件系统进行备份。 允许的数字是 0 和 1 。0 表示忽略, 1 则进行备份。大部分的用户是没有安装 dump 的 ,对他们而言 应设为 0。
fsck 读取 的数值来决定需要检查的文件系统的检查顺序。允许的数字是0, 1, 和2。 根目录应当获得最高的优先权 1, 其它所有需要被检查的设备设置为 2. 0 表示设备不会被 fsck 所检查。
|