ssh into wsl2
I recently spilled water on my 14 year old Dell Inspiron laptop, which I run Ubuntu on and perform coding on. I also have a Chromebook laptop that does not have a lot of hard drive space or horsepower. I also have a newer laptop, but wife is often using it. So, I wanted to ssh into the newer laptop from the Chromebook. I previously set up wsl2 on the new laptop. It allows me to run Ubuntu from wsl2. I also have docker desktop installed on the new laptop, allowing me to kick off docker container applications. If you google ssh into wsl2 or use the link below, you'll find instructions to ssh into wsl2: https://share.google/aimode/IRaXwFbkogMS3BjfP I've also included the instructions from google (see below) for your convenience. It was pretty simple to set up and works great. Steps to set up SSH in WSL2 Update and install OpenSSH server in WSL2: Open your WSL terminal. Run the following commands: sudo apt update sudo apt install openssh-server Configure the SSH server ...