Trivial management of 64 bit virtual machines with qemu
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
# qvm
|
|
|
|
Trivial management of 64 bit virtual machines with qemu.
|
|
|
|
|
|
|
|
# What this script will do
|
|
|
|
It can handle:
|
|
|
|
- Virtual hard disk creation, backup and deletion.
|
|
|
|
- Basic network management: two ports are exposed to the host
|
|
|
|
machine (but you can add as many as you want). One of these
|
|
|
|
two ports is SSH (so admin gets simpler).
|
|
|
|
- Shared directory between host and guest.
|
|
|
|
- Last, but not least, running the virtual machine with all
|
|
|
|
these options.
|
|
|
|
|
|
|
|
# Setup information
|
|
|
|
- You need a 64 bit machine.
|
|
|
|
- Modify `configvmrc` based on your needs.
|
|
|
|
Variables are self-explanatory and I have kept mine
|
|
|
|
as an example.
|
|
|
|
|
|
|
|
```
|
|
|
|
# pacman -S qemu
|
|
|
|
$ . ./configvmrc
|
|
|
|
$ mkdir -p "$shared_data_path"
|
|
|
|
```
|
|
|
|
|
|
|
|
- On your guest machine add the following in `/etc/fstab`:
|
|
|
|
```
|
|
|
|
host_share /home/vm/shared 9p trans=virtio,version=9p2000.L 0 0
|
|
|
|
```
|
|
|
|
This will enable the shared directory automatically (no mount commands of any
|
|
|
|
sort).
|
|
|
|
|
|
|
|
# License
|
|
|
|
CC0.
|