본문 바로가기
컴퓨터 활용(한글, 오피스 등)/50_2.운영체제_리눅스

Rocky linux 설치

by 3604 2023. 4. 27.
728x90

 

Rocky Linux 버전

출처: https://m.blog.naver.com/in_reason/221363113701

DVD ISO파일
CentOS의 최소 + 일반패키지만 포함하며, 설치 과정 중 패키지 선택이 가능하여 일반 사용자에게 많이 추천되는 리눅스 ISO이다.

Everything ISO 파일
말 그대로 CentOS와 관련된 모든 패키지가 포함된 배포 및 설치 ISO파일이다.
운영체제 파일 및 패키지 파일이 모두 담겨있기 때문에 인터넷이 안되는 환경에서 사용이 가능하다.

Minimal ISO 파일
이 파일은 운영체제 파일로써, 패키지는 인터넷 연결을 통해 설치해야하는 최소 패키지만 설치되는 파일로써 일반 사용자가 아닌 전문가가 사용할 때 많이 사용되며, 최소 패키지만 설치되기 때문에 자신이 필요한 패키지만 설치할 수 있다는 장점이 있다.

 

Xrdp 설치

How to Install Xrdp with GNOME GUI on Rocky Linux 8

출처: CrownCloud Wiki - How To Install Xrdp With GNOME GUI On RockyLinux 8


Xrdp is a free and open-source implementation of the Microsoft RDP server that enables operating systems other than Microsoft Windows to provide a fully functional RDP-compatible remote desktop experience. In this article, we are going to learn how to install Xrdp with GNOME GUI on Rocky Linux 8. So, let’s get started.

Checkout the Xrdp Project Here.

Try this wiki on our VPS. Starts just at $5/month with 24x7 In-house customer support.

Pre-requisites :


  • A system with Rocky Linux 8 installed and running.
  • root access to the system.
  • LAMP Stack installed and running, for this, you can refer to one of our guides on installing the LAMP Stack (Apache, MariaDB, and PHP).

Once you're all set, we'll proceed with Xrdp with GNOME GUI installation and configuration.

Installing Gnome GUI


Install Gnome GUI

yum groupinstall "Server with GUI"

To enable the GUI as default and boot into graphical mode.

systemctl set-default graphical

Install Xrdp


Let's install and enable Xrdp using the below commands.

dnf install xrdp

systemctl start xrdp

systemctl enable xrdp

Enable Firewall


firewall-cmd --permanent --add-port=3389/tcp

firewall-cmd --reload

Reboot the system


To boot into Graphical mode, we will reboot the system with the below command,

reboot

Connect using Windows RDP


After the successful installation of Xrdp with GNOME GUI. We can connect to the remote server using Windows RDP Connection.
Open the Remote Desktop Connection on your Windows computer and enter the public IP of the Rocky Linux server.
Once you click on "Connect" you will be prompted to enter the login credentials to access the Server. After login, complete the GUI Setup.

728x90