Dietrich wrote:
one more question please, is there a way to ssh with root directly to my linode?
thanks again.
As has been already said keypairs are much safer than passwords for this.
I'm sure I'm not alone in getting constant password guessing attempts on my linode.
The really quick guide to setting up passwordless root login to your linode:
on your home machine as your user do:
ssh-keygen -t rsa -b 1024
<follow prompts - default everything>
scp ~/.ssh/id_rsa.pub to <your linode>:~root/.ssh/authorized_keys
on your linode:
set/check 'PermitRootLogin yes' is set in /etc/ssh/sshd_config.
optional - set 'PasswordAuthentication no' to stop password logins.
If you change the file restart sshd.
You should be able to get in with ssh root@<your linode> without a password.