Thursday, October 24, 2013

Remote login Raspberry Pi SSH server

Before you can login Raspberry Pi remotely, make sure you have setup and enable SSH server in your Raspberry Pi, and to know the IP address of your Raspberry Pi.

To login Raspberry Pi from a remote PC running Linux, enter the command in Terminal:

$ ssh <ip address> -l pi

or login with X-windows with -X option:

$ ssh -X <ip address> -l pi

example:
$ ssh 192.168.1.108 -l pi
$ ssh -X 192.168.1.108 -l pi

No comments: