Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bugfishtm/proxmox-vma2raw
🐋 Provides a ready-to-use Docker image to convert Proxmox VMA backup files to raw disk images.
https://github.com/bugfishtm/proxmox-vma2raw
backup-software bugfish converter disk-images docker docker-compose docker-image proxmox proxmox-backup proxmox-vma
Last synced: about 5 hours ago
JSON representation
🐋 Provides a ready-to-use Docker image to convert Proxmox VMA backup files to raw disk images.
- Host: GitHub
- URL: https://github.com/bugfishtm/proxmox-vma2raw
- Owner: bugfishtm
- License: gpl-3.0
- Created: 2024-07-12T23:00:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T01:55:48.000Z (16 days ago)
- Last Synced: 2024-10-21T05:16:35.868Z (16 days ago)
- Topics: backup-software, bugfish, converter, disk-images, docker, docker-compose, docker-image, proxmox, proxmox-backup, proxmox-vma
- Language: Batchfile
- Homepage: https://bugfishtm.github.io/proxmox-vma2raw/
- Size: 752 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Support: docs/support.html
Awesome Lists containing this project
README
# Proxmox-VMA2RAW Docker Container
This repository provides the necessary files and a ready-to-use Docker image to convert Proxmox VMA backup files to raw disk images. These raw images can then be accessed or mounted with Windows software.
## Prerequisites
- [Docker Desktop](https://www.docker.com/products/docker-desktop/) installed on your machine.
- [DiskInternals Linux Reader](https://www.diskinternals.com/linux-reader/) for mounting raw disk images on Windows.## Getting Started
### Deploy the Docker Container
1. Clone the repository:
```sh
git clone https://github.com/bugfishtm/proxmox-vma2raw.git
cd proxmox-vma2raw
```2. Run the `create.bat` script to build and run the Docker container:
```sh
./create.bat
```### Using the Docker Container
1. Place your `.vma` files in the `files` folder within the cloned repository.
2. Access the interactive shell of the running Docker container in bash mode:
```sh
docker exec -it proxmox-vma2raw /bin/bash
```3. Navigate to the `/opt/files` directory:
```sh
cd /opt/files
```4. Extract the `.vma` file to a raw disk image:
```sh
vma extract ./sourcefile.vma ./extractdir
```
- Ensure `./extractdir` does not exist before running the command.5. The raw disk image will be available in the `./extractdir` directory.
### Mounting the Raw Disk Image on Windows
1. Transfer the raw disk image to your Windows machine.
2. Use [DiskInternals Linux Reader](https://www.diskinternals.com/linux-reader/) to mount and access the raw disk image.
## Video Tutorial
For a detailed walkthrough, check out the [YouTube video tutorial](https://www.youtube.com/watch?v=AGllcgOKZDE) explaining how to set up and use the Proxmox-VMA2RAW Docker container.
## Useful Links
- [Github Proxmox-VMA2RAW Docker Container](https://github.com/bugfishtm/proxmox-vma2raw)
- [Docker Desktop](https://www.docker.com/products/docker-desktop/)
- [DiskInternals Linux Reader](https://www.diskinternals.com/linux-reader/)
- [DockerHUB](https://hub.docker.com/r/bugfishtm/proxmox-vma2raw)## Contributing
Feel free to submit issues or pull requests to improve this project. All contributions are welcome!
## License
This project is licensed under the MIT License. See the [LICENSE.md](LICENSE.md) file for details...