Reframe远程桌面

TL;DR

KDE Plasma更新到6.7之后,先不说SAM坏了认证不上必须手动加用户,然后krdp对集显要求突然飙升。Rust确实是个很好的方案,但每次都要弹xdg-desktop-portal-kde的授权弹窗,你这叫我怎么远程桌面,甚至连krfb的无人值守模式也要弹这授权,差点再次转投GNOME的时候,遇到了Reframe。。。

这是开源地址

开始部署

十分的简单啊,直接一行命令搞定了

1
pacman -S reframe

接下来要知道你电脑上的显卡信息以及显示器的插口信息。我这里Philips显示器插在DP-1上了。

1
2
3
4
5
6
7
8
┌─[enoch@lab503asus] - [~] - [Tue Jun 30, 11:14]
└─[$] <> ls /sys/class/drm
card1 card1-DP-1 card1-HDMI-A-1 renderD128 version
┌─[enoch@lab503asus] - [~] - [Tue Jun 30, 11:15]
└─[$] <> xrandr | grep " connected"
WARNING: running xrandr against an Xwayland server. See the xrandr man page for details.
HDMI-A-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 598mm x 336mm
DP-1 connected 1080x1920+1920+0 left (normal left inverted right x axis y axis) 509mm x 286mm

然后进入/etc/reframe,把example.conf复制一份作为你自己的配置文件,我是按照显示器来命名的:philips.conf,然后修改这个文件。我做了如下更改:

1
2
3
4
5
6
7
card=card1
connector=DP-1

desktop-width=3000
desktop-height=1920

damage=gpu

然后后面的vnc密码自己记得改一改。

对于我的第二块屏幕,是竖着放在Philips右边的,要做如下更改:

1
2
3
4
5
6
7
8
9
10
11
12
card=card1
connector=HDMI-A-1

rotation=90

desktop-width=3000
desktop-height=1920

monitor-x=1920
monitor-y=0

damage=gpu

注意:端口要改成和第一块屏幕不一样的,因为一块屏幕一个端口。

最后,启动这个服务即可:

1
sudo systemctl enable --now reframe-server@philips

注意:这里的philips对应上面philips.conf


Reframe远程桌面
http://blog.coolenoch.ink/2026/06/30/Linux/41-Reframe远程桌面-260630/
作者
CoolestEnoch
发布于
2026年6月30日
许可协议