WSL2에서 Visual Studio Code 시작
2517 단어 우분투20.04WSL2PowerShellVSCode
다음 WindowsUpdate에서 WSL이 시작됩니다(2020년 10월 1일 현재).
Announcing Windows 10 Insider Preview Build 20226
PS C:\> cmd /c ver
Microsoft Windows [Version 10.0.20226.1000]
지금까지는 Visual Studio Code를 기동하고 나서, 리모트 윈도우를 열고 있었습니다만,
커맨드 라인 (PowerShell)에서 시작하는 방법을 알았으므로 메모하십시오.
PowerShell에서 Visual Studio Code를 시작하는 방법은 다음과 같습니다.
배포판은 Ubuntu-20.04를 사용합니다.
PS C:\> wsl -d {ディストリビューション名}
wsl
명령 외에 배포 이름이있는 실행 파일이 있습니다.예를 들어, Ubuntu 20.04 LTS의 경우 우분투2004.exe라는 이름입니다.
PS C:\> ubuntu2004 run code
바로가기 만들기
한 번의 클릭으로 시작할 수 있도록 바로 가기를 만듭니다.
ubuntu2004.exe 명령의 전체 경로 확인
당연히,
which
커멘드는 없네요.PS C:\> which ubuntu2004
which: The term 'which' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
PS C:\> (gcm ubuntu2004).Definition
C:\Users\nandymak\AppData\Local\Microsoft\WindowsApps\ubuntu2004.exe
PS C:\>
바로가기 등록
바로 가기 링크 대상에 다음을 등록합니다.
C:\Users\nandymak\AppData\Local\Microsoft\WindowsApps\ubuntu2004.exe run code
바로 가기에서 시작합니다.
만든 바로 가기를 두 번 클릭하면 일시적으로 콘솔이 나타나면 VSCode가 Windows에서 시작됩니다.
Reference
이 문제에 관하여(WSL2에서 Visual Studio Code 시작), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nandymak/items/030d7c1a2270d7947e2a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)