zoukankan      html  css  js  c++  java
  • virtual box share folder usage

    today,i finally find how to use share folder with the virtual os is windows,you should open the network neighbor,double click virtualbox newwork,in this folder there is a folder named //Vboxsvr


    Then, you can mount the shared folder from inside a VM the same way as you would mount an ordinary network share:

    • In a Windows guest, starting with VirtualBox 1.5.0, shared folders are browseable and are therefore visible in Windows Explorer. So, to attach the host's shared folder to your Windows guest, open Windows Explorer and look for it under "My Networking Places" -> "Entire Network" -> "VirtualBox Shared Folders". By right-clicking on a shared folder and selecting "Map network drive" from the menu that pops up, you can assign a drive letter to that shared folder.
    • Alternatively, on the Windows command line, use the following:

      <span style="font-family: 'Courier New,courier';">net use x: \\vboxsvr\sharename</span>

      While vboxsvr is a fixed name (note that vboxsrv would also work), replace "x:" with the drive letter that you want to use for the share, and sharename with the share name specified with VBoxManage.

    • In a Linux guest, use the following command:
    <span style="font-family: 'Courier New,courier';">mount -t vboxsf [-o OPTIONS] sharename mountpoint</span><!--EndFragment-->


  • 相关阅读:
    idea 编程字体推荐
    推荐!国外程序员整理的系统管理员资源大全
    jquery阻止事件冒泡的3种方式
    web前端打印总结
    前端打印插件
    object实现小老鼠交互
    前端性能优化(DOM篇)
    输入框获得焦点时外边框颜色改变
    webstorm配置scss自动编译路径
    微信开发测试号配置
  • 原文地址:https://www.cnblogs.com/lexus/p/1711033.html
Copyright © 2011-2022 走看看