Re: How to run qemu

2024-09-08 Thread BALATON Zoltan
On Sat, 7 Sep 2024, Kenneth Adam Miller wrote: I found this: https://qemu-project.gitlab.io/qemu/system/linuxboot.html and this: https://nickdesaulniers.github.io/blog/2018/10/24/booting-a-custom-linux-kernel-in-qemu-and-debugging-it-with-gdb/ So I now have serial output. But I still need to kno

Re: How to run qemu

2024-09-07 Thread Donald R Laster Jr
Ken, Lookup starting the gvncviewer tool after you start the virtual machine. To get the display for the VMs I run gvncviewer and sometimes spicec. Don Kenneth Adam Miller wrote on 9/7/24 4:58 PM: Hello, I've got qemu built and now I need to figure out how to run it with what I've got.

Re: How to run qemu

2024-09-07 Thread Kenneth Adam Miller
I found this: https://qemu-project.gitlab.io/qemu/system/linuxboot.html and this: https://nickdesaulniers.github.io/blog/2018/10/24/booting-a-custom-linux-kernel-in-qemu-and-debugging-it-with-gdb/ So I now have serial output. But I still need to know how to put a binary in the image so I can run i

How to run qemu

2024-09-07 Thread Kenneth Adam Miller
Hello, I've got qemu built and now I need to figure out how to run it with what I've got. I have a vmlinux and a bzImage that I want to serve as the kernel that QEMU runs with, and a single binary, let's just call it literally `program`, that I want to issue a command to run once QEMU boots with t

Re: how to run qemu test

2020-05-08 Thread Alex Bennée
casmac <1482995...@qq.com> writes: > Hi all, >    I am having trouble running qemu tests. basically ,can not run > check-tcg and check-unit. >   Before executing the tests, I did the configuration: configure > --target-list=sparc-softmmu --cross-prefix=x86_64-w64-mingw32- --enable-gtk > --ena

how to run qemu test

2020-05-08 Thread casmac
Hi all,    I am having trouble running qemu tests. basically ,can not run check-tcg and check-unit.   Before executing the tests, I did the configuration?? configure --target-list=sparc-softmmu --cross-prefix=x86_64-w64-mingw32- --enable-gtk --enable-sdl --enable-debug   The source code is built

Re: [Qemu-devel] How to run "qemu-system-aarch64" without "-kernel" parameter?

2014-10-27 Thread Peter Maydell
On 27 October 2014 09:40, Sudheesh PM wrote: > I amusing qemu-system-aarch64 (version 2.1.0) to run aarch64 on ARM64 > machine using openstack. > I am facing difficulty in passing "kernel" parameter. How to boot a virtual > machine without passing "-kernel" option? > > I want to use only "- drive

[Qemu-devel] How to run "qemu-system-aarch64" without "-kernel" parameter?

2014-10-27 Thread Sudheesh PM
I amusing qemu-system-aarch64 (version 2.1.0) to run aarch64 on ARM64 machine using openstack.I am facing difficulty in passing "kernel" parameter. How to boot a virtual machine without passing "-kernel" option? I want to use only "- drive file=rootfs.img" for booting. please help. Regards,Sudh

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-31 Thread Neo Jia
On 1/31/07, Christian MICHON <[EMAIL PROTECTED]> wrote: On 1/28/07, Neo Jia <[EMAIL PROTECTED]> wrote: > hi, > > I notice that this would be a very newbie question. Hope you can point me out. > > I am going to simulate i386 arch. But I cannot run it just with initrd > and vmlinuz just like runnin

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-31 Thread Christian MICHON
On 1/28/07, Neo Jia <[EMAIL PROTECTED]> wrote: hi, I notice that this would be a very newbie question. Hope you can point me out. I am going to simulate i386 arch. But I cannot run it just with initrd and vmlinuz just like running it for mips arch. It always complained about missing the hda ima

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Christian MICHON
On 1/28/07, Neo Jia <[EMAIL PROTECTED]> wrote: Thanks. After removing "root=/dev/hda", I still get the following error messages. I think the kernel should be boot even without the fc3.img, right? not necessarily. if your kernel contains an initramfs, then it is self sufficient. Again, the boot

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Neo Jia
On 1/28/07, Christian MICHON <[EMAIL PROTECTED]> wrote: remove "root=/dev/hda". you may have not compiled block drivers as built-in, and fc3.img may not have the proper init files (which should be inside your initrd). Thanks. After removing "root=/dev/hda", I still get the following error messa

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Christian MICHON
remove "root=/dev/hda". you may have not compiled block drivers as built-in, and fc3.img may not have the proper init files (which should be inside your initrd). On 1/28/07, Neo Jia <[EMAIL PROTECTED]> wrote: The following is the command line i used qemu -kernel vmlinuz-2.6.20-rc6 -initrd init

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Neo Jia
The following is the command line i used qemu -kernel vmlinuz-2.6.20-rc6 -initrd initrd-2.6.20-rc6.img -hda fc3.img -nographic -append console=ttyS0 root=/dev/hda The following is the error message ... Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal error, but for be

Re: [Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Christian MICHON
one possibility is to include your kernel and initrd inside a bootable iso (mkisofs and isolinux are your friends: look at the man pages for numerous solutions). the kernel panic could be actually missing block drivers or your root parameter is wrong. On 1/28/07, Neo Jia <[EMAIL PROTECTED]> wrot

[Qemu-devel] How to run qemu (i386) without hda image?

2007-01-28 Thread Neo Jia
hi, I notice that this would be a very newbie question. Hope you can point me out. I am going to simulate i386 arch. But I cannot run it just with initrd and vmlinuz just like running it for mips arch. It always complained about missing the hda image file. When I applied the hda.img file, the ke