I broke the sshd installation on a remote host and now ssh doesn't startup. I can mount the file system on the host through a rescue system.
The rescue system is debian based and the host system is centos I'm currently investigating repairing using yum:
apt-get install yum
chroot /mnt/rescue yum install --installroot=/mnt/rescue/ openssl
But I'm running into problems as $releasever isn't defined, and it doesn't recognize mirrorlist.txt (no valid mirrors
)
I'm wondering if there are any other options, e.g. placing a lightweight standalone ssh programme e.g. dropbear in /etc/init.d which will allow a login upon the next reboot?
Or should I persist with the yum
approach?