I guess command line mode counsumes less power on Raspberry, that’s good if u wanna it mint for years.
A question:
[quote]Enable SSH :
Enter $ sudo raspi-config in the terminal, then navigate to ssh, hit Enter and select Enable or disable ssh server.
Accept passwordless SSH sessions
Follow this tutorial, or if you know what you are doing simply run (on your machines)
•$ cat ~/.ssh/id_rsa.pub | ssh pi@ ‘cat >> .ssh/authorized_keys’
Disable SSH password login
Edit /etc/ssh/sshd_config
•$ sudo pico /etc/ssh/sshd_config
and make sure these three parameters are set to no
ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no
Restart SSH with $ sudo /etc/init.d/ssh restart
[/quote]
If I want SSH with passwd, so I can skip this step?