cent os通過ssh安裝圖形桌面
最近遇到一件比較無奈的事情,領導給了個was的安裝文件給我,讓我按文件在測試伺服器搭建一下was環境。現在用was的應該不多了,也只有企業可能會用吧,不過牢騷歸牢騷,工作還是要完成的。PS:近期在公司安排下,我需要協助維護一個多年前的老專案,所以才有了這檔子事情。
仔細看了下文件,竟然是圖形化桌面上面裝的,沒辦法乾脆裝個圖形桌面,然後通過遠端桌面來裝was吧。
伺服器環境:centos 6.7
步驟如下:
檢視相關資訊:
[[email protected] yum.repos.d]# cat /etc/issue
CentOS release 6.7 (Final)
Kernel \r on an \m
[ [email protected] ~]# yum grouplist |grep -i window
Legacy X Window System compatibility
X Window System
[[email protected] yum.repos.d]# yum grouplist |grep -i kde
KDE Desktop
install “X Window System”
[[email protected] yum.repos.d]# yum groupinstall "X Window System"
Loaded plugins: fastestmirror, refresh-packagekit
Setting up Group Process
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
* ...
* ...
* ...
install “Desktop”
[[email protected] yum.repos.d]# yum groupinstall "Desktop"
Loaded plugins: fastestmirror, refresh-packagekit
Setting up Group Process
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
* ...
* ...
* ...
install “KDE Desktop”
[[email protected] yum.repos.d]# yum groupinstall "X Window System"
Loaded plugins: fastestmirror, refresh-packagekit
Setting up Group Process
Loading mirror speeds from cached hostfile
* base: mirrors.aliyun.com
* extras: mirrors.aliyun.com
* updates: mirrors.aliyun.com
* ...
* ...
* ...
中間如果沒報錯,那麼到這裡就安裝完成了。然後我是通過Xmanager來遠端連線伺服器的。
Xmanager連線伺服器之前,伺服器還需要如下設定:
1. 修改/etc/gdm/custom.conf ,內容如下:
[daemon]
[security]
AllowRemoteRoot=true
[xdmcp]
Port=177
Enable=true
[greeter]
[chooser]
[debug]
2.修改/etc/inittab, 把id 3改成5,上面的註釋很明確,5是X11,也就是圖形介面
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault:
3.防火牆設定,開放177埠
[[email protected] yum.repos.d]# vim /etc/sysconfig/iptables
新增如下內容:
-A INPUT -m state --state NEW -m udp -p udp --dport 177 -j ACCEPT
然後重啟iptables服務service iptables restart
[[email protected] yum.repos.d]# service iptables restart
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
iptables: Applying firewall rules: [ OK ]
4.重啟伺服器
[[email protected] yum.repos.d]# reboot
5.等伺服器啟動完畢之後,開啟Xmanager客戶端,準備連線伺服器圖形桌面。
相關推薦
cent os通過ssh安裝圖形桌面
最近遇到一件比較無奈的事情,領導給了個was的安裝文件給我,讓我按文件在測試伺服器搭建一下was環境。現在用was的應該不多了,也只有企業可能會用吧,不過牢騷歸牢騷,工作還是要完成的。PS:近期在公司安排下,我需要協助維護一個多年前的老專案,所以才有了這檔
linux cent os 6.5安裝Nginx
exce log ror lib gun -s ges conf rar 1.下載相關組件 yum install -y gcc gcc-c++ 安裝C/C++編譯器 wget http://sourceforge.net/projects/pcre/files/pcre/
Cent OS 7編譯安裝libc++和libc++abi
一輪 ade reference sha uil this new get form 本文介紹了如何在CentOS 7中構建C++11構建環境 Clang的定制C++庫是libc++(libcxx)。然後,libcxx還需要一個ABI庫,libc++abi(libcxxa
Cent OS 7.x 安裝Zabbix 3.x
zabbix centos 系統環境: VMware Workstation 12 Pro 12.5.0Cent OS 7.3_1611Zabbix 3.2---以下操作均以root身份操作---1:設置網卡為開機啟動Shell>ifconfig1. [root@localhost
cent os 7.2安裝oracle 12cr2
include xor user app roo ear mes optional AI 1、最小化安裝linux,配置好yum源 安裝依賴包 yum -y install binutils compat-libcap1 gcc gcc-c++ glibc glibc.i
Cent OS 7下安裝 mongodb
1.下載MongoDB 安裝包 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.6.8.tgz 2.解壓並安裝 tar -zxvf mongodb-linux-x86_64-3.6.8.tgz 3.配置到環境
Cent OS 6.5 安裝jdk8配置環境變數
首先 vim /etc/profile 檔案末尾新增 export JAVA_HOME=/usr/local/jdk1.8.0_191 export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar export
cent os 6.5 安裝 mysql 5.5出現warning
執行 rpm -ivh MySQL-server-5.5.62-1.el6.x86_64.rpm 命令後出現 warning: MySQL-server-5.5.62-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5
Cent OS 6.5 安裝mysql 64位
這個大部分借鑑於 菜鳥驛站 http://www.runoob.com/linux/mysql-install-setup.html 因為這個安裝過程中會遇到一些問題,而且隨著版本更替,可能這個會找不到了,所以提取過來,放在這裡。其中,還有一些自己遇到的問題,也記錄下來。宣
一、Cent OS 7 下安裝JDK環境(免安裝版)
環境:Cent OS 7 JDK版本:jdk-8u162-linux-x64.tar.gz [PS:如需資源,請私信博主] 1、新建資料夾並複製JDK [[email protect
CentOS安裝圖形桌面環境
Linux一般用在伺服器上,是不太需要圖形桌面環境的。 不過最近自己買了個VPS玩玩,想倒騰倒騰,就試了試。就這麼個簡單的東西,搞了一下午,網上找的中文教程,都是抄來抄去,看著都差不多,但是沒有一個能成功的。安裝包名都是錯的,yum安裝都報錯。 最後還是找了
rhel7.0安裝圖形桌面
一、配置yum 1、掛載映象 [[email protected] ~]# mkdir /media/iso/rhel7.0 [[email protected] ~]# mount -o loop 映象檔案 目標位置(/media/i
centos7安裝圖形桌面
1、輸入命令 yum grouplist 回車 --檢視系統裡有效的安裝包。[[email protected] ~]# yum grouplistLoaded plugins: fastestmirrorThere is no installed groups f
cent os 7 下安裝tensorflow
1.首先需要在linux下安裝Anaconda, 直接在anaconda軟體目錄下使用 bash Anaconda3-4.4.0-Linux-x86_64.sh 安裝。 安裝過程中需要輸入‘y’,使得python環境變數被新增到系統中,
mac os通過homebrew安裝docker
一、安裝virtual box brew cask install virtualbox 一. 安裝 docker 和 docker-machine brew install docker brew install docker-machine二. 初始化 Virtua
通過ssh安裝iPhone軟體
1. iPhone手機正常的App安裝通過appstore 2. 越獄手機還可以通過cydia安裝 3. 開發者模式的手機可以通過xcode安裝 4. 通過itool工具安裝ipa 它只能安裝ipa
cent os 6.5通過rpm方式安裝mysql5.5
首先在mysql官網下載mysql的rpm安裝包 ,下載地址為:https://dev.mysql.com/downloads/mysql/5.5.html#downloads 可以下載 RPM Bundle版的,這是個壓縮包裡面包含mysql-server、mysql-client、mys
CENT OS 安裝桌面環境
centos 安裝桌面環境 在開發環境中,一般很少使用linux桌面,基本都是遠端SSH登入,作業系統. 但是在我們學習過程中,有時需要桌面環境.可以編輯/etc/initab檔案修改啟動級別. 本文是沒有安裝桌面環境的安裝xwindow教程. 首先,建議更改yum源.詳細教程請轉移
Cent-OS 6.5 圖形介面安裝
計劃從新安裝一個CentOS 6.5版本,從網上下一個一個CentOS 6.5 DVD版,一路NEXT狂奔之後,發現沒有介面,折騰半天,晚上找資料,動手實踐,終於整出界面,先記錄下整個過程,和大家分享一下。 CentOS6相對於CentOS5的安裝有了不少的進步,有
四、cent OS安裝配置mysql
cnblogs 允許 ins wget linu date log 裝配 獲得 下載mysql的repo源$ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 安裝mysql-commu