I have an old Linux machine with no monitor attached (i.e. headless) which I use as a server.
It was running an old version of Linux so I updated it to Ubuntu using the process to upgrade an existing Linux installation over a network connection. Worked like a dream.
At the end of the process I rebooted the machine but then realised that Ubuntu doesn’t run a ssh server by default.
I couldn’t log in on the console because I had no monitor and the default Ubuntu install boots to the Gnome GUI which is impossible to drive ‘blind’. Here’s how I sorted it.
- Open one of the alternate text terminals by hitting
ctrl-alt-F2
on the machine’s keyboard. - Enter your username, press
return
. - Enter your password, press
return
. - Enter
sudo apt-get install openssh-server
, pressreturn
. - Enter your password, press
return
.
With careful typing, that should get you logged in and install and start the ssh daemon. You can then log in remotely.
No Comments Yet