牛云东 发表于 7 天前

如何使用vscode连接openEuler服务器

本地主机准备

Remote - SSH:


服务器准备


官方文档提供的提前准备

DistributionBase RequirementsRemote - SSH RequirementsNotesGeneralkernel >= 4.18, glibc >=2.28, libstdc++ >= 3.4.25, tarOpenSSH server, bash, and curl or wgetRun ldd --version to check the glibc version. Run strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX to see if libstdc++ 3.4.25 is available.General for Arm32libatomic1No additional requirements.Ubuntu 20.04+, Debian 10+, Raspberry Pi OS Buster/10+ and downstream distributionslibc6 libstdc++6 ca-certificates taropenssh-server bash and curl or wgetRequires kernel >= 4.18, glibc >= 2.28, libstdc++ >= 3.4.25.RHEL / CentOS 8+glibc libgcc libstdc++ ca-certificates taropenssh-server bash and curl or wgetRequires kernel >= 4.18, glibc >= 2.28, libstdc++ >= 3.4.25.Alpine Linux 3.16+musl libgcc libstdc++. musl >= 1.2.3, glibc not required.Not yet supported.Supported in Dev Containers and WSL. Extensions installed in the container may not work due to glibc dependencies in extension native code.openSUSE Leap / SUSE Linux Enterprise 15+glibc libgcc_s1 libstdc++6 ca-certificates gzip tarcurl or wgetRequires kernel >= 4.18, glibc, libstdc++6
针对openEuler的准备


缺少tar 解压工具

检查是否缺少tar解压工具
# tar
-bash: tar:未找到命令使用以下命令安装tar
dnf install tar
端口转发未开启

我们查看sshd 服务配置文件
# cat /etc/ssh/sshd_config找到以下两个配置
AllowTcpForwarding no
AllowAgentForwarding no将 ‘ no ‘改为’ yes ‘
AllowTcpForwarding yes
AllowAgentForwarding yes重启sshd 服务
systemctl restart sshd.service到此这篇关于如何使用vscode连接openEuler服务器的文章就介绍到这了,更多相关vscode连接openEuler内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/server/326578fsl.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: 如何使用vscode连接openEuler服务器