Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seia-soto/libvirtd-scripts
A small set of simple scripts to manage virtual environment on *Alpine Linux* for light users.
https://github.com/seia-soto/libvirtd-scripts
Last synced: about 11 hours ago
JSON representation
A small set of simple scripts to manage virtual environment on *Alpine Linux* for light users.
- Host: GitHub
- URL: https://github.com/seia-soto/libvirtd-scripts
- Owner: seia-soto
- License: mit
- Created: 2021-01-27T19:11:24.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-31T05:23:32.000Z (almost 4 years ago)
- Last Synced: 2024-11-05T16:57:48.523Z (about 2 months ago)
- Language: Shell
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seia-Soto/libvirtd-scripts
A small set of simple scripts to manage virtual environment on *Alpine Linux* for light users.
- Only uses about 100 to 150MB of memory on host machine
- Almost zero configuration## Table of Contents
- [Requirements](#requirements)
- [Usage](#usage)----
# Requirements
To use attached script files, you need to have:
- Alpine Linux 3.12 or higher version
# Usage
To use attached script files, you need to download and unpack it first.
> **Warning**
>
> Scripts are not the everything.```sh
wget -qO- https://api.github.com/repos/Seia-Soto/libvirtd-scripts/tarball | tar xvz -C ~/
mkdir -p ~/scripts
mv ~/Seia-Soto-libvirtd-scripts-*/scripts/* ~/scripts
rm -r ~/Seia-Soto-libvirtd-scripts-*
```## `virt.install.sh`
This script makes your system almost ready to deploy virtual machines.
While making system to run virtual machine, this script will create following folders:- `~/scripts`, directory for this scritps set.
- `~/virtuals`
- `~/virtuals/images`, directory for CD image.
- `~/virtuals/machines`, directory for VM disks.```sh
# Uncomment community repository before start;
cat > /etc/apk/repositories << EOF; $(echo)
http://dl-cdn.alpinelinux.org/alpine/v$(cat /etc/alpine-release | cut -d'.' -f1,2)/main
http://dl-cdn.alpinelinux.org/alpine/v$(cat /etc/alpine-release | cut -d'.' -f1,2)/community
EOFsh ~/scripts/virt.install.sh
```For post-installation message, refer following file:
[virt.install.postinstall.md](/scripts/virt.install.postinstall.md)## `virt.create.sh`
This script creates new Alpine Linux virtual machine on your system.
This will create an Alpine Linux virtual machine with the image downloaded when setting up new host with `virt.install.sh`.
The version is same with host machine.```sh
sh ~/scripts/virt.create.sh [NAME] [CPU_CORES] [RAM_SIZE] [DISK_SIZE]
```- `NAME`: (required) The name of the virtual machine.
- `CPU_CORES`: (required) The number of cores to virtualize.
- `RAM_SIZE`: (required) The max size of RAM to allocate in MB (dynamically allocated, max).
- `DISK_SIZE`: (required) The max size of qcow2 disk to allocate in GB (dynamically allocated, max).### Notes
- This scripts will create virtual machine which attach `br0` as default network interface.
## `virt.delete.sh`
This script deletes virtual machine and its dependencies like boot disk things.
```sh
sh ~/scripts/virt.delete.sh [NAME]
```- `NAME`: (required) The name of the virtual machine.
## `virt.add_volume.sh`
This script attaches external qcow2 disk to specific machine.
```sh
sh ~/scripts/virt.add_volume.sh [NAME] [SIZE] [PATH]
```- `NAME`: (required) The name of the virtual machine.
- `SIZE`: (required) The number of cores to virtualize.
- `PATH`: (required) The path to attach volume, such as `vdb`, `vdc`, and `vdd`.## `virt.get_osvars.sh`
This script runs a command `osinfo-query os`.