runv.club

Join

An SSH key on your computer and a first contact with entre@runv.club — the simple way, on any system.

Join request entre@runv.club

What you need

A computer and a few minutes

You just need to generate an SSH key, copy the public part, and follow the guided flow at entre@runv.club.

No rush

You don't need to know it all yet

If this is your first time with SSH, that's fine. The whole point of this page is to make that first step simpler and friendlier.

In short

  1. Generate an SSH key pair on your computer. You'll only use the public key in your request.
  2. Connect with ssh to entre@runv.club and follow what shows up on screen.
  3. Wait for review. The process is manual and there's no instant sign-up.

If this is your first time using SSH, that's fine: this page was written to help you take that first step at your own pace.

Linux

In the terminal, generate an Ed25519 key and copy the public key (.pub) line.

ssh-keygen -t ed25519 -C "your-email-or-pc" -f ~/.ssh/id_ed25519_runv
cat ~/.ssh/id_ed25519_runv.pub

macOS

In Terminal (Spotlight: "Terminal"), use the same commands as Linux. OpenSSH already ships with the system; if you like, you can add the key with ssh-add ~/.ssh/id_ed25519_runv.

ssh-keygen -t ed25519 -C "your-email-or-pc" -f ~/.ssh/id_ed25519_runv
cat ~/.ssh/id_ed25519_runv.pub

Windows

In PowerShell or Windows Terminal, first check whether the client exists with ssh -V. If it's missing, install the OpenSSH Client under Settings → Apps → Optional features.

ssh-keygen -t ed25519 -C "your-email-or-pc" -f $env:USERPROFILE\.ssh\id_ed25519_runv
Get-Content $env:USERPROFILE\.ssh\id_ed25519_runv.pub

Never share the file without .pub. That's the private file and it should stay with you only.

Connecting to entre@runv.club

Linux / macOS:

ssh -i ~/.ssh/id_ed25519_runv entre@runv.club

Windows (PowerShell):

ssh -i $env:USERPROFILE\.ssh\id_ed25519_runv entre@runv.club

The first time, accept the fingerprint if you're connecting to the right server. If your key has a different name or is in the default path, you can leave out -i.

Questions or issues: admin@runv.club. We prefer Ed25519 keys; ECDSA and RSA may also be accepted depending on server policy.

Once your account is approved, you'll be able to log into the pubnix, build your personal page, explore the environment, and chat with the community on IRC.