8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

VS Code 突然无法在 WSL 中连接(Windows 11)

OfusJK 2月前

27 0

我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然...

我目前正在使用 Remote Explorer 连接到 Ubuntu 20.04 中的 WSL。然后,它突然抛出一个错误,我找不到修复它的方法。我已经调试了将近一天,但仍然没有运气。

在此处输入图片描述

我已经尝试过:

  • -关闭 WSL 并重新启动我的电脑。-卸载 Ubuntu 20.04,然后重新安装。-卸载 VS Code,然后重新安装。-删除里面的 .vscode-server 文件夹
    /home/name/ 目录

我有预感我只需要更改 VS Code 配置,但我不知道该怎么做(我已经检查了设置)。

帖子版权声明 1、本帖标题:VS Code 突然无法在 WSL 中连接(Windows 11)
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由OfusJK在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • Seb 2月前 0 只看Ta
    引用 2

    我昨天遇到了同样的错误,但以下解决方案有效。我使用 wsl 命令连接到我的 wsl,然后输入 rm -r ~/.vscode-server 然后在 WSL 中执行 VSCode code . ,这触发了 VSCode 安装。这解决了问题。

  • 当我按下 ALT 键时,Opera 在 ubuntu 上关闭。问题是什么?~ opera(opera:25045): Gtk-WARNING **: 22:59:18.901: GTK+ 模块 /snap/opera/313/gnome-platform/usr/lib/gtk-2.0/modules/

    当我按下 ALT 键时,Opera 在 ubuntu 上关闭。问题是什么?

      ~ opera
    
    (opera:25045): Gtk-WARNING **: 22:59:18.901: GTK+ module /snap/opera/313/gnome-platform/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so cannot be loaded.
    GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported.
    Gtk-Message: 22:59:18.901: Failed to load module "canberra-gtk-module"
    
    (opera:25045): Gtk-WARNING **: 22:59:18.902: GTK+ module /snap/opera/313/gnome-platform/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so cannot be loaded.
    GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported.
    Gtk-Message: 22:59:18.902: Failed to load module "canberra-gtk-module"
    /usr/share/libdrm/amdgpu.ids: No such file or directory
      ~ 
    
  • 我有一个 ubuntu vps。我已经设置了一个域并通过 nginx 在域路由上运行一个应用程序:example.com。现在想要通过 nginx 在子目录中安装一个 wordpress 博客,路由如下:exa...

    我有一个 ubuntu vps。

    我已经设置了一个域,并在域路由上通过 nginx 运行一个应用程序:example.com。

    现在想要通过 nginx 在子目录中安装一个 wordpress 博客,路由为:example.com/blog。

    我应该怎么做才能解决这个问题?

    server {
    server_name example.com;
    
    gzip on;
            gzip_proxied any;
            gzip_types application/javascript application/x-javascript text/css text/javascript;
            gzip_comp_level 5;
            gzip_buffers 16 8k;
            gzip_min_length 256;
    
            location /_next/static/ {
                    alias /home/username/apps/my-app/.next/static/;
                    expires 365d;
                    access_log off;
            }
    
            location / {
                    proxy_pass http://localhost:3000; #change to 3001 for second app, but make sure second nextjs app starts on new port in packages.json "start": "next start -p 3001",
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection 'upgrade';
                    proxy_set_header Host $host;
                    proxy_cache_bypass $http_upgrade;
            }
    
       
    location /blog {
       # what should I do or add what block to solve my problem and have the wordpress on subdirectory?
    }
    
    
    
    }
    

    我可以在域路由或子域上执行此操作;但对我个人而言,无法做我想做的事情。

    如果您知道什么的话,请帮我解决...谢谢!

  • 如果出现排队(例如排队到收银台),那么如何更好地创建脚本来控制 NPC 行为?我正在尝试在 NPC 脚本中创建一个有限状态机,它将用于...

    如果队列(例如收银台队列)中存在 NPC 行为,那么如何创建脚本来控制 NPC 行为会更好?我试图在 NPC 脚本中创建一个有限状态机,每个 NPC 都有这个脚本,但最近我听说使用 Singleton 也可以实现。

    我还没有找到任何使用 Singleton 控制 NPC 的例子,但也许有人能告诉我这总体上是个好主意吗?目前我还没有计划为 NPC 引入大量逻辑,我所需要的只是他们穿过商店,然后开始在队列中等待轮到他们。

  • 单例只是一个只有一个实例的类(通常带有静态 getter)。是否可以使用单例取决于您的实现。您是否只有一个收银机?如果是,那么您应该将每个队列存储在收银机本身中,而不是单例中。

返回
作者最近主题: