【Linux Ubuntu】華為雲ECS安裝桌面版Ubuntu

眾裡尋你千百度發表於2019-05-15

如前幾篇所屬購買多家雲伺服器商的Ubuntu伺服器後,想使用桌面版,本文以華為云為例介紹桌面版Ubuntu的安裝。

連線Ubuntu桌面需要安裝VNC,即在Linux伺服器上安裝VNC Server,在windows上安裝VNC Viewer

windows安裝VNC連線:VNC

1.Windows 安裝VNC Viewer

2.Shell遠端連線伺服器

使用XShell連線華為雲,賬號是root,連線後更新軟體庫、升級軟體並安裝桌面

# 更新軟體庫
apt-get update

# 升級軟體
apt-get upgrade

# Linux伺服器安裝VNC Server
apt-get install vnc4server

# 重啟伺服器
reboot

3.啟動VNC

# Linux啟動VNC服務
vncserver

啟動VNC服務後需要輸入密碼,這個密碼就是在windows上連線Ubuntu介面時要輸入的密碼,密碼最長八位

後面要修改的xstartup檔案位置在綠色框內 /root/.vnc/xstartup

4. Gnome 桌面環境安裝與配置

# 安裝x-windows的基礎
sudo apt-get install x-window-system-core
# 安裝登入管理器
sudo apt-get install gdm
# 安裝Ubuntu的桌面
sudo apt-get install ubuntu-desktop
# 安裝gnome配套軟體
sudo apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
# 修改VNC配置檔案
vi ~/.vnc/xstartup

xstartup檔案修改為(如不修改連線後出現灰色介面和X形滑鼠不能夠正常使用):

#!/bin/sh

# Uncomment the following two lines for normal desktop:
export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
# exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
# xterm -geometry 80x24+10+10 -ls -tile "$VNCDESKTOP Desktop" &
# gnome-session &

# x-session-manager & xfdesktop & xfce4-panel &
# xfce4-menu-plugin &
# xfsettingsd &
# xfconfd &
# xfwm4 &

x-window-manager &
gnome-panel &
gnome-settings-daemon &
metacity &
nautilus &
gnome-terminal &

5. 關閉原桌面程式並重啟

# 1是指桌面號,第三步啟動VNC服務後會有一個 :1,就是這個1
vncserver -kill :1

# 重新啟動VNC桌面程式
vncserver :1

6.在華為雲控制檯的安全組裡開啟VNC服務需要用到的5900和5901埠

7.Windows端開啟VNC,注意要加:1桌面號,之後要輸入第三步中的密碼

8. 連線成功

 

 

 

 

 

 

 

相關文章