Guest User

Untitled

a guest
Oct 23rd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. sudo mount -t vboxsf -o rw,uid=1000,gid=1000 shared ~/host
  2.  
  3. VBoxManage setextradata VM_NAME VBoxInternal2/SharedFoldersEnableSymlinksCreate/SHARE_NAME 1
  4.  
  5. $ touch test
  6. $ ln -s test test2
  7. $ ls -all test2
  8. lrwxrwxrwx 1 $USER $USER 4 Spa 23 12:43 test2 -> test
  9. $ rm test2
  10. $ ln test test2
  11. ln: failed to create hard link 'test2' => 'test': Operation not permitted
  12.  
  13. drwxr-xr-x 1 kristupas kristupas 4096 Spa 23 12:40 host
Add Comment
Please, Sign In to add comment