This repository has been archived on 2021-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-08 18:30:05 +02:00
|
|
|
# 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/>.
|
|
|
|
|
2016-11-06 22:08:59 +01:00
|
|
|
img_name="parabola-mate-2016.07.27-dual.iso"
|
2016-10-08 18:30:05 +02:00
|
|
|
|
|
|
|
vhd_size="16G"
|
|
|
|
vhd_type="qcow2"
|
|
|
|
vhd_name=""$img_name"."$vhd_type""
|
|
|
|
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"
|
2016-11-07 16:10:40 +01:00
|
|
|
# vm guest user name
|
|
|
|
ssh_guest_username="vm"
|
2016-10-08 18:30:05 +02:00
|
|
|
|
2016-11-06 22:08:59 +01:00
|
|
|
shared_data_path="/home/parabola/dev/unife/qvm/shared_host_guest"
|
2016-10-08 18:30:05 +02:00
|
|
|
mount_tag="host_share"
|
2017-10-18 11:41:15 +02:00
|
|
|
|
|
|
|
# VNC stuff
|
|
|
|
host_ip_address="192.168.1.1"
|
|
|
|
host_username="parabola"
|
|
|
|
|