- Insert Rescue Disk and boot server.
- At the first prompt type “linux rescue” and hit enter.
- Follow boot disk prompts to start networking. Enter the system’s ip address, netmask, gateway and name server.
- Continue with prompts until the root partition is mounted and you get a command prompt.
- Verify network configuration with ifconfig and route.
- Use the following commands to start sshd:
12345cd /mnt/sysimagechroot /mnt/sysimagemount /dev/pts/sbin/service sshd start
You should now be able to SSH into the server.





3 Responses
Thanks, this was very helpful. One small note for anyone who stumbles onto this in the future though:
/sbin/service ssh start
should be
/sbin/service sshd start
Good eye … correction has been made.
awesomesauce, thanks for this… mount /dev/pts was the missing link in my equation