[Qemu-devel] OS/2 starting installing, freezing on second disk

2005-11-04 Thread Wesley Parish
That's the problem.
qemu -boot a -fda /dev/fd0 -hda c.img -hdb d.img -cdrom os2.iso &
since qemu didn't like the dd'ed floppy images

Any hints?

Thanks

Wesley Parish
-- 
Clinersterton beademung, with all of love - RIP James Blish
-
Mau e ki, he aha te mea nui?
You ask, what is the most important thing?
Maku e ki, he tangata, he tangata, he tangata.
I reply, it is people, it is people, it is people.


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] How to get a guest IP

2005-11-04 Thread zheng sw
Host want to get the guest's IP when the host start the guest?

My setting is: debian(2.6.8), qemu, bridge-utils, TUN/TAP. The
guest get a IP from a DHCP server which is in the same subnet whit
host.

My purpose is use bash to run ssh connect to the host, then run
qemu, After the guest is started, the host want to get the guest's
 IP and send to me, but nobody will control the guest. Now I am
puzzle in how the host get the guest IP.

I have try 1. redirect the guest stdio to a terminal. but false,
   2. Use DHCP server bound MAC address with IP, and use
-macaddr set the guest MAC. but I can't control the DHCP server
now.
   3, mount the qemu image, but document say it can't
mounted.
   4. guest use static IP, but I may start several guest
with a image.
   5. use -seral pty, but I can't read the pts.


Thank you!
My english is poor, sorry.


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] Re: Scotts cool info

2005-11-04 Thread Simen Gatewood



 

  
H
uit overpa
or your M
sit our Phar
press S
  
  
i Q
ying f
eddications - vi
maEx
hop.
  
 
Get additional info - http://sticklebackhov.presetey.com
___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] Audio cd's in guest OS

2005-11-04 Thread Lars Roland
Hi all

Is it somehow possible to pass a audio cd from a host running Linux to
the guest OS ? -

I am basiclly trying to rip a cd using itunes inside my guest OS
(Windows XP) but as audio cd's does not has a traditional filesystem
on them you cannot mount them in Linux (host OS). The: -cdrom
predicate in Qemu 0.7.2 only works if the block device contains a
mounted filesystem so I am unable to see how I can pass on an audio
cd.


Regards.

Lars Roland


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] Keyboard/monitor problems when running not under X

2005-11-04 Thread Marcus Blomenkamp
Hi all,

i'm having serious problems getting my qemu instance running properly on linux 
framebuffer console. Somehow keystrokes are not delivered or translated 
properly leading to the following effects:
1. weird key mapping in guest (backspace -> 5)
2. unable to change to monitor console by pressing ctrl-alt-2
3. unable to use stdio console when invoked "-monitor stdio"

Problem 1 can be "solved" by explicitly forcing "-k de" in my case, however 
the other problems remain. Funny thing is when launching the monitor for 
stdio, characters are only delivered or echoed on/after switching to the 
guest and back, eg:
press help , nothing happens
press ctrl-alt-1
press ctrl-alt-2, help text is displayed.

My system is running linux 2.6.14-rc5, sdl 1.2.9, fb console [EMAIL PROTECTED]

Best regards, Marcus



___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] How to get a guest IP

2005-11-04 Thread Henrik Nordstrom

On Fri, 4 Nov 2005, zheng sw wrote:


Host want to get the guest's IP when the host start the guest?


Why?


My setting is: debian(2.6.8), qemu, bridge-utils, TUN/TAP. The
guest get a IP from a DHCP server which is in the same subnet whit
host.


Ok.


My purpose is use bash to run ssh connect to the host, then run
qemu, After the guest is started, the host want to get the guest's
IP and send to me, but nobody will control the guest. Now I am
puzzle in how the host get the guest IP.


The most obvious way would be to use dynamic DNS updates, supported by 
most DHCP servers, automatically registering the guest host name in DNS.


Another way is to have a init script in the guest to somehow tell the host 
what IP address it has.


Regards
Henrik


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] Keyboard/monitor problems when running not under X

2005-11-04 Thread Jim C. Brown
On Fri, Nov 04, 2005 at 02:08:29PM +0100, Marcus Blomenkamp wrote:
> Hi all,
> 
> i'm having serious problems getting my qemu instance running properly on 
> linux 
> framebuffer console. Somehow keystrokes are not delivered or translated 

Yep. This is a known issue with the framebuffer. For some it seems to just work,
but for others the keys are not mapped correctly. My guess is that because qemu
uses the raw SDL scancode, its expected an X11 keycode but getting a framebuffer
keycode (or possibly the raw PC keyboard scancode). This probably wouldn't be
to hard for a person familiar with linux framebuffer programming to fix.

-- 
Infinite complexity begets infinite beauty.
Infinite precision begets infinite perfection.


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] Audio cd's in guest OS

2005-11-04 Thread Mike Swanson
I've found on systems where traditional rippers don't work (eg,
cdparanoia), CDFS has a greater chance of ripping the CDs (by default
into WAV, but you can enable an option to rip it in the pure CDDA
format if you want). It requires patching the Linux source, so if you
aren't experienced with compiling your own kernel, then it might not
be the best option.

http://www.elis.rug.ac.be/~ronsse/cdfs/

If you get it to work, then you may use LAME, oggenc, FLAC, or
whatever to encode the audio tracks into your favorite format (mp3,
Ogg Vorbis, and FLAC in my examples).

On 11/4/05, Lars Roland <[EMAIL PROTECTED]> wrote:
> Hi all
>
> Is it somehow possible to pass a audio cd from a host running Linux to
> the guest OS ? -
>
> I am basiclly trying to rip a cd using itunes inside my guest OS
> (Windows XP) but as audio cd's does not has a traditional filesystem
> on them you cannot mount them in Linux (host OS). The: -cdrom
> predicate in Qemu 0.7.2 only works if the block device contains a
> mounted filesystem so I am unable to see how I can pass on an audio
> cd.
>
>
> Regards.
>
> Lars Roland
>
>
> ___
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>


--
Mike


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] $B:#Lk$bCK$r5a$a$F(B

2005-11-04 Thread info
$BCK=w$H$bEPO?L5NA$G$9(B

$BD>%a!<%k2DG=(B
$BxiD>EEOC2DG=(B
$BCO0hJL8!:w(B
$B;~4VBS8!:w(B



 [EMAIL PROTECTED]>nMM$^$G!":#Lk$bCK$r5a$a$F;&E~Cf!*(B
 $B"-"-"-"-"-(B

http://1191.jp/Rc/wf/gold-wife.html


$B$*6b$O$"$C$F$bBN$,<[EMAIL PROTECTED],$"$k$+$iM7$S$?$$$h$&[EMAIL 
PROTECTED]>nMM$N$?$a$N=P2q$$$N>l$G$9(B

$BD>%a!<%k5!G=$dD>EEOC5!G=$,$"[EMAIL PROTECTED]@$$$F$*$j$^$9!#(B
$BEv%5%$%H$N%"%s%1!<%H$G$OMxMQ(B
$B"-"-"-"-"-"-(B


[EMAIL PROTECTED](B

http://1191.jp/Rc/wf/gold-wife.html


$BCK$N?M$H3Z$7$_$?$$(B

http://1191.jp/Rc/wf/gold-wife.html

[18$B:PL$K~MxMQ6X;_(B]




$B!y(B $B5U1gE79q!y(B








$B"(6=L#$r;}$C$F$$$J$$J}$O([EMAIL PROTECTED]/[EMAIL PROTECTED](B


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel