您好,欢迎来到外链网!
当前位置:外链网 » 站长资讯 » 专业问答 » 文章详细 订阅RssFeed

iphone ios 15桌面组件怎么设置,在linux中如何实现远程桌面

来源:互联网 浏览:73次 时间:2023-04-08

rdesktop是在Unix/Linux下面访问视窗系统远程桌面的客户端程式. 它通过MicrosoftWindows NT, Windows 2000提供的终端服务(Terminal Services)以及WindowsXP的远程桌面服务(Remote Desktop),能在Unix/Linux系统下远程登录Windows的系统.

1. rdesktop的下载

可以通过以下地址下载不同版本的rdesktop的可执行的rmp软件包:

http://www.rdesktop.org/

2. rdesktop的安装

1) 检查系统中是否已经安装了rdesktop

#rpm -q rdesktop

2) 编译安装rdesktop-1.6.0.tar.gz:

香港vps

#tar -zvxf rdesktop-1.6.0.tar.gz

#cd rdesktop-1.6.0

#./configure

#make

在SUSE Linux出现的问题:

"configure: error: no acceptable C compiler found in $PATH

See `config.log' for more details."

解决办法: 执行#yast -i gcc

“ERROR: Could not find X Window System headers/libraries

To specify paths manually, use the options –x-includes and –x-libraries”

解决办法: 执行#yast2 -> software->Software Management->serch xorg-x11-devel,然后install.

"ERROR: Could not find OpenSSL headers/libraries.

To specify a path manually, use the Cwith-openssl option"

解决办法: 执行#yast -i openssl-devel

3. rdesktop的使用

#./rdesktop -g 1024x768 hostname

92117350