xRDP-CentOS

Install XRDP Remote Desktop to CentOS-7
====================================


# rpm -Uvh https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
# rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm


OR

# vi /etc/yum.repos.d/xrdp.repo
[xrdp]
name=xrdp
baseurl=http://li.nux.ro/download/nux/dextop/el7/x86_64/
enabled=1
gpgcheck=0

#


# yum install xrdp tigervnc-server
# systemctl enable xrdp.service
# systemctl start xrdp.service
# systemctl enable xrdp-sesman.service
# systemctl start xrdp-sesman.service
# netstat -antup | grep xrdp


# firewall-cmd --permanent --zone=public --add-port=3389/tcp
# firewall-cmd --reload


Configure SELinux

# chcon --type=bin_t /usr/sbin/xrdp
# chcon --type=bin_t /usr/sbin/xrdp-sesman



Install XRDP Remote Desktop to CentOS 6.5
======================================

 
RHEL/CentOS 6 64-Bit

# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm


# yum repolist

# yum install xrdp tigervnc-server
# service vncserver start
# service xrdp start
# chkconfig xrdp on
# chkconfig vncserver on

# iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 3389 -j ACCEPT
# service iptables save
# iptables -L