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 Automate Youtube Full Screen on Ubuntu Using Python & Selenium

#sudo apt install python3 python3-pip #sudo pip3 install selenium #pip install webdriver-manager # Variables YoutubeUrl="https://www.youtube.com/watch?v=7nT5YawZt-s"…

CentOS 5.1 Server Setup Notes

CentOS 5.1 Server Setup: LAMP, Email, DNS, FTP, ISPConfig (a.k.a. The Perfect Server) This tutorial…

Enable Hibernation Option on Linux Mint 20

At first glance, one would be tempted to simply expand an existing a /swapfile as…