Skip to content
lava6666 edited this page Oct 21, 2022 · 35 revisions

NOTE: The contents of this page are very likely obsolete.

Feel free to add your experience!

Additional information about quine-relay on Arch Linux

  • Just install quine-relay from the AUR. (Check the comments, I'm sure it's fixable somewhere down in there.)

  • Run quine-relay to start compiling the files in ~/.quine-relay.

If there should be problems with installing one of the packages, report a bug at https://bugs.archlinux.org/ for the official packages, or leave a comment for the relevant package at https://aur.archlinux.org/.

OS X Mountain Lion with Homebrew

Amazon Machine Image (AMI)

Vagrant

  1. Make sure Vagrant and VirtualBox are installed.
  2. Checkout the project.
  3. In its root folder create a Vagrantfile with these contents:
require_relative 'src/code-gen.rb'

Vagrant.configure("2") do |config|

  config.vm.box = "raring32"
  config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/raring/current/raring-server-cloudimg-i386-vagrant-disk1.box"

  config.vm.provision :shell, :inline => "
    echo 'golang-go golang-go/dashboard boolean true' > preseed.conf
    sudo debconf-set-selections preseed.conf
  "

  apts = CodeGen::List.reverse.flat_map {|c| c.steps.map {|step| step.apt } }
  config.vm.provision :shell, :inline => "sudo apt-get install -y #{ (apts + ["tcc"]).compact.uniq.sort.join " " }"

end
  1. Run vagrant up and the Ubuntu machine will be automatically built for you (~ 1GB download).
  2. Follow the instructions to build the project
  3. Enjoy!
Troubleshooting

Long "Waiting for VM to boot"?
-> forcefully power off the VM in the VirtualBox GUI and run "vagrant up" again.

Alternatives

Clone this wiki locally