* [Qemu-devel] Monitor
@ 2004-08-02 13:20 Natalia Portillo
2004-08-02 13:53 ` Joe Menola
0 siblings, 1 reply; 8+ messages in thread
From: Natalia Portillo @ 2004-08-02 13:20 UTC (permalink / raw)
To: qemu-devel
What must I write to show the monitor?
Current CVS version says does not show the monitor in the shell I executed
qemu.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] Monitor
2004-08-02 13:20 [Qemu-devel] Monitor Natalia Portillo
@ 2004-08-02 13:53 ` Joe Menola
2004-08-02 13:56 ` Brad Watson
2004-08-03 23:03 ` J. Mayer
0 siblings, 2 replies; 8+ messages in thread
From: Joe Menola @ 2004-08-02 13:53 UTC (permalink / raw)
To: qemu-devel
On Mon August 2 2004 8:20 am, Natalia Portillo wrote:
> What must I write to show the monitor?
>
> Current CVS version says does not show the monitor in the shell I executed
> qemu.
In the "qemu window with grab on", ctrl+shift+F2
ctrl+shift+F1 to return
-jm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] Monitor
2004-08-02 13:53 ` Joe Menola
@ 2004-08-02 13:56 ` Brad Watson
2004-08-02 21:36 ` Lindsay Mathieson
2004-08-03 23:03 ` J. Mayer
1 sibling, 1 reply; 8+ messages in thread
From: Brad Watson @ 2004-08-02 13:56 UTC (permalink / raw)
To: qemu-devel
Hi Natalia,
When you start qemu, try adding the following
parameters: -monitor stdio
Kind Regards,
Brad Watson
__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] Monitor
2004-08-02 13:53 ` Joe Menola
2004-08-02 13:56 ` Brad Watson
@ 2004-08-03 23:03 ` J. Mayer
2004-08-04 15:18 ` Jim C. Brown
1 sibling, 1 reply; 8+ messages in thread
From: J. Mayer @ 2004-08-03 23:03 UTC (permalink / raw)
To: qemu-devel
On Mon, 2004-08-02 at 15:53, Joe Menola wrote:
> On Mon August 2 2004 8:20 am, Natalia Portillo wrote:
> > What must I write to show the monitor?
> >
> > Current CVS version says does not show the monitor in the shell I executed
> > qemu.
>
> In the "qemu window with grab on", ctrl+shift+F2
> ctrl+shift+F1 to return
Those sequences are trapped by enlightenment.... Should choose some
others...
--
J. Mayer <l_indien@magic.fr>
Never organized
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] Monitor
2004-08-03 23:03 ` J. Mayer
@ 2004-08-04 15:18 ` Jim C. Brown
0 siblings, 0 replies; 8+ messages in thread
From: Jim C. Brown @ 2004-08-04 15:18 UTC (permalink / raw)
To: qemu-devel
On Wed, Aug 04, 2004 at 01:03:24AM +0200, J. Mayer wrote:
> On Mon, 2004-08-02 at 15:53, Joe Menola wrote:
> > On Mon August 2 2004 8:20 am, Natalia Portillo wrote:
> > > What must I write to show the monitor?
> > >
> > > Current CVS version says does not show the monitor in the shell I executed
> > > qemu.
> >
> > In the "qemu window with grab on", ctrl+shift+F2
> > ctrl+shift+F1 to return
>
> Those sequences are trapped by enlightenment.... Should choose some
> others...
Same for my fvwm (atm, tho I'm sure theres a way I can fix fvwm ... just haven't
figured out how).
>
> --
> J. Mayer <l_indien@magic.fr>
> Never organized
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
--
Infinite complexity begets infinite beauty.
Infinite precision begets infinite perfection.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Qemu-devel] Monitor
@ 2006-07-15 21:51 Michael Fisher
2006-07-16 17:51 ` NyOS
0 siblings, 1 reply; 8+ messages in thread
From: Michael Fisher @ 2006-07-15 21:51 UTC (permalink / raw)
To: qemu-devel
1. Can the commands (i.e. sendkeys, savevm, loadvm) be initiated from
within the guest OS? If so, can you give me an example?
2. When executing 'savevm' can it be saved to a virtual disk?
Thanks,
desNotes
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Qemu-devel] Monitor
2006-07-15 21:51 Michael Fisher
@ 2006-07-16 17:51 ` NyOS
0 siblings, 0 replies; 8+ messages in thread
From: NyOS @ 2006-07-16 17:51 UTC (permalink / raw)
To: qemu-devel
On Sat, 15 Jul 2006 23:51:39 +0200, Michael Fisher <desnotes@gmail.com>
wrote:
> 1. Can the commands (i.e. sendkeys, savevm, loadvm) be initiated from
> within the guest OS? If so, can you give me an example?
Of course, by its nature, not. A good emulator cannot allow that.
However, - if you configure your system well - it is possibile with
external programs:
Launch qemu with network support, use a named pipe as monitor, and do
something on the host to grant guest some access (launch sshd for instance
and install ssh client on guest)
mknod monitor.pipe p <-- this line creates a new named pipe, called
"monitor.pipe"
qemu -hda disc.img -monitor pipe:monitor.pipe -net nic -net user <-- use
monitor.pipe as monitor.. note that you cannot reach original monitor
(alt-ctr-2) this way
connect to host from inside, and use "echo 'command' > monitor.pipe"
It sounds quite useless.. but it isn't if you use a GNU netcat (nc) server
on host, which listens on a tcp/ip port.. That way, a simple telnet
program could be used as a terminal from inside (I mean from guest)
nc -T -l -t -p 8898 >monitor.pipe
(There might be some patches around that make possibile to use a tcp/ip
server as a monitor/serial/parallel device..)
>
> 2. When executing 'savevm' can it be saved to a virtual disk?
By default, not.
With the same trick, you can ask the host to make some VM saves, and then
fetch it through scp/ftp/samba/whatever you want
>
> Thanks,
>
> desNotes
>
Best regards,
Nyos
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2006-07-16 17:52 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-02 13:20 [Qemu-devel] Monitor Natalia Portillo
2004-08-02 13:53 ` Joe Menola
2004-08-02 13:56 ` Brad Watson
2004-08-02 21:36 ` Lindsay Mathieson
2004-08-03 23:03 ` J. Mayer
2004-08-04 15:18 ` Jim C. Brown
-- strict thread matches above, loose matches on Subject: below --
2006-07-15 21:51 Michael Fisher
2006-07-16 17:51 ` NyOS
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).