6

I would like to install rdesktop on CentOS 7. If I run sudo yum -y install rdesktop, the system says:

No package rdesktop available.

What should I do?

[EDIT]: my os version is CentOS Linux release 7.2.1511 (Core)

DavideChicco.it
  • 235
  • 2
  • 4
  • 10
  • Check [additional repos](https://wiki.centos.org/AdditionalResources/Repositories) for `CentOS 7`, I think [nux-desktop](http://li.nux.ro/repos.html) will help you. – taliezin Feb 01 '16 at 22:19
  • https://github.com/rdesktop/rdesktop lists a `rdesktop.spec` file so in theory should be buildable via `yum -y install rpm-build` and building a local RPM via `rpmbuild`, which then could be installed, or placed into a local YUM repo. – thrig Feb 01 '16 at 22:24
  • I installed rpm-build but nothing works :-( – DavideChicco.it Feb 02 '16 at 14:28

3 Answers3

8

How about trying the included RDP client, FreeRDP?

$ sudo yum -y install freerdp
$ xfreerdp <server>

Weigh the pros and cons here: What are the differences between rdesktop and xfreerdp?

Steve Bonds
  • 1,266
  • 10
  • 11
1

For CentOS, the rdesktop package is in the nux-dextop repository. You need to install the repo and then rdesktop:

sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro 
sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm    
sudo yum install rdesktop
ChrisDR
  • 477
  • 1
  • 5
  • 12
0

It appears that RHEL7 and CentOS 7 don't include rdesktop. Instead, they include vinagre, which appears to work well enough.

Christopher
  • 163
  • 1
  • 10