美文网首页
Xpra使用入门

Xpra使用入门

作者: kongxx | 来源:发表于2019-06-12 13:10 被阅读0次

Xpra 是一个开源的跨平台远程显示服务器和客户端工具,可以用来转发图形应用和桌面。这里以 CentOS7 系统为例,演示一下怎样使用 Xpra 转发图形应用和桌面。

安装

# cd /etc/yum.repos.d/
# wget -c https://xpra.org/repos/CentOS/xpra.repo
# yum install xpra

其它版本的 Xpra 可以参考 https://xpra.org

运行图形应用

在当前机器上运行一个图形应用

# xpra start ssh:localhost --exit-with-children=yes --start-child=gedit

# 以桌面形式运行应用程序
# xpra start-desktop ssh:localhost --exit-with-children=yes --start-child=gedit

在远程机器上运行一个图形应用

# xpra start ssh:<user>@<host> --exit-with-children=yes --start-child=gedit

运行桌面

首先安装一个轻量级的桌面环境

# yum install epel-release
# yum groupinstall Xfce

启动桌面

# xpra start-desktop ssh:localhost --exit-with-children=yes --start-child=xfce4-session

相关文章

网友评论

      本文标题:Xpra使用入门

      本文链接:https://www.haomeiwen.com/subject/slakfctx.html