-
-
Notifications
You must be signed in to change notification settings - Fork 556
Installation
Alexander Rødseth edited this page Aug 5, 2013
·
35 revisions
Feel free to add your experience!
Install the needed packages with your favorite AUR helper (yaourt is just an example). Don't use --noconfirm
unless you prefer it. All packages up to c-intercal are in the official repositories, while the rest are unofficial user-submitted packages (in AUR):
$ yaourt -S --needed --noconfirm algol68g bash boo chicken clisp clojure fpc gawk gcc gcc-fortran ghc \
go gprolog groovy llvm make mono nodejs ocaml octave parrot perl php python r ruby scala tcc tcl \
c-intercal coffee-script f2c gforth icon iverilog open-cobol pike regina-rexx-das swi-prolog ucblogo \
vala
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/.
- http://vedantmisra.com/2013/07/yusuke-endohs-amazing-quine-relay/
- http://thecloudmarket.com/image/ami-744b351d--quine-relay
- Make sure Vagrant and VirualBox are installed.
- Checkout the project.
- 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
- Run
vagrant up
and the Ubuntu machine will be automatically built for you (~ 1GB download). - Follow the instructions to build the project
- Enjoy!
Long "Waiting for VM to boot"?
-> forcefully power off the VM in the VirtualBox GUI and run "vagrant up" again.