SSH to the switch
- 'telnet localhost'
- 'en'
- config
- interface X/XX the port that you want and 'shut'
- end
- write memory
- exit
- exit
that's it
This Blog consists of all computer error, difficulties, repair, security and troubleshooting encounters.
SSH to the switch
that's it
"
The simplest way to update Raspbian, is in the Terminal. Do this via the desktop menu, or by pressing Ctrl + Alt + T.
Begin by updating the repository package list:sudo apt update
When this is done, run the upgrade command:
sudo apt dist-upgrade
Follow any prompts and wait for the Pi to be upgraded. When you're done, type:
sudo apt clean
This will discard any unneeded files that have been downloaded as part of the upgrade. Finish by restarting:
sudo reboot
When your Raspberry Pi has restarted, you'll be using the latest version of Raspbian. Well done!
As noted, Raspbian is based on Debian and follows the parent distro's naming conventions.
To upgrade Raspbian Stretch to Raspbian Buster, start by updating and upgrading to the most recent packages.
sudo apt update
sudo apt dist-upgrade -y
Next, the firmware should be updated with:
sudo rpi-update
Upgrading to Raspbian Buster means switching repositories. This is easily done in the terminal by editing the sources:
sudo nano /etc/apt/sources.list
Use the arrow keys to browse through the list until you find
deb http://raspbian.raspberrypi.org/raspbian/ stretch main contrib non-free rpi
Change this line, replacing "stretch" with "buster":
deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
Press Ctrl+X to save and exit, then remove a large changelog file:
sudo apt-get remove apt-listchanges
This will save time when the operating system updates.
With the sources updated you can run a full package update and upgrade:
sudo apt update
sudo apt dist-upgrade
This will take a while to complete, so be patient. When done, use
sudo apt autoremove -y
to discard old packages with changed dependencies, then
sudo apt autoclean
This clears the package cache, removing data no longer available for download, and saving space on your Raspberry Pi.
To complete the upgrade from Raspbian Stretch to Raspbian Buster, reboot.
sudo reboot
"
Thanks to the author.
SSH on raspberry pi image is disabled by default now.
Below are the steps to enable it which is helpful for headless setup.
"
Introduction
To have a full Raspberry Pi experience, you should use Raspbian, the OS developed exclusively for Raspberry Pi. Raspbian is a Debian-based system optimized to utilize Raspberry Pi hardware most efficiently. If you want to transfer data or administer the device remotely via SSH, you need to enable SSH first.
Follow the steps in this guide to learn how to enable SSH on Raspberry Pi without a screen, from the GUI, or using the raspi-config file. We will also show you how to find the IP address of your Raspberry Pi and how to SSH into the device.
Prerequisites
If you installed any of the Raspbian versions from late 2016 onwards, then SSH is disabled by default. The reason behind this decision was to improve security. Since all Raspbian images come with a user “pi” and the default password “raspberry,” it was easy for hackers to use this in their favor.
However, you can easily enable SSH on Raspberry Pi even if you do not have a monitor and keyboard connected. We will explain three possible ways to enable SSH on Raspbian. Read through the guide and choose the method that you prefer.
Many users run these devices as a web or media server and configure them via SSH. If you use your Raspberry Pi without a monitor and keyboard, then the only way to enable SSH in headless mode is to use a blank boot file.
For this task, you need to create an empty ssh file on another machine. We will use this file on the Raspbian boot SD card to enable SSH. If you do not feel like creating the file yourself, we made the blank ssh boot file available for download.
To enable SSH on Raspberry Pi in headless mode, follow these steps:
1. Make sure you properly installed Raspbian on your Raspberry Pi microSD card. If you have already done so, turn off the device and remove the card.
2. Put the microSD card in the card reader of your computer. Wait until the card mounts. You may need to use a microSD to SD card adapter. All recent Raspberry Pi versions use microSD instead of standard-size SD cards.
3. Navigate to the boot folder. This is the root folder of your SD card. Boot is the default volume name when you install a Raspbian system on an SD card. If you are on a Windows machine, use any file manager, such as Explorer. On macOS or Linux, open a terminal window and type:
cd /Volumes/boot
Note that the name of your SD card can be something other than “boot”. If it is, open the root volume folder and proceed with the next steps.
4. In the boot volume, create a file without an extension and name it ssh.
touch
command while in the boot directory to create a blank ssh file:touch shh
5. Safely remove or eject the card from the computer and insert it again in your Raspberry Pi.
6. Boot up Raspberry Pi.
Every time you turn on the Pi board, the device looks for the ssh file. When the device finds the file, then SSH is enabled automatically. If you correctly created an empty ssh file without an extension, you can now SSH into your device.
Things get much faster and easier when you have a monitor and peripherals connected to your Raspberry Pi. If you are used to configuring your device using a GUI, follow the steps below.
Once your device boots up:
1. Click the raspberry logo at the top-left corner.
2. Select Preferences > Raspberry Pi Configuration.
3. Navigate to the Interfaces tab in the configuration window.
4. Enable SSH in the second line.
5. Click OK to save the changes.
That’s it. Your Raspberry Pi is now accessible via SSH. Make sure the device is connected to the internet before trying to establish an SSH session.
If you are used to configuring your system from the terminal, you can choose one of the two options below.
To enable SSH using the raspi-config tool:
1. Open the terminal on your Raspberry Pi and run the tool by typing:
sudo raspi-config
A BIOS-looking raspi-config tool loads.
2. Use the arrows on your keyboard to select Interfacing Options.
3. Select the P2 SSH option on the list.
4. Select <Yes> on the “Would you like the SSH server to be enabled?” prompt.
5. Hit Enter on the “The SSH server is enabled” confirmation box.
6. Navigate down and select Finish to close the raspi-config.
You can close the terminal window. Your device is now ready to accept SSH connections.
The final option to enable SSH on Raspberry Pi is to start the systemctl
service from your terminal.
To do so, load the terminal and run these two commands:
sudo systemctl enable ssh
sudo systemctl start ssh
The ssh service is now both enabled and started.
Now that you enabled SSH on your Raspberry Pi, you can use SSH to connect from another machine.
Before we can continue, you need to find the IP address of your device. While you are logged in the Raspbian system, open the terminal and run this command:
hostname -l
Alternatively, you can run theifconfig
or ip a
command to find the IP address. We prefer using the hostname
command as it only displays the address without other network information.
Using SSH to remotely manage a Raspberry Pi device is the same as managing any other Linux-based machine. Both macOS and Linux have SSH clients by default.
To connect via SSH to your Raspberry Pi from the terminal, use this command:
ssh pi@[raspberrypi_ip_address]
Note: Pi is the default user account. If you use another account name, type it in instead of Pi. Use your device's IP address identified in the previous step.
The first time you connect to your Raspberry Pi, you will get a prompt to accept the RSA key. Type yes, and the new SSH session starts.
Windows users can SSH into Raspberry Pi using PuTTY.
Start the tool and enter the IP address of your device. Make sure SSH is selected, and the port set to 22.
Click Open to start a new session. Enter your Raspberry Pi’s account username and password.
In November 2016, SSH was disabled by default on Raspbian. This move was made to prevent Raspberry Pi devices from potentially becoming a part of an IoT botnet.
Now that you have decided to use SSH to connect to your Raspberry Pi, we advise you to change the default account password.
Since all Raspbian installations come with a default account and password, it is easy for hackers to log into your device. To make your device less vulnerable, change Raspberry Pi’s default password.
1. To do so, run the raspi-config tool from the terminal on your device:
sudo raspi-config
2. Select the Change User Password option.
Follow the instructions to change the password. Your Raspberry Pi is now ready and more secure for SSH access. We recommend you take further steps to improve SSH security.
"