Centos7 遠端桌面

2021-09-12 02:37:02 字數 713 閱讀 2280

一般我們安裝centos系統都會安裝桌面系統,如果沒有安裝桌面程式先執行以下命令安裝桌面系統

//安裝gnome centos

yum upgrade

// -y的作用:如果安裝過程中有y/n的選擇,一路選擇y執行

yum -y groupinstall "x window system"

yum -y groupinstall "gnome desktop"

startx

安裝xrdp遠端服務功能

//安裝epel源 :作用是能自動配置yum的軟體倉庫

yum install epel* -y

// 安裝xrdp

yum --enablerepo=epel -y install xrdp

新增遠端桌面的埠

//開啟開啟3389埠

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

//重啟防火牆

firewall-cmd --reload

啟動xrdp服務

//啟動xrdp服務

systemctl start xrdp

//開機xrdp服務啟動

systemctl enable xrdp

Centos7遠端桌面 vnc server設定

1 假定你的系統沒有安裝vnc的任何軟體,那麼,首先安裝vnc yum y install tigervnc server tigervnc 2 centos7之前的系統,如果安裝vnc一般都需要配置 cat etc sysconfig vncservers this file has been r...

CentOS 7 安裝xrdp 遠端桌面

首先你需要安裝gnome,這裡就不介紹了 安裝 1.準備環境 首先安裝 epel and nux desktoprepository rpms,注意版本更新 如果rpm包版本已經不存在,把鏈結的前面copy下來用瀏覽器開啟,查詢最新版本,然後更換 rpm uvh rpm uvh 2.開始安裝 xrd...

CentOS7安裝遠端桌面軟體VNC Server

如果伺服器為centos7 minimal版本,則需要安裝desktop 伺服器系統為centos7 desktop則忽略 yum groupinstall y gnome desktop 關閉防火牆 systemctl stop firewalld systemctl disable firewa...