远程主机可能不符合glibc和libstdc++ VS Code服务器的先决条件

报错信息

VSCode无法连接远程服务器,终端一直提醒:

[22:46:01.906] > Waiting for server log...
[22:46:01.936] > Waiting for server log...
[22:46:01.951] > 
[22:46:01.967] > Waiting for server log...
[22:46:01.982] > 
[22:46:01.999] > Waiting for server log...
[22:46:02.026] > 
[22:46:02.045] > Waiting for server log...
[22:46:02.075] > Waiting for server log...

VSCode右下角提示:
​​​​

VSCode最近更新了一次版本,到了1.86.0,服务器中有个GLIBC库,VSCode1.86.0版本对低于v2.28.0版本的GLIBC不再满足需求。
在这里插入图片描述

解决方法:

  1. 回退VSCode版本到1.85版本。
  2. 设置禁止自动更新:VSCode设置中搜索:Update:Mode ,值改为none即可。

各平台1.85.0版本下载链接,点击即可下载:

Download typeURL
Windows x64 System installerhttps://update.code.visualstudio.com/1.85.0/win32-x64/stable
Windows x64 User installerhttps://update.code.visualstudio.com/1.85.0/win32-x64-user/stable
Windows x64 ziphttps://update.code.visualstudio.com/1.85.0/win32-x64-archive/stable
Windows x64 CLIhttps://update.code.visualstudio.com/1.85.0/cli-win32-x64/stable
Windows Arm64 System installerhttps://update.code.visualstudio.com/1.85.0/win32-arm64/stable
Windows Arm64 User installerhttps://update.code.visualstudio.com/1.85.0/win32-arm64-user/stable
Windows Arm64 ziphttps://update.code.visualstudio.com/1.85.0/win32-arm64-archive/stable
Windows Arm64 CLIhttps://update.code.visualstudio.com/1.85.0/cli-win32-arm64/stable
macOS Universalhttps://update.code.visualstudio.com/1.85.0/darwin-universal/stable
macOS Intel chiphttps://update.code.visualstudio.com/1.85.0/darwin/stable
macOS Intel chip CLIhttps://update.code.visualstudio.com/1.85.0/cli-darwin-x64/stable
macOS Apple siliconhttps://update.code.visualstudio.com/1.85.0/darwin-arm64/stable
macOS Apple silicon CLIhttps://update.code.visualstudio.com/1.85.0/cli-darwin-arm64/stable
Linux x64https://update.code.visualstudio.com/1.85.0/linux-x64/stable
Linux x64 debianhttps://update.code.visualstudio.com/1.85.0/linux-deb-x64/stable
Linux x64 rpmhttps://update.code.visualstudio.com/1.85.0/linux-rpm-x64/stable
Linux x64 snaphttps://update.code.visualstudio.com/1.85.0/linux-snap-x64/stable
Linux x64 CLIhttps://update.code.visualstudio.com/1.85.0/cli-linux-x64/stable
Linux Arm32https://update.code.visualstudio.com/1.85.0/linux-armhf/stable
Linux Arm32 debianhttps://update.code.visualstudio.com/1.85.0/linux-deb-armhf/stable
Linux Arm32 rpmhttps://update.code.visualstudio.com/1.85.0/linux-rpm-armhf/stable
Linux Arm32 CLIhttps://update.code.visualstudio.com/1.85.0/cli-linux-armhf/stable
Linux Arm64https://update.code.visualstudio.com/1.85.0/linux-arm64/stable
Linux Arm64 debianhttps://update.code.visualstudio.com/1.85.0/linux-deb-arm64/stable
Linux Arm64 rpmhttps://update.code.visualstudio.com/1.85.0/linux-rpm-arm64/stable
Linux Arm64 CLIhttps://update.code.visualstudio.com/1.85.0/cli-linux-arm64/stable

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/457545.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

从零开始手写mmo游戏从框架到爆炸(七)— 消息封装

导航:从零开始手写mmo游戏从框架到爆炸(零)—— 导航-CSDN博客 上一篇,我们初步把消息handler 注册到了服务中,在进行后续工作之前我们需要再做一些准备工作。 第一:把之前自己管理的bean放到spring中…

微信小程序(三十七)选项点击高亮效果

注释很详细&#xff0c;直接上代码 上一篇 新增内容&#xff1a; 1.选择性渲染类 2.以数字为需渲染内容&#xff08;数量&#xff09; 源码&#xff1a; index.wxml <view class"Area"><!-- {{activeNumindex?Active:}}是选择性添加类名进行渲染 -->&l…

RCS系统之:机器人状态

在设计RCS系统平台时&#xff0c;机器人总共设计状态有&#xff1a; 离线模式&#xff1b; 如图&#xff0c;18号机器人呈灰黑色&#xff0c;表示机器人没有上电状态 工作模式&#xff1b; 如图&#xff0c;10号机器人成绿色&#xff0c;表示机器人处于工作模式&#xff0c;等…

关于TDSQL(MySQL)的简单知识分享

0. 前言 最近在系统改造过程中&#xff0c;接触到了国产分布式数据库TDSQL&#xff0c;记录一下关于TDSQL的部分知识点。 1. TDSQL简介 TDSQL是腾讯推出的一款兼容MySQL的自主可控、高一致性分布式数据库产品。 1.1 TDSQL优点&#xff1a; 数据强一致性高性能低成本线性水…

前端JavaScript篇之for...in和for...of的区别

目录 for...in和for...of的区别for...in循环for...of循环区别&#xff1a; for…in和for…of的区别 在JavaScript中&#xff0c;for...in和for...of是两种常用的循环语法&#xff0c;它们有着明显的区别和适用场景。 for...in循环 for...in循环用于遍历一个对象的所有可枚举…

引入echarts环形图及显示后端数据

实现效果&#xff1a; 1.下载echarts 并引用 npm install echarts --save 或 pnpm install -S echarts 项目中引用&#xff1a; 在项目main.ts中 import * as echarts from "echarts"; //引入echarts 3.页面中使用 <div id"main" class&quo…

Topaz Photo AI for Mac v2.3.1 补丁版人工智能降噪软件无损放大

想要将模糊的图片变得更加清晰&#xff1f;不妨试试Topaz Photo AI for Mac 这款人工智能、无损放大软件。Topaz Photo AI for Mac 一款强大的人工智能降噪软件&#xff0c;允许用户使用复杂的锐化算法来提高图像清晰度&#xff0c;还包括肖像编辑选项&#xff0c;如面部重塑、…

C#在既有数组中插入另一个数组:Array.Copy方法 vs 自定义插入方法

目录 一、使用的方法 1.使用Array.Copy方法 2.Copy(Array, Int32, Array, Int32, Int32) 3. 使用自定义的方法 二、实例 1.示例1&#xff1a;使用Array.Copy方法 2.示例2&#xff1a;使用自定义的方法 一、使用的方法 1.使用Array.Copy方法 首先定义了一个名为InsertAr…

Mysql大表添加字段失败解决方案

背景 最近遇到一个问题&#xff0c;需要在user用户表千万级别数据中添加两个字段&#xff0c;发现老是加不上去&#xff0c;一直卡死。表数据量不仅大&#xff0c;而且是一个热点表&#xff0c;访问频率特别高&#xff0c;而且该表的访问是在一个大事务中。加字段的时候一直在…

人工智能福利站,初识人工智能,图神经网络学习,第三课

&#x1f3c6;作者简介&#xff0c;普修罗双战士&#xff0c;一直追求不断学习和成长&#xff0c;在技术的道路上持续探索和实践。 &#x1f3c6;多年互联网行业从业经验&#xff0c;历任核心研发工程师&#xff0c;项目技术负责人。 &#x1f389;欢迎 &#x1f44d;点赞✍评论…

人工智能|深度学习——基于全局注意力的改进YOLOv7-AC的水下场景目标检测系统

代码下载&#xff1a; 基于全局注意力的改进YOLOv7-AC的水下场景目标检测系统.zip资源-CSDN文库 1.研究的背景 水下场景目标检测是水下机器人、水下无人机和水下监控等领域中的重要任务之一。然而&#xff0c;由于水下环境的复杂性和特殊性&#xff0c;水下目标检测面临着许多挑…

读千脑智能笔记06_人工智能的未来(上)

1. 人工智能正在经历一场复兴&#xff0c;这是科技界最热门的领域之一 1.1. 大多数科学进步都建立在被广泛接受的理论框架之上。这种理论框架称为“科学范式” 1.2. 人工智能的未来将与大多数人工智能从业者如今的设想存在本质上的不同 1.3. 人工神经网络与人类大脑中的神经…