https://github.com/burbuja/debian-ova-creator
A script to create a Debian OVA image for VMware
https://github.com/burbuja/debian-ova-creator
debian esxi ova ovf vmware vsphere
Last synced: 11 months ago
JSON representation
A script to create a Debian OVA image for VMware
- Host: GitHub
- URL: https://github.com/burbuja/debian-ova-creator
- Owner: burbuja
- License: gpl-2.0
- Created: 2024-11-02T19:52:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-02T19:59:33.000Z (over 1 year ago)
- Last Synced: 2025-02-13T16:51:29.142Z (over 1 year ago)
- Topics: debian, esxi, ova, ovf, vmware, vsphere
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# debian-ova-creator
## Introduction
This script helps you to download a Debian cloud image and to convert it into an OVA file.
The OVF file included into this script was taken from an Ubuntu OVA file.
## Dependencies
This script depends of wget and qemu-img packages that you may install using the following command:
```sh
sudo apt install -y wget qemu-img
```
## Usage
Create a new directory:
```sh
mkdir debian-ova
```
Change directory:
```sh
cd debian-ova
```
Download this script:
```sh
wget https://github.com/burbuja/debian-ova-creator/blob/master/debian-ova-creator.sh
```
Edit it:
```sh
nano debian-ova-creator.sh
```
Change the permissions:
```sh
chmod +x debian-ova-creator.sh
```
Execute it:
```sh
./debian-ova-creator.sh
```
## License
[GNU General Public License version 2 (GPLv2)](https://github.com/burbuja/debian-ova-creator/blob/master/LICENSE) or later