Hello
I mentioned the problem in a private message with Pierre Gilles : but it will be easier to discuss it with all of you here.
First, I want to apologize for my level
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 « 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
guim31
October 8, 2024, 6:14pm
4
Here’s something to guide you (thanks ChatGPT)
To check if SSH is enabled on your Ubuntu system, you can follow these steps :
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
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
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.
2 Likes