ollietrex wrote:
I have upgraded to ubuntu 9.10 and everything went ok apart from when I log into lish I get the screen.
* Stopping NTP server ntpd
* Starting NTP server ntpd
* Stopping NTP server ntpd
* Starting NTP server ntpd
This doesn't sound like a problem with ntpd at all, as for some reason under upstart ntpd restarts itself like it's going out of style. I've observed this on my own 9.10 install.
ntpd isn't hanging on your console, it's that you don't have anything listening on your Linode's virtual console. From SSH, try this:
Code:
mknod /dev/hvc0 c 229 0
vim /etc/init/hvc0.conf
Add this to hvc0.conf:
Code:
# hvc0 - getty for Linode console
start on stopped rc RUNLEVEL=[2345]
stop on runlevel [!2345]
respawn
exec /sbin/getty -8 38400 hvc0
Back to shell:
Code:
:wq
service hvc0 restart
And check LISH again.