rdesktop源码安装

官方网站:http://www.rdesktop.org/#download

以rdesktop-1.7.1为例:
yum -y install libX11-devel
tar -xvf rdesktop-1.7.1.tar.gz -C /usr/local/src
cd /usr/local/src/rdesktop-1.7.1
./configure && make -j4 && make install

.

说明:rdesktop-1.8.x即使安装了libgssglue,做了库链接到/lib,/lib64仍然会报
checking for GSSGLUE... no

CredSSP support requires libgssglue, install the dependency
or disable the feature using --disable-credssp.
搜索未果,只得妥协
tar -xvf rdesktop-1.8.3.tar.gz -C /usr/local/src
cd /usr/local/src/rdesktop-1.8.3
./configure --disable-credssp --disable-smartcard
make -j4 && make install

有兴趣的朋友可以继续尝试。
rdesktop依赖libgssglue
wget http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.4.tar.gz
tar -xvf libgssglue-0.4.tar.gz -C /usr/local/src
cd /usr/local/src/libgssglue-.04
./configure && make -j4 && make install
ldconfig


有兴趣的朋友可以再试试tsclient
Remmina(tsclient)
http://sourceforge.net/projects/remmina/
https://github.com/FreeRDP/Remmina/wiki/Compile-on-Fedora-20
https://github.com/FreeRDP/Remmina/wiki/Compile-on-Ubuntu-14.04-and-14.10
tsclient (Terminal Server Client) is a frontend for rdesktop and other remote desktop tools
Tsclient screenshot.png



For Ubuntu users we have an official PPA

https://launchpad.net/~remmina-ppa-team/+archive/ubuntu/remmina-next

To install it, just copy and paste the following three lines on a terminal window


sudo apt-add-repository ppa:remmina-ppa-team/remmina-next
sudo apt-get update
sudo apt-get install remmina

原文地址:https://www.cnblogs.com/lixuebin/p/10814403.html