diff --git a/README.md b/README.md index d71e1f65..2f33e3cf 100644 --- a/README.md +++ b/README.md @@ -46,15 +46,27 @@ apt-get install xrdp ``` ### RedHat / CentOS / Fedora + +On RedHat and CentOS, make sure to enable EPEL packages first. + +```bash +yum install epel-release +``` + +Install xrdp package. + ```bash -yum -y install xrdp -dnf -y install xrdp +yum install xrdp +``` -After installing Xrdp in Centos, RHEL or Fedora you need to adjust the firewall +`yum` is being replaced with `dnf`, so you may need to use `dnf` instead +of `yum` in the above commands. -# firewall-cmd --permanent --zone=public --add-port=3389/tcp -# firewall-cmd --reload +To allow outside access to the service, open port 3389 on the firewall. +``` +firewall-cmd --permanent --zone=public --add-port=3389/tcp +firewall-cmd --reload ``` ## Environment