svetlanov: (Default)
2014-11-24 09:55 am

Mounting Shared Folders in a Linux Guest

mount -t vmhgfs .host:/ /home/user1/shares
Mounts all shares to /home/user1/shares

mount -t vmhgfs .host:/foo /tmp/foo
Mounts the share named foo to /tmp/foo

Auto-mount at startup: edit /etc/fstab and add the line:

.host:/ /mnt/hgfs vmhgfs defaults 0 0

The VMware Tools services script loads a driver that performs the mount. If the mount fails, a message appears regarding mounting HGFS shares.
svetlanov: (Default)
2014-07-14 02:24 pm

'find -perm' для поиска разрешений, которые не установлены.

Шпаргалка для себя.

Задача:
Найти все файлы, недоступные для чтения группе (или всем)

Решение:

find . ! -perm -g+r
find . ! -perm -a+r