diff --git a/clean_cache.cmd b/tools/clean_cache.cmd similarity index 100% rename from clean_cache.cmd rename to tools/clean_cache.cmd diff --git a/clean_cache.sh b/tools/clean_cache.sh similarity index 100% rename from clean_cache.sh rename to tools/clean_cache.sh diff --git a/csv_to_xls.py b/tools/csv_to_xls.py similarity index 100% rename from csv_to_xls.py rename to tools/csv_to_xls.py diff --git a/fuse-ext2.sh b/tools/fuse-ext2.sh similarity index 100% rename from fuse-ext2.sh rename to tools/fuse-ext2.sh diff --git a/mount_ext4.sh b/tools/mount_ext4.sh similarity index 100% rename from mount_ext4.sh rename to tools/mount_ext4.sh diff --git a/run_code_as_root.sh b/tools/run_code_as_root.sh similarity index 100% rename from run_code_as_root.sh rename to tools/run_code_as_root.sh diff --git a/vscode-background.sh b/tools/vscode-background.sh similarity index 100% rename from vscode-background.sh rename to tools/vscode-background.sh diff --git a/vscode_rust.desktop b/tools/vscode_rust.desktop similarity index 100% rename from vscode_rust.desktop rename to tools/vscode_rust.desktop diff --git a/tools/win8PEx64_kvm.sh b/tools/win8PEx64_kvm.sh new file mode 100644 index 0000000..1a1b5c7 --- /dev/null +++ b/tools/win8PEx64_kvm.sh @@ -0,0 +1,23 @@ +echo 'The qemu start shell script by Dale Clack' +echo 'kvm acceleration is needed' +# qemu options: +# -m for the readom access memory +# -smp for cpu cores +# -M for machine type, q35 for ahci disk controller +# -accel for acceleration +# -cpu for cpu type +# -device VGA for display unit, the memory can be changed +# -drive for disks or cdrom +# -boot d to boot from cdrom +qemu-system-x86_64 \ +-m 2048 \ +-smp 6 \ +-M q35 \ +-accel kvm \ +-cpu max \ +-device VGA,vgamem_mb=256 \ +-usb -device usb-tablet \ +-drive file=/mnt/Dell/Download/Cpp.vhd,media=disk \ +-drive file=Win8PEx64-5.iso,media=cdrom \ +-drive file=Dev-Cpp.iso,media=cdrom \ +-boot d \ No newline at end of file