[Qemu-devel] Re: Installing Debian PPC HOWTO

2005-10-21 Thread Stefano Marinelli
On Thu, 20 Oct 2005 23:15:11 +0200, Mike Kronenberg wrote: > There where a lot of questions lately about ppc emulation. Could you > post the resulting image to http://free.oszoo.org ? So people have a Please, submit this image. I've had some troubles producing a PPC image and the little time I h

[Qemu-devel] booting WIN XP from Linux

2005-10-21 Thread Sergey Smirnov
Does qemu support boot XP from Linux? I use Debian Linux. apt-get install qemu ... qemu -m 256 -snapshot -hda /dev/hda grub messages Choose XP Black screen... ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qe

Re: [Qemu-devel] Compiling Qemu + Accelerator on FC4

2005-10-21 Thread Jan Marten Simons
Rich Fought wrote: Yes, I am trying to install Debian from bootable CD-ROM - is this not the correct option? > qemu-img create hd.img 5G > qemu-system-ppc -boot d -hda hd.img Your commandline is missing the -cdrom parameter: -cdrom 'file' Use file as CD-ROM image (you cannot use '-h

Re: [Qemu-devel] booting WIN XP from Linux

2005-10-21 Thread Jan Marten Simons
Sergey Smirnov wrote: Does qemu support boot XP from Linux? I use Debian Linux. apt-get install qemu ... qemu -m 256 -snapshot -hda /dev/hda grub messages Choose XP Black screen... I suppose WinXP does not like to be booted in a completly different machine (copy-protection, drivers bound to

Re: [Qemu-devel] booting WIN XP from Linux

2005-10-21 Thread Mike Swanson
I have heard that making a new, blank "Hardware Profile" works, however I have neither tried it nor do I know the exact instructions to do so. On 10/21/05, Jan Marten Simons <[EMAIL PROTECTED]> wrote: > Sergey Smirnov wrote: > > >Does qemu support boot XP from Linux? > >I use Debian Linux. > >apt-

Re: [Qemu-devel] booting WIN XP from Linux

2005-10-21 Thread Christian MICHON
use "sysprep". Google for instructions. It's not always working... On 10/21/05, Sergey Smirnov <[EMAIL PROTECTED]> wrote: > Does qemu support boot XP from Linux? > I use Debian Linux. > apt-get install qemu > ... > qemu -m 256 -snapshot -hda /dev/hda > grub messages > Choose XP > Black screen...

[Qemu-devel] VMWare player

2005-10-21 Thread John R. Hogerhuis
Barely on-topic, but since VmWare interop crops up from time to time: http://www.vmware.com/products/player/ I doubt this is targeted at QEMU, but rather at competing with Microsoft and VirtualPC. That or they are leaving the low-end market for server consolidation. This may in fact be as much V

[Qemu-devel] User-space emulation on Mac OS X to run Mac OS X Intel applications

2005-10-21 Thread Steven
Hi all, Looking at qemu, it seems as if it could be possible to allow it to run Intel OS X apps on PowerPC OS X, much like a reverse Rosetta. The x86 frameworks/libraries are included with Xcode, so possibly everything else could run natively, just have the app itself emulated. Is anybody willing

[Qemu-devel] Problems with Qemu 0.7.2

2005-10-21 Thread James Lancaster
(With or without kqemu) 1) When switching from qemu, it doesn't like letting go of the mouse. If you don't have it grabbed, and click on another window, it will grab the mouse again, and the title bar will cycle through "Qemu" and "Qemu - Press ctrl-alt to exit grab. If you use the keyboard to

Re: [Qemu-devel] VMWare player

2005-10-21 Thread Mike Swanson
Yeah, it barely on topic. But the .vmx files are extremely simple text files, and qemu-img creates vmdk disk images. Yes, it's possible to install operating systems solely withing VMware (this is the correct spelling, btw) Player, but you cannot install VMware Tools, even with the appropriate (wind

Re: [Qemu-devel] User-space emulation on Mac OS X to run Mac OS X Intel applications

2005-10-21 Thread Jim C. Brown
On Fri, Oct 21, 2005 at 09:16:18PM +0100, Steven wrote: > Hi all, > > Looking at qemu, it seems as if it could be possible to allow it to > run Intel OS X apps on PowerPC OS X, much like a reverse Rosetta. The > x86 frameworks/libraries are included with Xcode, so possibly > everything else could

Re: [Qemu-devel] User-space emulation on Mac OS X to run Mac OS X Intel applications

2005-10-21 Thread René Korthaus
Am 21.10.2005 um 22:16 schrieb Steven: Hi all, Looking at qemu, it seems as if it could be possible to allow it to run Intel OS X apps on PowerPC OS X, much like a reverse Rosetta. The x86 frameworks/libraries are included with Xcode, so possibly everything else could run natively, just have t

Re: [Qemu-devel] VMWare player

2005-10-21 Thread John R. Hogerhuis
On Fri, 2005-10-21 at 13:22 -0700, Mike Swanson wrote: > Yeah, it barely on topic. But the .vmx files are extremely simple text > files, and qemu-img creates vmdk disk images. That was my first thought when I saw this as well. > Yes, it's possible to > install operating systems solely withing VM

Re: [Qemu-devel] User-space emulation on Mac OS X to run Mac OS X Intel applications

2005-10-21 Thread Paul Brook
> (1) I believe there is an m68k target being worked on, which is not > strictly linux only. I haven't looked at it very closely and am not sure of > the details. But this doesn't really help you anyways. The m68k target supports a very simple semihosting syscall layer, similar to the the "angel"

[Qemu-devel] qemu-ppc fails to run clone with CLONE_VM, threaded programs, non-static programs

2005-10-21 Thread Josh Triplett
Hello, I'm attempting to run cross-compiled programs with qemu-ppc. Basic statically-linked programs work perfectly. However, if I attempt to run non-static programs or threaded programs, or if I attempt to call clone() with the CLONE_VM flag set, I get an invalid data memory access. Threaded p

[Qemu-devel] [patch] Thumb symbol lookup

2005-10-21 Thread Paul Brook
Some Arm ABIs use the low bit of a symbol address to mark thumb function symbols (instruction are always halfword aligned). The patch below makes lookup_symbol ignore this bit when comparing addresses. Paul Index: disas.c === RCS f

Re: [Qemu-devel] Problems with Qemu 0.7.2

2005-10-21 Thread James Lancaster
My apologies for the lack of system description: Host: Gentoo 2005.0 AMD64 Athlon 64 3000+ Qemu 0.7.2 & Kqemu 0.7.2 Gcc version: 3.4.4 Guest: Windows 2000 SP4 fully patched. Any other information needed, I can provide on request. ___ Qemu-devel mai

[Qemu-devel] Re: qemu-ppc fails to run clone with CLONE_VM, threaded programs, non-static programs

2005-10-21 Thread Josh Triplett
Josh Triplett wrote: > I'm attempting to run cross-compiled programs with qemu-ppc. Basic > statically-linked programs work perfectly. However, if I attempt to run > non-static programs or threaded programs, or if I attempt to call > clone() with the CLONE_VM flag set, I get an invalid data memor