You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
55 lines
1.4 KiB
# qvm - Trivial management of 64 bit virtual machines with qemu. |
|
# |
|
# Written in 2016 by Franco Masotti/frnmst <franco.masotti@student.unife.it> |
|
# |
|
# To the extent possible under law, the author(s) have dedicated all |
|
# copyright and related and neighboring rights to this software to the public |
|
# domain worldwide. This software is distributed without any warranty. |
|
# |
|
# You should have received a copy of the CC0 Public Domain Dedication along |
|
# with this software. If not, see |
|
# <http://creativecommons.org/publicdomain/zero/1.0/>. |
|
|
|
img_name="parabola-mate-2016.07.27-dual.iso" |
|
|
|
vhd_size="16G" |
|
vhd_type="qcow2" |
|
vhd_name=""$img_name"."$vhd_type"" |
|
|
|
# Total number of cores assigned to the vm. |
|
# You should set the appropriate number to have a better experience. |
|
number_of_cores="1" |
|
|
|
# Total RAM assigned to the vm. |
|
vm_memory="4G" |
|
|
|
# Shared port. |
|
host_port="5555" |
|
# vm port. |
|
guest_port="3050" |
|
|
|
# Shared port. |
|
ssh_host_port="2222" |
|
# vm port. |
|
ssh_guest_port="22" |
|
|
|
# guest user name useful to conect with ssh. |
|
ssh_guest_username="vm" |
|
|
|
shared_data_path="/home/user/qvm/shared_host_guest" |
|
mount_tag="host_share" |
|
|
|
# |
|
# VNC stuff and automatical remote startup stuff |
|
# |
|
host_ip_address="192.168.1.1" |
|
host_username="parabola" |
|
|
|
# |
|
# Automatical remote startup stuff only |
|
# |
|
# The port used to connecting directly to the host computer. |
|
ssh_exposed_port="22" |
|
host_qvm_script_directory="/home/remote/qvm" |
|
seconds_before_connection_attempt="30" |
|
|
|
|