-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Building on Centos 7.3 Minimal install with KDE
metalefty edited this page May 9, 2018
·
7 revisions
yum update -y
yum groupinstall -y 'KDE' 'X Windows System'
yum groupinstall -y 'Development Tools'
systemctl set-default graphical.target
yum update -y
yum install -y finger cmake patch gcc make autoconf libtool automake pkgconfig openssl-devel gettext file pam-devel libX11-devel libXfixes-devel libjpeg-devel flex bison gcc-c++ libxslt perl-libxml-perl xorg-x11-font-utils xmlto-tex git libXrandr-devel nasm xorg-x11-server-devel xorg-x11-server-Xorg
cd ~
mkdir git
cd git
mkdir neutrinolabs
cd neutrinolabs
git clone --recursive https://github.com/neutrinolabs/xrdp.git
git clone https://github.com/neutrinolabs/xorgxrdp.git
cd xrdp
./bootstrap
./configure
make
make install
cd ..
cd xorgxrdp
./bootstrap
./configure XRDP_CFLAGS=-I~/git/neutrino/xrdp/common XRDP_LIBS=" "
make
make install
systemctl enable xrdp
systemctl enable xrdp-sesman
systemctl start xrdp-sesman
systemctl start xrdp
firewall-cmd --permanent --add-port=3389/tcp
firewall-cmd --permanent --add-port=3389/udp
firewall-cmd --reload
You should now be able to connect to the RDP session.
You may see a request for privledged access for the service Colord on login. To work around the issue see https://bugzilla.redhat.com/show_bug.cgi?id=1149893#c13