首页 > 系统相关 >VSCode - Change default terminal from Powershell to WSL shell

VSCode - Change default terminal from Powershell to WSL shell

时间:2025-01-08 13:55:31浏览次数:1  
标签:Terminal shell Settings VSCode WSL terminal default

To change the default terminal in Visual Studio Code (VSCode) to the WSL (Windows Subsystem for Linux) shell instead of PowerShell, follow these steps:

1. Open VSCode Settings

  • You can open the settings by clicking on the gear icon in the lower-left corner of the VSCode window and selecting Settings.

  • Alternatively, you can press Ctrl + , to open the settings directly.

2. Search for Terminal Settings

  • In the search bar at the top of the Settings pane, type terminal integrated default profile windows.

3. Change the Default Terminal Profile

  • Under the Terminal > Integrated > Default Profile: Windows section, you should see a dropdown menu.

  • Click the dropdown menu and select WSL Bash (or the specific WSL distribution you have installed, such as Ubuntu).

 

 

New terminal:

 

标签:Terminal,shell,Settings,VSCode,WSL,terminal,default
From: https://www.cnblogs.com/zhangzhihui/p/18659563

相关文章

  • VSCode 远程开发环境中的 Python 虚拟环境切换详解
    哈喽,各位小伙伴们,你们好呀,我是喵手。运营社区:C站/掘金/腾讯云/阿里云/华为云/51CTO;欢迎大家常来逛逛  今天我要给大家分享一些自己日常学习到的一些知识点,并以文字的形式跟大家一起交流,互相学习,一个人虽可以走的更快,但一群人可以走的更远。  我是一名后端开发爱好者......
  • 使用Python执行Shell命令并获取结果
    使用Python执行Shell命令并获取结果是一项非常有用的技能,尤其在自动化任务、系统管理和数据处理方面。Python提供了多种方法来运行Shell命令并捕获输出,最常用的是 subprocess模块。以下是如何使用 subprocess模块执行Shell命令并获取结果的详细指南。1.导入 subprocess模块......
  • WindowsLog_Check:日志分析
    声明免责仅供安全研究与学习之用,若将工具做其他用途,由使用者承担全部法律及连带责任,作者及发布者不承担任何法律及连带责任。介绍该工具支持一键获取windows主机的日志,主机信息,GUI显示,支持使用微步KEY对文件进行MD5分析,支持检测相同MD5的文件,支持对内存进行字符串查询。详细......
  • WSL2 Ubuntu has no software center
     frank@ZZHPC:~$sudoaptlistgnome-software[sudo]passwordforfrank:Listing...Donegnome-software/noble46.0-1ubuntu2amd64frank@ZZHPC:~$frank@ZZHPC:~$gnome-softwareCommand'gnome-software'notfound,butcanbeinstalledwith:sudo......
  • WSL2 Ubuntu Desktop favorites bar not showing
    Thesettingsshowedbyclickingthesettingsicon: frank@ZZHPC:~$sudoaptinstallgnome-shell-extension-dashtodockReadingpackagelists...DoneBuildingdependencytree...DoneReadingstateinformation...DonePackagegnome-shell-extension-dashtodo......
  • [shell/linux] Shell 管道流机制及原理
    缘起:shell管道流Shell有一种功能,就是可以将两个或者多个命令(程序或者进程)连接到一起,把一个命令的输出作为下一个命令的输入,以这种方式连接的两个或者多个命令就形成了管道(pipe)。那么,shell管道流的原理是如何的?以多个管道流命令(catxxx.log|grep-i"keyword"|jq-r......
  • WSL2 - Install a Desktop Environment (e.g., XFCE, GNOME, or KDE)
    1.InstallWSL2andUbuntuIfyouhaven’tsetupWSL2withUbuntu,followthesestepsfirst:OpenPowerShellasAdministratorandrunthefollowingcommandtoinstallWSL:bashCopycodewsl--installAftertheinstallationcompletes,restarty......
  • WSL2
    EnabletheWSLfeature: Install:PSC:\Users\ZhangZhihui>wsl--install正在安装:Ubuntu已安装Ubuntu。正在启动Ubuntu...Installing,thismaytakeafewminutes...PleasecreateadefaultUNIXuseraccount.TheusernamedoesnotneedtomatchyourWin......
  • 通过shell脚本定时采集数据到HDFS
    第一步:创建shell脚本(在虚拟机1下的/export/data目录下执行viuploadHDFS.sh命令,编辑shell脚本文件,具体代码如下:)第二步:执行shell脚本(确保Hadoop集群处于启动状态,进入到/export/data目录下执行shuploadHDFS.sh)第三步:验证Hadoop日志文件是否上传成功(在浏览器中查看,结果如图......
  • Bash Shell的操作环境
    目录1、路径与指令搜寻顺序2、bash的进站(开机)与欢迎信息:/etc/issue,/etc/motd(1)/etc/issue(2)/etc/motd 3、bash的环境配置文件(1)login与non-loginshell(2)/etc/profile(loginshell才会读取)(3) ~./bash_profile(loginshell才会读取)(4)source:读入环境配置文件的指令(5)~/.ba......