blob: 43c478f576a0f470b4dff58ccee9160903906702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
.. _proxmox:
******************
Running on Proxmox
******************
Proxmox is an open-source platform for virtualization. Users with a support
subscription can download a qcow2 image that can be imported into Proxmox.
Deploy VyOS from CLI
====================
Copy the qcow2 image to a temporary directory on the Proxmox server.
The commands below assume that virtual machine ID 200 is unused and that
the user wants the disk stored in a storage pool called `local-lvm`.
.. code-block:: none
$ qm create 200 --name vyos2 --memory 2048 --net0 virtio,bridge=vmbr0
$ qm importdisk 200 vyos-1.2.8-proxmox-2G.qcow2 local-lvm
$ qm set 200 --virtio0 local-lvm:vm-200-disk-0
$ qm set 200 --boot order=virtio0
Optionally, the user can attach a CDROM with an ISO as a cloud-init data
source. The below command assumes the ISO has been uploaded to the
`local` storage pool with the name `seed.iso`.
.. code-block:: none
$ qm set 101 --ide2 media=cdrom,file=local:iso/seed.iso
Start the virtual machine in the proxmox GUI or CLI using ``qm start 200``.
Visit https://www.proxmox.com/en/ for more information about the download
and installation of this hypervisor.
|