presentations_compsoc/slides/skynet/02_setup.md
Brendan Golden f21056566c
All checks were successful
On_Push / build (push) Successful in 27s
On_Push / deploy (push) Successful in 7s
slides: got a solid chunk of teh Skynet introduction converted
2025-09-22 22:44:03 +01:00

3 KiB

title sub_title author date theme
Skynet Setup Skynet accounts Brendan Golden 2023-09-23
name
catppuccin-latte

Skynet: Setup

  • We are going to divide it into two segments
    • New Members
    • Returning Members
  • First up is New Members

Setup: New Members

  1. Be a fully paid up member of UL Computer Society
  2. Go to https://account.skynet.ie/signup.
    • Enter the same email used for UL Wolves
  3. You will get an email to verify your address, follow the link.
  4. Choose a username and password.
  5. Congrats! You are in! heist music

Setup: Returning Members

Set Email

  1. Please go to https://account.skynet.ie/modify.
    • Enter the same email used for UL Wolves
  2. Congrats! You are in! heist music

Recovery

Forgotten Username

If you have forgotten your username.
Use https://account.skynet.ie/recover/username

Forgotten Password

If you have forgotten your password.
Use https://account.skynet.ie/recover/password

Setup: SSH Key

SSH keys are used for a variety of reasons:

  • Logging into servers
    • Authentication
  • CI/CD Pipelines

Setup: SSH Key - Creation

Prepwork

cd ~/.ssh
mkdir skynet
cd skynet

Creation

ssh-keygen -t ed25519 -C "<comment>"
  • Location: $USERNAME
    • $USERNAME is your Skynet username.
    • For example silver for me
  • Password: Press Enter twice
    • This sets no password on the file

This creates $USERNAME.pub which we will use later.

Setup: SSH Key - Config

Now we have to create a config file for ssh.

Windows

cd ../
"" > config

Linux

cd ../
touch config

In that config file pop this:

Host *.skynet.ie
   User $USERNAME
   IdentityFile ~/.ssh/skynet/$USERNAME
   IdentitiesOnly yes

Setup: SSH Key - Account

  • Now we need to add it to your account.
  • Remember the $USERNAME.pub in ~/.ssh/skynet ?
  • We now need to read it
cat ~/.ssh/skynet/$USERNAME.pub

Congratulations, you now have full access to all of Skynet's services!
Now to learn how to access them!