|
|
|
|
|
|
|
|
|
|
xen-users
RE: [Xen-users] qemu monitor with only vnc and ssh?
> I only have experience with PVMs, but I wonder why doing:
>
> xm block-attach ${domid} phy:/dev/cd-rom /dev/sdd r
>
> I guess this doesn't work with HVM?
>
> The other thing I do... just in general is make .iso images and loop
> back in Linux when I need them and in Windows there are .iso mount
tools
> like VirtualCD (or Alcohol?).
I do this:
"
xm block-configure $domain phy:$device hdc:cdrom r
"
($device is /dev/cdrom or /images/cdimage.iso etc)
Under windows, you have to first either eject the CD under windows
(right click + eject on the drive in explorer), or do:
"
xm block-configure $domain phy:/dev/null hdc:cdrom r
"
First, which seems to do the same thing. My CD change script is:
"
xm block-configure $domain phy:/dev/null hdc:cdrom r
sleep 1
xm block-configure $domain phy:$device hdc:cdrom r
"
I imagine that would also work on a pv domain, but I've never tried it.
James
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|