From 583c986251f8f73c953c367e529a6b42767a6ccd Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Wed, 28 Aug 2019 00:13:59 -0400 Subject: [PATCH] Move unused vms index to vms --- docs/virtualization/index.md | 26 -------------------------- docs/virtualization/vms.md | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 docs/virtualization/index.md diff --git a/docs/virtualization/index.md b/docs/virtualization/index.md deleted file mode 100644 index 97fcf89..0000000 --- a/docs/virtualization/index.md +++ /dev/null @@ -1,26 +0,0 @@ -# Virtual Machines - -Deployment procedure for new hypervisors, and documentation of existing hypervisor configurations. - -Hypervisors are intended to be deployed on CentOS 7.5+ systems with a minimum of 8GB of RAM and 120GB of available hard drive space. - -I use [Ovirt](https://ovirt.org/) for virtualization, which sits on top of KVM. See the [Ovirt Installation Docs](https://ovirt.org/documentation/install-guide/chap-Installing_oVirt/) for details, but the basic procedure is given below: - -1. Temporarily disable the EPEL and IUS repositories so that they don't interfere with Ovirt's installation - * `sudo mv /etc/yum.repos.d/ius.repo /etc/yum.repos.d/ius.repo.bak` - * `sudo mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.bak` -2. Install the Ovirt repository - * `sudo yum install https://resources.ovirt.org/pub/yum-repo/ovirt-release42.rpm` - * Increment the filename as new releases are available -3. Ensure all packages are updated with the Ovirt repository - * `sudo yum update -y` -4. Install the Ovirt engine and KVM - * `sudo yum install qemu-kvm libvirt libvirt-python libguestfs-tools virt-install ovirt-engine` -5. Re-enable the EPEL and IUS repositories - * `sudo mv /etc/yum.repos.d/ius.repo.bak /etc/yum.repos.d/ius.repo` - * `sudo mv /etc/yum.repos.d/epel.repo.bak /etc/yum.repos.d/epel.repo` -6. Configure the Ovirt engine - * `sudo engine-configure` - - - diff --git a/docs/virtualization/vms.md b/docs/virtualization/vms.md index e69de29..97fcf89 100644 --- a/docs/virtualization/vms.md +++ b/docs/virtualization/vms.md @@ -0,0 +1,26 @@ +# Virtual Machines + +Deployment procedure for new hypervisors, and documentation of existing hypervisor configurations. + +Hypervisors are intended to be deployed on CentOS 7.5+ systems with a minimum of 8GB of RAM and 120GB of available hard drive space. + +I use [Ovirt](https://ovirt.org/) for virtualization, which sits on top of KVM. See the [Ovirt Installation Docs](https://ovirt.org/documentation/install-guide/chap-Installing_oVirt/) for details, but the basic procedure is given below: + +1. Temporarily disable the EPEL and IUS repositories so that they don't interfere with Ovirt's installation + * `sudo mv /etc/yum.repos.d/ius.repo /etc/yum.repos.d/ius.repo.bak` + * `sudo mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.bak` +2. Install the Ovirt repository + * `sudo yum install https://resources.ovirt.org/pub/yum-repo/ovirt-release42.rpm` + * Increment the filename as new releases are available +3. Ensure all packages are updated with the Ovirt repository + * `sudo yum update -y` +4. Install the Ovirt engine and KVM + * `sudo yum install qemu-kvm libvirt libvirt-python libguestfs-tools virt-install ovirt-engine` +5. Re-enable the EPEL and IUS repositories + * `sudo mv /etc/yum.repos.d/ius.repo.bak /etc/yum.repos.d/ius.repo` + * `sudo mv /etc/yum.repos.d/epel.repo.bak /etc/yum.repos.d/epel.repo` +6. Configure the Ovirt engine + * `sudo engine-configure` + + +