Hi I have installed openssh-server on my Aspire One, and as an ssh server, it does what i need it to. The problem with it is that it doesn't start on boot. So each time i restart the laptop, i have to manually [code]sudo /etc/init.d/sshd start[/code] before i can ssh to it. What i'd rather have is the ssh server start on boot. Now knowing a reasonable amount about Redhat based systems from my previous years working with linux, i know that in the rcX.d folders (where the X is the runlevel number) you have services, those prefixes with a K wont start on boot, those prefixed with an S will start. So i checked the default runlevel on my machine (from /etc/inittab) and i have: [quote]id:5:initdefault:[/quote] So the AA1 will boot into runlevel 5 by default, so i have checked /etc/rc5.d and can see: [code][user@localhost rc5.d]$ ls -al *sshd lrwxrwxrwx 1 root root 14 2008-09-30 22:52 S55sshd -> ../init.d/sshd[/code] This to me says that sshd will start when runlevel 5 is called (if it's not already started). Yet as i say, this doesn't start. Does anyone know of any oddities to the service control manager in the Aspire One?