StickMounting changed

Updated for Beta 3
This commit is contained in:
Joanna Rutkowska 2012-02-06 10:10:32 +00:00
parent d2c15ea0e2
commit bc70481d6b

View File

@ -4,19 +4,27 @@ title: StickMounting
permalink: /wiki/StickMounting/
---
This requires qubes-core-appvm-1.0.1 of higher.
In Qubes Beta 3 a new tool, ```qvm-block``` has been introduced that makes mounting USB devices to any user AppVM very easy, no matter which actual VM is handling the USB controller (those can be assigned using the [qvm-pci command](/wiki/AssigningDevices)).
In order to assign a USB disk to a VM, follow these steps:
1. Insert your USB stick.
1. In Dom0 konsole (running as normal user) do:
``` {.wiki}
xl block-attach <vmname> phy:/dev/sdb1 xvdi w
```
``` {.wiki}
qvm-block -l
```
This assumes that your stick is seen by Dom0 kernel as **/dev/sdb** and you're mounting its first partition, so **/dev/sdb1** (the usual case); "w" means read/write, if you not want that, use "r" for read only.
> This will list available block devices connected to any USB controller in your system, no matter in which VM this controller is hosted. The name of the VM hosting the USB controller is displayed before the colon in the device name. The string after the colon is the name of the device used within the VM.
This will attach the device as "/dev/xvdi" in VM. You can also choose different name (eg. xvdj) to connect multiple devices, but the others (not xvdi) will require mounting from cmdline in VM...
1. Connect the device, e.g.:
``` {.wiki}
qvm-block -a dom0:sda personal
```
> This will attach the device as "/dev/xvdi" in VM.
1. Open Nautilus file manager in the AppVM. Your stick should be visible in the "Places" panel on the left. Just click on the device.
@ -25,9 +33,9 @@ This will attach the device as "/dev/xvdi" in VM. You can also choose different
1. Back to Dom0 konsole -- in order to unmount the stick do the following:
``` {.wiki}
xl block-detach <vmname> xvdi
qvm-block -d <device> <vmname>
```
1. You can remove the device.
Needless to say, we will be adding support for USB mounting to our GUI Qubes Manager so that the user will not need to use console in Dom0 -- just click a button. Coming soon, stay tuned!
> In the next release this will get integrated into the Qubes GUI manager...