1

I installed Ubuntu 14.04.02 LTS on my Raspberry pi 2 model B.

My Raspberry pi 2 is connected to my home router with LAN cable and monitor with HDMI cable.

When Raspberry pi is on, the monitor displays,
Monitor

Since I don't have a usb keyboard, I am unable to type directly in my Raspberry PI.

So this is what I did :

I find my Raspberry's IP address(192.168.7.167) on my router's admin page.

When I sent ping to this IP address from my Macbook, it responds pretty well.

So, I tried to access my Raspberry pi using ssh on my Macbook,

ssh ubuntu@192.168.7.167

But there is an error,

ssh: connect to host 192.168.7.167 port 22: Connection refused

I have no idea why I can't access using ssh.

Please give me some advice on this matter. Thanks

Human
  • 1,198
  • 4
  • 15
  • 35
chois
  • 11
  • 1

2 Answers2

3

It seems that your SSH server is not running. Normally, you would type:

sudo raspi-config

to configure and run SSH server. However, without USB keyboard, you might only mount SD card and via chroot, execute aforementioned command. You might also try to find RPi image with SSH server running by default.

It might be also helpful to take a look on this post: Enabling SSH on RPi without screen - keystrokes for raspi-config?

bakrag
  • 31
  • 1
-2

Try to use https://www.virtualbox.org/ an enable ssh. I don't know if it works.

Markus
  • 1
  • 1