1 说明

  • 通过即时生成的序列号和验证码访问远程主机桌面
  • 各操作系统均可使用,可相互调用
  • 无需考虑 IP 问题

2 安装方法

2.1 下载

https://sunlogin.oray.com/download/linux?type=personal

注意:尽量下图形版,命行行版比较旧,Ubuntu 22.04 报错找不到库

2.2 安装

1
$ sudo dpkg -i SunloginClient_11.0.1.44968_amd64.deb

2.3 运行

1
$ /usr/local/sunlogin/bin/sunloginclient

2.4 问题与解决

2.4.1 缺少 libgconf-2-4

24.04 无法在图形界面安装,在命令行安装时,报错没有 libgconf-2-4

这个库比较早,需要切源到 22.04 的源之后安装,方法如下:

在 24.04 中加入/etc/apt/sources.list.d/ubuntu.sources 中加入了 22.04 的源

1
2
3
4
5
6
7
8
9
10
11
12
$ vi /etc/apt/sources.list.d/ubuntu.sources

加入:
Types: deb
URIs: http://cz.archive.ubuntu.com/ubuntu/
Suites: jammy
Components: main universe

$ apt-get update
$ apt-get install 旧软件包
$ apt --fix-broken install 修复依赖关系
$ apt-get install 旧软件包

详见:https://blog.csdn.net/lingzhou0909/article/details/139708197

24.04 其它软件源参考:

https://blog.csdn.net/qq_37344125/article/details/138841559