1

I don't have a monitor just at the hand, but I want to use my Raspberry Pi with Ubuntu Mate... How do I activate the SSH on it? When trying to ssh to it, it says 'Connection refused'

Daniel Cortild
  • 115
  • 1
  • 6

2 Answers2

0

Unluckily you have to do first configuration with the hdmi and enable the ssh service. This because a recent patch that disabled ssh on first boot. Regards, sorry for my bad english

0

After you attach a monitor to your Pi3, open up a terminal and enter in

sudo systemctl enable sshd
sudo systemctl start sshd

I recommend installing ufw on any Pi device

sudo apt install ufw

Now to allow ssh connections:

sudo ufw allow ssh
Michael Wilcox
  • 262
  • 1
  • 11