惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
M
MIT News - Artificial intelligence
罗磊的独立博客
博客园 - 【当耐特】
A
About on SuperTechFans
Last Week in AI
Last Week in AI
雷峰网
雷峰网
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
The Cloudflare Blog
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements

博客园 - imzhi

vscode 多个光标自动生成从0开始的数字 js 处理 19.9*0.95 浮点数精度问题的正确姿势,不引入第三方库 ssh 无法用密钥登录 send_pubkey_test: no mutual signature algorithm iqoo手机关掉视频彩铃 pc.vivo.com vivo办公套件网页,拼图验证失败的原因 公司自有服务器无法请求在指向自己服务器的其他域名的API 【转】Cialdini Quiz Explained 机械革命code01 v2.0 开机黑屏,电源键是亮着的 html table表格导入excel文件的方法 php实现数字转中文大写金额表示 微信支付api 付款到银行卡v2 商家转账v3 openssl3.0 php 使用 openssl_encrypt des-ecb 加密报错 error:0308010C:digital envelope routines::unsupported php pdo 写入 sqlserver image类型字段的写法 连接位置国外的远程桌面,使用anydesk thinkphp console 命令行打印错误调用堆栈 【gpt搬运】bash脚本压缩png,jpg图片,当图片大小大于60kb或者尺寸大于500px*500px的时候 【gpt搬运】bash脚本压缩png,jpg图片,当图片大小大于100kb的时候 win10系统休眠、睡眠、关机后进入假死状态的解决方案 如何返回“无法访问此网站,网页可能暂时无法连接,或者它已经永久性地移动到了新网址” dbeaver 升级 24.1.x 版本提示 An error has occurred 的解决
VS Code 1.86.1 Requires glibc 2.28 or Later
imzhi · 2026-05-18 · via 博客园 - imzhi

以下内容是 google 生成的

Starting with release 1.86.1 (January 2024), VS Code dropped support for older Linux kernels and distributions that do not have glibc 2.28 or later. This change primarily affects older systems like Ubuntu 18.04, RHEL 7, and CentOS 7. [1, 2, 3, 4, 5]

Core Requirements

To run current versions of VS Code (including the VS Code Server used for Remote-SSH), your system must meet these minimums:

  • GLIBC Version: 2.28 or higher.
  • Supported OS Examples: Ubuntu 20.04+, Debian 10+, and RHEL 8+. [1, 2]

Options for Older Kernels

If your system uses an older kernel that cannot be upgraded, you have three main workarounds:

  • Downgrade to Version 1.85: This is the last version that supports older glibc environments. You can download it from the VS Code Updates page. After installing, you should disable automatic updates in settings (update.mode: none).
  • Use VS Code for the Web: You can access a browser-based version of the editor at vscode.dev, which does not have the same local system library requirements.
  • Remote Development Legacy Support: For some remote scenarios, Microsoft introduced a temporary "legacy server" migration path in version 1.97 to help bridge the gap for connecting to older Linux servers. [1, 2, 3, 4, 5]

Troubleshooting Connectivity

If you are using Remote-SSH and seeing "Missing GLIBC" errors:

  1. Check your remote system's glibc version by running ldd --version in the terminal.
  2. If it is below 2.28, you must either upgrade the remote OS or use the VS Code 1.85 client to connect.
  3. Some users have had success using custom toolchains (like crosstool-NG) to build a compatible sysroot on older systems, though this is a complex, unofficial manual fix. [1, 2, 3, 4, 5]