Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| engineering:computer_science:linux:kvm:mount_viofs_windows_guest [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1 | engineering:computer_science:linux:kvm:mount_viofs_windows_guest [2024/08/16 13:56] (current) – ↷ Page moved from refractor_computer_science:linux:kvm:mount_viofs_windows_guest to engineering:computer_science:linux:kvm:mount_viofs_windows_guest carlossousa | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Mounting Shared File System (directory) from KVM Host in Windows Guest ====== | ||
| + | |||
| + | [[https:// | ||
| + | |||
| + | * Start by launching virt-manager | ||
| + | * Select your Virtual Machine | ||
| + | * You want to go to the View / Details sub section. Where you can add / edit hardware | ||
| + | * Go to the Memory Element and Check / Activate " | ||
| + | * Add a new Hardware , Type " | ||
| + | * Start your Windows Guest | ||
| + | * Install WinFSP, you need at least the Core Module - [[https:// | ||
| + | * Install virtio-win-guest-tools, | ||
| + | * If you just want to share a single folder, you can just start the service and you're done (command: sc start VirtioFsSvc) | ||
| + | |||
| + | ===== Mounting multiple directories on the same Guest ===== | ||
| + | |||
| + | * Stop the VirtioFsSvc (command: sc stop VirtioFsSvc) | ||
| + | * Disable the Service from auto start (command: sc config VirtioFsSvc start=demand) | ||
| + | * Generate a configuration that is required with the following command. Remember to adapt to your virtiofs.exe location | ||
| + | |||
| + | < | ||
| + | " | ||
| + | |||
| + | </ | ||
| + | * Mount your folder with the following command: | ||
| + | |||
| + | < | ||
| + | " | ||
| + | |||
| + | </ | ||
| + | |||
| + | Note 1: " | ||
| + | |||
| + | Note 2: " | ||
| + | |||
| + | * Repeat for other folders you want / need. | ||
| + | |||