Skip to content
Home » ssh

ssh

Visit Tacticalware.com for information related to this tag and others. We look forward to assisting in your tech projects with our in-depth knowledgebase…

ENABLE SSH ON THE RASPBERRY PI 4

Enabling ssh on the Raspbian Operating system for the Raspberry Pi 4, is simple and quick. Here is a quick rundown on the steps for it.

Once you are on the Desktop

Click the Raspberry iscon
Select Preferences
Click Raspberry Pi Configuration
Navigate to the Interfaces tab
Select Enable next to SSH
Click OK
Reboot

Now you can SSH into the Raspberry Pi using Putty from another computer. All you need to know if the IP Address on the Pi

Hardware that I used:
Raspberry Pi 4 (4gb)
https://amzn.to/3q551IO

SanDisk 32GB Ultra microSDHC UHS-I Memory Card with Adapter
https://amzn.to/2Vfvo0y

CanaKit 3.5A Raspberry Pi 4 Power Supply (USB-C)
https://amzn.to/3fNTYPu

CanaKit Raspberry Pi 4 Micro HDMI Cable – 6 Feet
https://amzn.to/33u5hr9

Western Digital 500GB WD_Black SN750 NVMe
https://amzn.to/3nZ5pH4

Plugable USB C to M.2 NVMe Tool-free Enclosure
https://amzn.to/3lflV3L

Thanks for reading…….


Install SSH on UBUNTU 12.10

How to install ssh on UBUNTU 12.10

From the command prompt, type:

sudo bash

apt-get install openssh-server

nano /etc/ssh/sshd_config

uncomment the # from the line that says
#Listen 0.0.0.0
and set it to
Listen 192.168.1.10 or whatever the ip address is on your Ubuntu system

Press:
CTRL and O at the same time to save the file

Press:
CTRL and together to exit

sudo /etc/init.d/ssh restart

Now try to connect to your Ubuntu system from another computer over ssh and it will work