Installation SSH

Hello

I mentioned the problem in a private message with Pierre Gilles :smiling_face:: but it will be easier to discuss it with all of you here.
First, I want to apologize for my level :roll_eyes:
Anyway!

I installed PuTTY on my laptop running Windows 10 and on my phone


Network Scanner, so far so good.

Network gives me an address for my EQ that I enter into PuTTY but the connection doesn’t happen :face_with_diagonal_mouth: « Network Error: connection refused » — if a login and password are required, where should I add them?

1 Like

Is SSH enabled on your Ubuntu?

Thanks for your reply.

I have no idea and I searched but couldn’t find anything :pensive:

Here’s something to guide you (thanks ChatGPT)

To check if SSH is enabled on your Ubuntu system, you can follow these steps :

  1. Check if the SSH service is installed: Open a terminal and run the following command to see if the OpenSSH package is installed:

dpkg -l | grep openssh-server

If nothing is returned, that means the SSH server is probably not installed. In that case, you can install it with the following command:

sudo apt update
sudo apt install openssh-server
  1. Check if the SSH service is active: Once SSH is installed, you can check if it is active with this command:

sudo systemctl status ssh

If the service is active, you should see a status like « active (running) ». If SSH is not started, you can enable it with this command:

sudo systemctl enable ssh
sudo systemctl start ssh
  1. Check that the SSH port is open: To make sure the SSH port (default 22) is open and listening, use this command:

sudo netstat -tnlp | grep ssh

You should see a line indicating that SSH is listening on port 22 (or another port if you configured it differently).

2 Likes

Thanks for the help.
I was able to install Gladys and start the setup.
:sunglasses:

2 Likes