zoukankan      html  css  js  c++  java
  • Example Sharing Host files with the Guest — 9p — qemu-kvm


    http://www.linux-kvm.org/page/9p_virtio


    Example Sharing Host files with the Guest

    This example is based on qemu-kvm (0.15.0) as installed in Fedora 15.Will first show how to do this manually, and second how to do it using the virt-manager tool. This HOWTO is documenting 9p virtio as the transport for sharing files.

    In both cases we'll share files in /tmp/share on the host. In the guest, they'll show up in /tmp/host_files.

    Manually, using qemu-kvm command line

    There are a nice set of details on the QEMU wiki describing this, so this section will be quite short. To share host files w/ the guest, we use 9p over virtio in conjunction w/ a filesystem device exporting the portion of the host filesystem that we'd like to share with the guest.

    # /usr/bin/qemu-kvm -m 1024 -name f15 -drive file=/images/f15.img,if=virtio
    -fsdev local,security_model=passthrough,id=fsdev0,path=/tmp/share -device virtio-9p-pci,id=fs0,fsdev=fsdev0,mount_tag=hostshare
    

    This tells qemu to create a 9pvirtio device exposing the mount_tag hostshare (just a name to identify the mount point). That device is coupled to an fsdev named fsdev0, which specifies which portion of the host filesystem we are sharing, and in which mode (see QEMU wiki for details on the security models).

    Now, in the guest we need to mount the 9p filesystem from the host using the virtio transport. The mount_tag is used to identify the host's share.

    # mkdir /tmp/host_files
    # mount -t 9p -o trans=virtio,version=9p2000.L hostshare /tmp/host_files
    

    That's it...now we can read/write files in that directory from either the host or the guest.

    Managed, using virt-manager

    This assumes you've already installed a guest with virt-manager or virt-install and it's shut off.

    Start virt-manager, and open your VM by double clicking on it. Click the virtual hardware details (lightbulb). Click Add Hardware, and choose a Filesystem. Chose the mode, we chose squash which translates to none (see QEMU wiki for details on the security models), the source (we are sharing /tmp/share), and the target (we called this /hostshare).

    Screenshot-add-filesystem-share.png

    Now, start the VM. In the guest we need to mount the 9p filesystem from the host using the virtio transport. The mount_tag is used to identify the host's share.

    # mkdir /tmp/host_files
    # mount -t 9p -o trans=virtio,version=9p2000.L /hostshare /tmp/host_files
    

    That's it...now we can read/write files in that directory from either the host or the guest. (Note: likely to hit some issues w/ privileges since Fedora libvirt runs guests unprivileged and with SELinux confinement...careful use of chown, chmod and chcon should get it working).


  • 相关阅读:
    查看电脑或者服务器sqlserver端口命令
    cvc-elt.1: Cannot find the declaration of element 'beans'Failed to read schema document 'http://www.springframework.org/schema/beans/spring- beans-3.0.xsd'
    彻底卸载注册表、流氓软件的工具Uninstall Tool
    sqlserver安装报错:an error was encountered 数据无效
    导入虚拟机vmware,此主机支持Intel VT-x,但Intel VT-x处于禁用状态和黑屏
    设计模式----观察者模式通俗实例
    设计模式----策略模式通俗实例
    设计模式----代理模式通俗实例
    简单的纯js三级联动
    linux安装windows启动盘
  • 原文地址:https://www.cnblogs.com/ztguang/p/12646174.html
Copyright © 2011-2022 走看看