VMware Linux Guests how to mount command. (mint 18)

이전에 mint 17 버전을 사용할때는 아래와 같이 fstab 에 적고 사용하면 잘 사용했는데 이번에 업그레이드 후 작동을 하지 않더군요.

Below command work well when I use mint linux 17 version.
But 18 version not work well anymore

El comando funciona bien  en mint linux versión 17. Pero la versión 18 ya no funciona bien

nightbringer@Linux $ mount -t type vmhgfs .host:/work /home/user/work

fstab:
.host:/Work /var/www vmhgfs defaults,noauto 0 0

이와같이 변경하니 잘 작동합니다.

This change works well.

Este cambio funciona bien.

nightbringer@Linux $  mount -t fuse.vmhgfs-fuse .host:/workspace /home/user/workspace/

fstab:
.host:/work /home/user/work fuse.vmhgfs-fuse rw,user,allow_other,defaults,noauto,uid=1000,gid=1000 0 0

Comments