Can't SSH into new Sockit board... how to install openssh-server

I have a new Cyclone V Sockit board rev D.
I was able to get the linux image SoCKit_RevD_LXDE.img written to an SD card and booted into Linux.
After getting networking working, I tried to ssh into the new board. No luck. Apparently the ssh client is there, but no server, so it appears I need to install openssh-server.

After changing /etc/apt/sources.list to use http://old-releases/ubuntu.com/ubuntu/ quantal main universe, my apt-get update seems to work fine, as follows:

root@localhost:/etc/apt# less sources.list
deb http://old-releases.ubuntu.com/ubuntu/ quantal main universe
deb-src http://old-releases.ubuntu.com/ubuntu/ quantal main universe
root@localhost:/etc/apt# sudo apt-get update
Ign http://ppa.launchpad.net quantal InRelease
Ign http://old-releases.ubuntu.com quantal InRelease
Hit http://ppa.launchpad.net quantal Release.gpg
Hit http://old-releases.ubuntu.com quantal Release.gpg
Hit http://ppa.launchpad.net quantal Release
Hit http://old-releases.ubuntu.com quantal Release
Hit http://ppa.launchpad.net quantal/main Sources
Hit http://old-releases.ubuntu.com quantal/main Sources
Hit http://ppa.launchpad.net quantal/main armhf Packages
Hit http://old-releases.ubuntu.com quantal/universe Sources
Hit http://old-releases.ubuntu.com quantal/main armhf Packages
Hit http://old-releases.ubuntu.com quantal/universe armhf Packages
Hit http://old-releases.ubuntu.com quantal/main Translation-en
Hit http://old-releases.ubuntu.com quantal/universe Translation-en
Ign http://ppa.launchpad.net quantal/main Translation-en
Reading package lists... Done
root@localhost:/etc/apt#

However when trying to do apt-get install openssh-server, I get the following errors:

root@localhost:~# apt-get install openssh-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  ca-certificates openssl ssh-import-id
Suggested packages:
  ssh-askpass rssh molly-guard openssh-blacklist openssh-blacklist-extra ufw
  monkeysphere
The following NEW packages will be installed:
  ca-certificates openssh-server openssl ssh-import-id
0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 521 kB/1001 kB of archives.
After this operation, 1872 kB of additional disk space will be used.
Do you want to continue [Y/n]?
WARNING: The following packages cannot be authenticated!
  openssl ca-certificates openssh-server ssh-import-id
Authentication warning overridden.
Err http://ppa.launchpad.net/linaro-maintainers/overlay/ubuntu/ quantal/main openssl armhf 1.0.1c-3ubuntu2.5~linaro1
  404  Not Found
Failed to fetch http://ppa.launchpad.net/linaro-maintainers/overlay/ubuntu/pool/main/o/openssl/openssl_1.0.1c-3ubuntu2.5~linaro1_armhf.deb  404  Not Found
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

So how do I get this working so I can ssh into the board?

thanks

Was able to get it working by adding --fix-missing option.
I had tried that option before I had changed the repository to old-releases, so when it didn’t work I figured the option was probably not doing much.