wiki:QemuUNICLOUD
@ECHO OFF
REM ##############################################################################
REM (c) Eric Lassauge - January 2013
REM <lassauge {AT} users {DOT} sourceforge {DOT} net >
REM
REM ##############################################################################
REM    This program is free software: you can redistribute it and/or modify
REM    it under the terms of the GNU General Public License as published by
REM    the Free Software Foundation, either version 3 of the License, or
REM    (at your option) any later version.
REM
REM    This program is distributed in the hope that it will be useful,
REM    but WITHOUT ANY WARRANTY; without even the implied warranty of
REM    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
REM    GNU General Public License for more details.
REM
REM    You should have received a copy of the GNU General Public License
REM    along with this program.  If not, see <http://www.gnu.org/licenses/>
REM ##############################################################################
REM Exemple BAT script for starting qemu-system-i386.exe on windows host with a
REM small Linux disk image containing a 2.6.20 Linux kernel, X11 and various utilities
REM to test QEMU (See http://wiki.qemu.org/Testing)

REM Start qemu on windows.

REM SDL_VIDEODRIVER=directx is faster than windib. But keyboard may not work well.
SET SDL_VIDEODRIVER=windib

REM QEMU_AUDIO_DRV=dsound or fmod or sdl or none can be used. See qemu -audio-help.
REM dsound seems to be broken now (at least in my build
SET QEMU_AUDIO_DRV=none

REM SDL_AUDIODRIVER=waveout or dsound can be used. Only if QEMU_AUDIO_DRV=sdl.
SET SDL_AUDIODRIVER=dsound

REM QEMU_AUDIO_LOG_TO_MONITOR=1 displays log messages in QEMU monitor.
SET QEMU_AUDIO_LOG_TO_MONITOR=0

REM ################################################
REM # Boot disk image
REM # Adapt "-k fr" to you keyboard
REM # X11, nic and soundhw were tested and are working!
REM # try madplay 20thfull.mp2 or xinit
REM # Added '-usb -usbdevice tablet' for Seamless mouse
REM ################################################
START C:\Progra~1\Qemu-Solab\qemu-system-i386.exe -L Bios -vga std -rtc base=localtime,clock=host -cdrom C:\Progra~1\Qemu-Solab-ISO\solab.iso -net nic,model=virtio -m 768 -no-acpi -no-hpet -no-reboot -net user,net=192.168.101.0/24,hostfwd=tcp::8022-:22,hostfwd=tcp::8080-:80

Last modified 6 years ago Last modified on Mar 7, 2018, 9:07:12 AM
Note: See TracWiki for help on using the wiki.