* '''Zone:''' Now change this to: europe-west1-c
* Let the rest be default and click '''Create'''.
== Access Virtual Machine instance ==
* Go to https://console.developers.google.com/compute
* In the line of '''relax''', click '''SSH'''
* This should open a '''browser terminal window'''
== Get relax and unpack ==
{{#tag:source|
v={{current version relax}}
# Get relax
curl http://download.gna.org/relax/relax-$v.GNU-Linux.x86_64.tar.bz2 -o relax-$v.GNU-Linux.x86_64.tar.bz2
# Make home bin
mkdir -p $HOME/bin
tar xvjf relax-{{current version relax}}.GNU-Linux.x86_64.tar.bz2
rm relax-{{current version relax}}.GNU-Linux.x86_64.tar.bz2
ln -s $HOME/relax-{{current version relax}}/relax $HOME/bin
|lang="bash"
}}