* http://qemu-forum.ipi.fi/search.php?author_id=11507&sr=posts
* [[kvm]] : https://bugs.launchpad.net/ubuntu/+source/kvm/+bug/183663
* [[Eclipse]] : http://issaris.blogspot.com/2007/12/download-linux-kernel-sourcecode-from.html
* [[omap]] : http://patchwork.ozlabs.org/patch/61224/
===== TODO =====
* https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/341237# ToDo :
* https://rwmj.wordpress.com/2014/10/14/streaming-nbd-server/# PipE
* https://serverfault.com/questions/765603/qemu-img-could-not-open-dev-stdin-could-not-refresh-total-sector-count-ope#
===== qemu =====
@ http://fabrice.bellard.free.fr/qemu
* http://wiki.debian.org/QEMU
* http://packages.qa.debian.org/q/qemu.html
* https://launchpad.net/ubuntu/+source/qemu
* http://ch.archive.ubuntu.com/ubuntu/pool/universe/q/qemu/
sudo modprobe -v kqemu || sudo apt-get install qemu module-assistant && sudo m-a -f get kqemu-source && sudo m-a --text a-i kqemu
HDD=${HOME}/filesystem.img # [[Partition]] file
mkdir -p $(dirname $HDD)
dd if=/dev/zero of=${HDD} bs=1M count=2000 # 4G is fat limitation 4294967295
qemu -boot d -hda ${HDD} -cdrom /dev/cdrom # or bootable.iso
* FAQ at http://qemu.kidsquid.com/moin.cgi/FrequentlyAskedQuestions
* Patches, howtos, CVS snapshots : http://qemu.dad-answers.com and http://www.dad-answers.com/qemu
* Benchmarks ftp://ftp.win4lin.com/pub/testing/nbench-qemu/)
* FreeOSZoo is at http://free.oszoo.org
* http://wiki.debian.org/qemu [[Debian]]
* http://www.hants.lug.org.uk/cgi-bin/wiki.pl?LinuxHints/QemuCompilation [[Ubuntu]]
[[OpenSource]] :
wget http://fabrice.bellard.free.fr/qemu/qemu-0.8.1.tar.gz
./configure --cc=gcc-3.4 --host-cc=gcc-3.4 --prefix=/usr/local/opt/qemu/ \
&& make && make install
http://www.tldp.org/HOWTO/BRIDGE-STP-HOWTO/index.html
[[kqemu]] :
* http://wiki.qemu.org/KQemu/Doc
* https://help.ubuntu.com/community/Kqemu
networking:
http://www.h7.dion.ne.jp/~qemu-win/HowToNetwork-en.html
mount host share from guest (win) :
net use h: \\10.0.2.2\$USER
rdesktop from host to guest through ssh :
* https://automatthias.wordpress.com/2006/06/12/qemu-and-rdesktop/
Usage:
sendkey ctrl-alt-f1
===== ARM =====
* http://balau82.wordpress.com/2010/04/12/booting-linux-with-u-boot-on-qemu-arm/
===== qemu-system-arm =====
sudo aptitude install qemu=0.13.0~rc0+dfsg-2.0~rzr1
qemu-system-arm -M n800 -show-cursor -m 130 -kernel "${kernel}" -sd "${sd}" -append 'root=/dev/mmcblk2 rootfstype=ext3 nosplash noquiet'
#| qemu: hardware error: tsc210x_txrx: FIXME: bad SPI word width 24
#| CPU #0:
#| R00=00000000 R01=83126e98 R02=f7cedad6 R03=0062b340
#| R04=c7c20900 R05=c7c27eb0 R06=00000000 R07=fa098030
#| R08=00000000 R09=fa09803c R10=00000000 R11=c7c27ed8
#| R12=fa098038 R13=c7c79f18 R14=c01e3058 R15=c01e393c
#| PSR=60000013 -ZC- A svc32
#| Aborted
@feedback: http://forum.meego.com/showthread.php?t=317
More: [[Touch]] [[Screen]] [[Control]]ler ?
* http://elinux.org/N800#TSC2301_support_on_linux-omap
* http://git.maemo.org/git/qemu/?p=qemu;a=summary
* http://www.cubieforums.com/index.php?topic=496.0
* http://xecdesign.com/compiling-a-kernel/# PcI
===== ARMv5 =====
On target :
args='-M versatilepb -append "root=/dev/ram" -curses' #
qemu-system-arm $args -kernel vmlinuz-3.1.0-1-orion5x -initrd initrd.img-3.1.0-1-orion5x -hda initrd.img
On host :
args="-M versatilepb -append root=/dev/ram"
args="-curses" # -nographic
args=""
hda=/dev/sdb
dir=d-i.debian.org/daily-images/armel/daily/orion5x/network-console/buffalo/lspro/
kernel=vmlinuz-3.1.0-1-orion5x
#kernel=$dir/uImage.buffalo.arm
initrd=initrd.img-3.1.0-1-orion5x
#initrd=$dir/initrd.buffalo.cpio.gz
machine=musicpal
machine=versatilepb
append="root=/dev/ram"
# "root=/dev/sda2 console=ttyAMA0"
sudo qemu-system-arm \
-M $machine $args \
-append $append \
-kernel $kernel -initrd $initrd -hda $hda
* http://forum.buffalo.nas-central.org/viewtopic.php?f=68&t=24275&p=150449#p150449
args="-M versatilepb -append root=/dev/ram"
args="-M versatilepb -append root=/dev/sda2"
hda=/dev/sdb
kernel=vmlinuz-3.1.0-1-orion5x
initrd=initrd.img-3.1.0-1-orion5x
sudo qemu-system-arm -kernel $kernel -initrd $initrd -hda $hda $args
===== Error =====
Warning: vlan 0 is not connected to host network
Make sure you have :
# -net tap,vlan=0,ifname=tap0,script=scripts/up.sh
as args :
* http://wiki.freaks-unidos.net/qemu-debian#running-and-networking-qemu
===== MISC =====
* http://en.wikipedia.org/wiki/Win4Lin
* [[ARM]] : http://www.aurel32.net/info/debian_arm_qemu.php
* [[Gl]] : http://forum.meego.com/showthread.php?p=18409#post18409
* https://github.com/Sheph/qemu# [[gl]]
* http://people.canonical.com/~jk/dt-workshop/# DeviceTree
* http://balau82.wordpress.com/2010/09/04/custom-hardware-modeling-with-qemu-elc-2010/
* https://github.com/debian-pi/raspbian-ua-netinst/issues/34# RpI [[ArmV6]]
* http://www.qemu-advent-calendar.org/
* http://stackoverflow.com/questions/56124/can-i-run-a-64-bit-vmware-image-on-a-32-bit-machine# [[64BiT]]
* https://www.spice-space.org/demos.html# GraphicS
===== MORE =====
@TaG: [[Emu]] [[SWT]] [[vm]] [[omap2]] [[armv6]] [[armv5]] [[raid]] [[nas]]