diff options
author | Pavel Roskin <plroskin@gmail.com> | 2017-01-30 15:35:11 -0800 |
---|---|---|
committer | metalefty <meta@vmeta.jp> | 2017-02-08 13:30:56 +0900 |
commit | c7bc634e17008d781181b2b7763c0eeb2e7efb92 (patch) | |
tree | b911758aa6ae369040e498f6f040e14d14498ec9 | |
parent | 90083e5f239dfc87bc03d37cdcc276076a8166eb (diff) | |
download | xrdp-proprietary-c7bc634e17008d781181b2b7763c0eeb2e7efb92.tar.gz xrdp-proprietary-c7bc634e17008d781181b2b7763c0eeb2e7efb92.zip |
Improve Fedora installation instructions
-rw-r--r-- | README.md | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -46,16 +46,28 @@ 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 |