Send an email or a chat for whatever bug, troubleshoot or particular request.
Log in/ Sign up 🔑
Here everything is done from the terminal
with the much suited authentication mechanism ssh.
Consequently, a single cryptographic key pair is the only thing you need to register and log in.
Log into your account.
From the command line only:
-
Generate a fresh new key pair from your computer,
#ssh-keygen -N "" -t ed25519 -f <new_account_key_path> -
And open the dashboard at
crocuda.com.#ssh <remote_url> -i <account_key_path>
Or with a persisted ssh configuration:
-
Append the host
crocuda.comto your ssh configuration at~/.ssh/config, plus some mandatory environment variables.# ~/.ssh/config # Mandatory KYC Env :( # FIRSTNAME="John" # LASTNAME="Doe" # EMAIL="john@d.oe" # PHONE="+0000000000" # Optional Config Env :) # KbdLayout="qwerty" # qwerty | colemakNotice that environment variables must all be set over a single line after the SetEnv option. -
And open the dashboard at
crocuda.com.
Access your VMs.
No need for further configuration.
#ssh -i <account_key> <vm_ip>
-
First, add your VM to the list of known hostnames for convenient name resolution.
# /etc/hostnames # <vm_ipv6> <vm_alias> -
Append this generic configuration to
~/.ssh/config.# ~/.ssh/config -
Connect to your fresh VM.
#ssh <vm_alias>