-
VsCode Remote SSH 默认是不支持 Alpine Linux 的,不过,对 Alpine Linux 进行一些改动,就可以实现,比较方便。 步骤如下: 安装 安装 Bash 安装需要的包 1$ apk del dropbear 2$ apk add gcompat libstdc++6 openssh wget git Alpine 配置 1$ nano
阅读更多 -
WindTerm 无法认证 WindTerm客户端,取消 “会话设置 -> SSH -> 验证 -> 尝试键盘交互认证” 可已正常连接。 安装 OpenSSH Server 1$ apk update 2$ apk add openssh-server openssh 1; /etc/ssh/sshd_config 2 3# 开放Root登录
阅读更多 -
在 Alpine 上安装 Docker 真是一件让人感觉非常愉快的事情,因为过程非常简单。 修改 apk 源 1$ nano /etc/apk/repositories 因为 docker 在社区的库里,所以要打开 community 的源。 1#/media/cdrom/apks 2http://mirrors.tuna.tsinghua.edu.cn/alpine/v3.16/main 3http://mirrors.tuna.tsinghua.edu.cn/alpine/v3.16/community 4#http://mirrors.tuna.tsinghua.edu.cn/alpine/edge/main …
阅读更多 -
网卡静态地址 1~# nano /etc/network/interfaces 1auto lo 2iface lo inet loopback 3 4auto eth0 5iface eth0 inet static 6 address 192.168.10.16/24 7 gateway 192.168.10.10 8 hostname alpine 配置 DNS 1# nano /etc/resolv.conf 2nameserver 114.114.114.114 重启网络 1~# service networking restart
阅读更多