How to create a persistent ssh tunnel using autossh

Table of ContentsCreating the SSH TunnelMaking the Tunnel Persistent Creating a persistent SSH tunnel involves two steps: first, creating the tunnel itself, and second, ensuring that the tunnel is automatically re-established if the connection is lost. Creating the SSH Tunnel The basic command for creating an SSH tunnel is: ssh -L [local port]:[destination host]:[destination port] ...

How To install Portainer on Raspberry Pi (Debian-based OS)

Content in this post is a follow-up of How To install Docker on Raspberry Pi (Debian-based OS) Table of ContentsGet PortainerStart PortainerAccess and Setup Portainer Get Portainer Step 1: Open a terminal window on your Raspberry Pi Step 2: Pull the Portainer image from Docker Hub sudo docker pull portainer/portainer-ce:linux-arm64 1 sudo docker pull portainer/portainer-ce:linux-arm64 ...

How To install Docker on Raspberry Pi (Debian-based OS) 1

Table of ContentsStep 1: Update the Raspberry Pi Step 2: Install Docker Step 3: Add the Pi user to the Docker group Step 4: Start the Docker service Step 5: Test the installation Step 6: Enable the Docker service (optional) Step 7: Install docker-compose Step 1: Update the Raspberry Pi Before installing Docker, you will ...

Change Waiting Time for scandisk

To change the waiting time for scandisk to run click: start -> run type: cmd(to open command prompt) type: CHKNTFS /T:4 (where 4 is the amount of wait time – in seconds.) for more information you can type- CHKNTFS /? at the command prompt

Change Boot Order – Ubuntu and Windows 7

Description : So you have a dual booting (Ubuntu and Windows) system?? Here is how to change the default OS when dual booting Ubuntu (10.10) and Windows 7 Note: applicable when GRUB is default boot loader Solution: 1. Open terminal. 2. cd /boot/grub 3. sudo gedit grub.cfg(menu.lst for previous versions) 4. provide password. 5. You’ll ...