Changes between Initial Version and Version 1 of QemuUNICLOUD


Ignore:
Timestamp:
Mar 7, 2018, 9:07:12 AM (6 years ago)
Author:
Mattia Monga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • QemuUNICLOUD

    v1 v1  
     1
     2{{{
     3@ECHO OFF
     4REM ##############################################################################
     5REM (c) Eric Lassauge - January 2013
     6REM <lassauge {AT} users {DOT} sourceforge {DOT} net >
     7REM
     8REM ##############################################################################
     9REM    This program is free software: you can redistribute it and/or modify
     10REM    it under the terms of the GNU General Public License as published by
     11REM    the Free Software Foundation, either version 3 of the License, or
     12REM    (at your option) any later version.
     13REM
     14REM    This program is distributed in the hope that it will be useful,
     15REM    but WITHOUT ANY WARRANTY; without even the implied warranty of
     16REM    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     17REM    GNU General Public License for more details.
     18REM
     19REM    You should have received a copy of the GNU General Public License
     20REM    along with this program.  If not, see <http://www.gnu.org/licenses/>
     21REM ##############################################################################
     22REM Exemple BAT script for starting qemu-system-i386.exe on windows host with a
     23REM small Linux disk image containing a 2.6.20 Linux kernel, X11 and various utilities
     24REM to test QEMU (See http://wiki.qemu.org/Testing)
     25
     26REM Start qemu on windows.
     27
     28REM SDL_VIDEODRIVER=directx is faster than windib. But keyboard may not work well.
     29SET SDL_VIDEODRIVER=windib
     30
     31REM QEMU_AUDIO_DRV=dsound or fmod or sdl or none can be used. See qemu -audio-help.
     32REM dsound seems to be broken now (at least in my build
     33SET QEMU_AUDIO_DRV=none
     34
     35REM SDL_AUDIODRIVER=waveout or dsound can be used. Only if QEMU_AUDIO_DRV=sdl.
     36SET SDL_AUDIODRIVER=dsound
     37
     38REM QEMU_AUDIO_LOG_TO_MONITOR=1 displays log messages in QEMU monitor.
     39SET QEMU_AUDIO_LOG_TO_MONITOR=0
     40
     41REM ################################################
     42REM # Boot disk image
     43REM # Adapt "-k fr" to you keyboard
     44REM # X11, nic and soundhw were tested and are working!
     45REM # try madplay 20thfull.mp2 or xinit
     46REM # Added '-usb -usbdevice tablet' for Seamless mouse
     47REM ################################################
     48START 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
     49
     50}}}