Update ssh, add videos ssh and wsl learn

This commit is contained in:
bamurtaugh 2020-10-09 16:48:56 -07:00
Родитель a5fdb6b883
Коммит d4537e61eb
2 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -13,12 +13,22 @@ MetaDescription: Learn to use SSH connections to lab machines with Visual Studio
SSH, or the secure shell protocol, lets you access a remote computer or virtual machine securely over a network connection.
You can SSH into another machine from VS Code and interact with files and folders anywhere on that remote filesystem. You can also take advantage of any tools or dependencies installed on that remote machine.
You can SSH into another machine from VS Code and interact with files and folders anywhere on that remote filesystem. If you have an app located on a different computer, you could use SSH to connect to it and access your app, view its files, and even modify, run, and debug it.
You can also take advantage of any tools or dependencies installed on that remote machine. You could connect to remote machines very different than your local machine- for instance, they could have a completely different operating system, different tools installed, or much stronger computing power.
In the classroom, you might SSH into lab machines to access computers with certain dependencies required for an assignment (like a specific version of Python or a C++ compiler), a different operating system than your own, or source code or automatic tests pre-loaded from your professor.
## Get started with SSH in VS Code
To get started with using SSH in VS Code, you'll need to download the [Remote - SSH extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh) from the Extension Marketplace.
Check out the following video to see an example of using Remote - SSH in action:
<iframe src="https://youtube.com/embed/rh1Ag41J6IA?rel=0&amp;disablekb=0&amp;modestbranding=1&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
As demonstrated above, we can SSH into a more powerful virtual machine to greatly speed up the execution time of our programs.
We also highly recommend checking out the step-by-step SSH tutorial.
### [Remote - SSH Getting Started Tutorial](https://code.visualstudio.com/docs/remote/ssh-tutorial)

Просмотреть файл

@ -26,6 +26,8 @@ Check out Remote - WSL in action:
The typical flow is you'll open a Linux command prompt, navigate to a folder of your choosing, and type `code .` to launch a new instance of VS Code connected to WSL. From there, you get the full experience of using VS Code as if you were developing on Linux, except you're on a Windows machine!
<iframe src="https://youtube.com/embed/mIHprjsSO9o?rel=0&amp;disablekb=0&amp;modestbranding=1&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
We highly recommend checking out the step-by-step WSL tutorial to learn more.
### [Remote - WSL Getting Started Tutorial](https://code.visualstudio.com/docs/remote/wsl-tutorial)