Posted On April 1, 2019

How To Install Remote Desktop on Ubuntu or Centos 7

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How To Install Remote Desktop on Ubuntu or Centos 7
Ubuntu:
sudo apt-get update
sudo apt-get install xrdp xfce4
echo xfce4-session >~/.xsession
sudo service xrdp restart


CentOS 7:
su -
vim /etc/yum.repos.d/xrdp.repo
----- content -----
[xrdp]
name=xrdp
baseurl=http://li.nux.ro/download/nux/dextop/el7/x86_64/
enabled=1
gpgcheck=0
-------------------
su
yum update
yum -y install xrdp tigervnc-server
systemctl enable xrdp.service
firewall-cmd --permanent --zone=public --add-port=3389/tcp
firewall-cmd --reload
chcon --type=bin_t /usr/sbin/xrdp
chcon --type=bin_t /usr/sbin/xrdp-sesman
systemctl restart xrdp.service


Warning: Windows 7 MSTSC must be set to 16bit color; otherwise, connection problems occur!

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Install Brother Printer on a Linux machine (Debian, Ubuntu, Mint)

Below is an example of the installation sequence using a known driver URL: $ wget…

Linux: Using Bash to Search for Files Matching Certain Extensions

# using tree: list any files in a directory parentDirectory=/home tree --prune $parentDirectory # using…

Wireshark Overview

SysAdmins, InfoSec, and Network Engineers often use this tool to troubleshot and detect network activities…