I want to be able to access my computer remotely via Secure Shell (SSH). How do I do this
?

$ ssh-keygen -t dsa
$ ssh -2 -v remote_user@remote_ip, for example $ ssh -2 -v ko@192.168.2.104
The authenticity of host '192.168.2.104 (192.168.2.104)' can't be established. RSA key fingerprint is b2:75:eb:............. Are you sure you want to continue connecting (yes/no)? yes
remote_user@remote_computer_name:~$
Comment