Share Folder Between Guest (Linux) and Host (LInux)in virt-manager (KVM/Qemu/libvirt)
Mar 28, 2023
- Create Directory in HOST Machine
[ostechnix@vmhost ~]$ mkdir -p /home/vk/Downloads && chmod 777 /home/vk/Downloads
- Setting On virt-manager
a. Turn Of guest Machine If running
b. In the next window, click “Show virtual hardware details” button on the menu bar and click “Add Hardware” button on the left pane.
Fill Following Entry
3. Save All configurations and Switch on Guest machine. And Run following Command
mkdir -p /home2
mount -t 9p -o trans=virtio,version=9p2000.L /hostshare /home2
NOTE : /hostshare will fixed as in Fig2 target path (name always be hostshare) and /home2 is user define mount point.
Enjoy