Saturday, May 3, 2025

Connecting Raspberry Pi via Putty

 Steps to connect your Raspberry pi (Running with Linux) to Putty (Running on Windows 11):

1. Install ssh on Raspberry Pi Linux using command

    sudo apt install openssh-server

2. Enable Ssh Service

    sudo service ssh start

3. Make it always Enabled on Bootup

   sudo systemctl enable ssh

4. Read Ip address of Raspberry Pi

5. Open Putty Tool on Windows Machine, Enter Ip address and connect



6. It will open Window like shown below, Login with credentials and password.


7. You are ready to control Raspberry Pi Linux with Putty tool. 

No comments:

Post a Comment

Hello World on Ubantu Docker Image

 Steps to run simple C program on Ubantu Docker image: 1. Following files needs to be created in Working Directory folder.    hello.c    Doc...