1. 程式人生 > >Win7如何遠端Linux的GNOME圖形視覺化桌面-xrdp

Win7如何遠端Linux的GNOME圖形視覺化桌面-xrdp

我們可以通過Putty、Xshell以命令列的形式控制遠端Linux,但同時希望通過Windows遠端進入Linux的視覺化介面,這就需要藉助xrdp工具了。

環境:Win7、Centos7

工具:xrdp

xrdp簡介:

是一個開源的遠端桌面協議伺服器,它允許你從Windows使用RDP(Remote Desktop Protocol)遠端到你的Linux伺服器;

一、如果之前未曾安裝過GNOME Desktop,按以下命令列安裝,已安裝過GEOME Destop自動忽略

      更新系統       yum update -y

      安裝桌面服務       yum groupinstall "X Window System" "GNOME Desktop" -y

      設定以圖形介面啟動       systemctl set-default graphical.target

二、安裝epel映象輔助工具

      yum install epel-release -y

三、安裝xrdp工具       yum install xrdp -y

      檢視安裝檔案

      rpm -ql xrdp       主要配置檔案        cat /etc/xrdp/xrdp.ini

四、啟動服務       systemctl enable xrdp       systemctl enable xrdp-sesman       systemctl start xrdp-sesman       systemctl start xrdp

五、設定防火牆       firewall-cmd --permanent --zone=public --add-port=3389/tcp       firewall-cmd --reload

六、使用win7登入

      開啟cmd,輸入”mstsc",輸入遠端Centos的IP地址,輸入使用者名稱與密碼即可。

      初始一段時間為黑屏狀態,耐心等待幾分鐘即可。

      Enjoy it !