Last active
April 22, 2020 12:33
-
-
Save xenophy/ec42bf7304d8a875b0abf4f2eff8d23d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [Setup Desktop Environment] | |
dnf groupinstall -y "Server with GUI"; | |
dnf install -y xrdp; | |
systemctl enable xrdp --now; | |
systemctl status xrdp; | |
# Google Chrome | |
cd; | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm; | |
dnf localinstall -y google-chrome-stable_current_x86_64.rpm; | |
rm -f google-chrome-stable_current_x86_64.rpm; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment