Quote (^thehatsrule^ @ Dec. 12 2006,15:06) |
bokaroseani: You can use them by passing them onto the kernel with your bootloader ie by modifying lilo/grub config. See wiki page on cheatcodes for more info. Also, if you use large files that are 2gb+, and you use busybox (ie if you don't load gnu-utils) you will now have no problems. |
Code Sample |
REM Start qemu on windows. @ECHO OFF ::Get the current batch file's short path for %%x in (%0) do set BatchPath=%%~dpsx for %%x in (%BatchPath%) do set BatchPath=%%~dpsx START qemu\qemu.exe -L qemu/ -no-kqemu -m 128 -localtime -kernel linux24 -initrd minirt24.gz -hda KNOPPIX/knoppix -hdb fat:%BatchPath% -append "vga=791 quiet noscsi nousb nofirewire atapicd noideraid noacpi acpi=off noapm noagp ide1=noprobe ide2=noprobe nomce frugal" CLS EXIT |