armbian kvm openwrt

替换更新源 sed -ri ‘s/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g’ /etc/apt/sources.list

apt update

armbian-config  设置中文

1、服务器端安装X11

在MobaXterm打开服务器终端,并使用以下命令以root权限安装X Window System和xauth,其中xauth是用于授权X11客户端连接到X11服务器的工具:

sudo apt-get update 
sudo apt-get install xorg
sudo apt-get install xauth

2、配置SSH服务器:

配置SSH服务器允许X11转发:

sudo vim /etc/ssh/sshd_config

修改ssh_config内容:

X11Forwarding yes 
X11UseLocalhost no #使用容器连接设置为no,否则无法成功

重启ssh:

sudo service ssh restart

可视化检测

xclock

发表评论