How to enable SSH on Ubuntu
This could come in handy if your Desktop machine is at a Remote Location and you need to gain access to it. NOTE: SSH = Secure Shell Open a new Terminal Window (CLI) and type in the following command to install SSH {codecitation class=“brush: bash;"}sudo apt-get install ssh{/codecitation} After installation you can test it to SSH to your localhost (use your standard username and password) Example {codecitation class=“brush: bash;"}ssh localhost{/codecitation} ...