dangerzone/install/vm-builder
2021-06-30 10:45:38 -07:00
..
ssh-key Rename rip_docker to install/vm-builder, and start making a build script that uses it 2021-06-29 17:01:47 -07:00
build-iso.sh Split Vm class from SysTray, and make it launch hyperkit 2021-06-30 10:45:38 -07:00
genapkovl-dangerzone.sh Rename rip_docker to install/vm-builder, and start making a build script that uses it 2021-06-29 17:01:47 -07:00
mkimg.dangerzone.sh Rename rip_docker to install/vm-builder, and start making a build script that uses it 2021-06-29 17:01:47 -07:00
README.md Rename rip_docker to install/vm-builder, and start making a build script that uses it 2021-06-29 17:01:47 -07:00
run-vm.sh Split Vm class from SysTray, and make it launch hyperkit 2021-06-30 10:45:38 -07:00
Vagrantfile Rename rip_docker to install/vm-builder, and start making a build script that uses it 2021-06-29 17:01:47 -07:00

Build the Dangerzone VM for running podman

Build the ISO

You need vagrant: brew install vagrant

vagrant up
vagrant ssh -- /vagrant/build-iso.sh
vagrant destroy

This takes awhile to run. It:

  • Builds a new dangerzone-converter docker image
  • Builds an ISO, which includes a copy of this image
  • Outputs the ISO, as well as vmlinuz and initramfs files, in the vm folder

Run the VM

./run-vm.sh

You can ssh in as the unprivileged user like this (you need to brew install socat):

ssh -i ./ssh-key/id_ed25519 \
    -o LogLevel=FATAL \
    -o Compression=yes \
    -o IdentitiesOnly=yes \
    -o StrictHostKeyChecking=no \
    -o UserKnownHostsFile=/dev/null \
    -o "ProxyCommand nc -U /Users/user/code/dangerzone/rip_docker/vm/connect" \
    -v \
    user@localhost

(doesn't work yet)