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.
qvm/README.md

47 lines
1.1 KiB
Markdown
Raw Normal View History

2016-10-08 17:56:17 +02:00
# qvm
Trivial management of 64 bit virtual machines with qemu.
2016-10-08 18:30:05 +02:00
# 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.
2016-10-10 17:34:01 +02:00
# Setup information and usage
2016-10-08 18:30:05 +02:00
- 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"
2016-10-10 17:34:01 +02:00
$ ./qvm -i
$ ./qvm -b
```
- Now you can run the virtual machine:
```
$ ./qvm -r
2016-10-08 18:30:05 +02:00
```
- 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).
2016-10-10 17:34:01 +02:00
- You can connect to your virtual machine via SSH, using the default values:
```
ssh -p 2222 <guest_user_name>@127.0.0.1
```
2016-10-08 18:30:05 +02:00
# License
CC0.