Skip to content

Instantly share code, notes, and snippets.

@cloudsmithy
Last active July 29, 2022 23:16
Show Gist options
  • Save cloudsmithy/5c15194bbe4dc0af9cc6c35376f55283 to your computer and use it in GitHub Desktop.
Save cloudsmithy/5c15194bbe4dc0af9cc6c35376f55283 to your computer and use it in GitHub Desktop.
install xrdp and GUI and RHEL8
sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
sudo yum groupinstall -y "Server with GUI"
sudo yum install -y tigervnc-server xrdp
sudo systemctl start xrdp.service
sudo systemctl status xrdp.service
sudo systemctl enable xrdp.service
sudo netstat -antp | grep xrdp
sudo systemctl status firewalld.service
sudo systemctl enable firewalld.service
sudo systemctl start firewalld.service
sudo firewall-cmd --permanent --add-port=3389/tcp
sudo firewall-cmd --reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment