突发奇想找了下能使用Web浏览器远程访问桌面的解决方案,没成想还真让我找到了,这下可以直接全平台远程访问桌面做工不受操作系统的限制了。但是测试了下30FPS下带宽占用还是蛮高的,如果可以的话,MSTSC还是Windows远程的最佳选择,但是安卓估计就只能ToDesk了~

1 构建服务器

1.1 安装依赖

对于你需要远程的协议,可以参考官方文档选择安装部分依赖,我这里选择RDP和VNC协议支持

apt install libcairo2-dev libjpeg62-turbo-dev libpng-dev libtool-bin uuid-dev
apt install librdp2-dev
# 安装RDP依赖
apt install libvncserver-dev
# 安装VNC依赖

1.2 服务端

wget https://mirrors.aliyun.com/apache/guacamole/1.5.5/source/guacamole-server-1.5.5.tar.gz
tar -xzf guacamole-server-1.5.5.tar.gz
cd guacamole-server-1.5.5/

编译安装服务端

./configure --with-init-dir=/etc/init.d

运行后可以看到你安装的依赖

------------------------------------------------
guacamole-server version 1.5.5
------------------------------------------------

Library status:

freerdp2 ............ yes
pango ............... no
libavcodec .......... no
libavformat.......... no
libavutil ........... no
libssh2 ............. no
libssl .............. yes
libswscale .......... no
libtelnet ........... no
libVNCServer ........ yes
libvorbis ........... no
libpulse ............ no
libwebsockets ....... no
libwebp ............. no
wsock32 ............. no

Protocol support:

Kubernetes .... no
RDP ........... yes
SSH ........... no
Telnet ........ no
VNC ........... yes

Services / tools:

guacd ...... yes
guacenc .... no
guaclog .... yes

FreeRDP plugins: /usr/lib/x86_64-linux-gnu/freerdp2
Init scripts: /etc/init.d
Systemd units: no

Type "make" to compile guacamole-server.

编译安装,顺便缓存目录

make
make install
ldconfig
mkdir -p /etc/guacamole/{extensions,lib}

2 部署客户端

该客户端使用tomcat作为服务端,可以直接使用war文件或者自己下载源码安装,另外据称tomcat10不受支持,我这里使用tomcat9(debian11)

2.1 Tomcat

$ apt install tomcat9
$ systemctl enable --now tomcat9

2.2 客户端

$ cd /var/lib/tomcat9/webapps/
$ wget https://mirrors.aliyun.com/apache/guacamole/1.5.5/binary/guacamole-1.5.5.war
$ mv guacamole-1.5.5.war guacamole.var

3 配置运行

$ vim /etc/guacamole/guacd.conf
[daemon]
pid_file = /var/run/guacd.pid
#log_level = debug

[server]
#bind_host = localhost
bind_host = 127.0.0.1
bind_port = 4822
$ systemctl daemon-reload
$ systemctl start guacd

默认是没有创建用户的,需要配置用户和你所连接的桌面,这里使用绝赞的风铃云服务器作为演示,物美价廉性能优越

$ vim /etc/guacamole/user-mapping.xml
<user-mapping>

<!-- Per-user authentication and config information -->
<authorize username="USERNAME" password="PASSWORD">
<protocol>rdp</protocol>
<param name="hostname">114.66.63.86</param>
<param name="port">37548</param>
<param name="password">rdp-password</param>
<param name="ignore-cert">true</param>
</authorize>

</user-mapping>
$ systemctl restart guacd tomcat9

访问ip:8080/guacamole即可,我这里为了实验只创建了单用户,可以参考下面的文献继续安装配置MySQL支持

完工