Skip to content

Instantly share code, notes, and snippets.

@xahare
xahare / rvagrant
Last active May 15, 2020 19:52
remote vagrant
#!/bin/bash
# this is 3 lines of code. i concider it trivial and not worthy of a licence.
# if you need a license for this, you may concider it public domain.
folder=`basename $PWD`
rsync -av --delete --exclude .git* --exclude-from .gitignore . $VAGRANTHOST:vagrant/$folder
ssh -t $VAGRANTHOST "cd vagrant/$folder && vagrant $*"
@xahare
xahare / Docker-on-qubes.md
Last active April 3, 2024 12:43
How to run docker on Qubes-OS
@xahare
xahare / vagrant-qubes.md
Last active July 11, 2023 15:43
Vagrant on Qubes-OS

Vagrant on Qubes-OS

(Vagrant)[https://www.vagrantup.com] "Development Environments Made Easy"

(Qubes-OS)[https://www.qubes-os.org] "A Reasonably Secure Operating System."

This is a guide on to using vagrant on qubes-os with qemu using the libvirt provider. Because qubes-os does not support nested virtualization, you'r stuck with emulation. If you want performance, use a system with a proper vagrant setup.

Template Setup