csh

Setting Up SSH

I have set up an SSH server on Parabola and Trisquel GNU/Linux before. I'll try to recall how I did it below, so I don't forget.

Trisquel

Trisquel GNU/Linux is based on Ubuntu 14.04 LTS. The method for setting up an SSH server should be the same as on Ubuntu.

  1. sudo apt install ssh
  2. Go to your router's control panel and forward port 22 from your computer.

Parabola

Parabola GNU/Linux is based on Arch GNU/Linux, so setting up an SSH server should be the same as on Arch.

  1. pacman -S openssh
  2. systemctl start sshd.service
  3. If you want SSH enabled permanently: systemctl enable sshd.service
  4. Go to your router's control panel and forward port 22 from your computer.