華爲雲(ECS)-linux服務器中-Ubuntu圖形界面安裝-解決root登陸受限-VNCviwer/Teamviwer遠程訪問教程

安裝ubuntu-desktop     

1.更新軟件庫
apt-get update

2.升級軟件
apt-get upgrade

3.安裝桌面
apt-get install ubuntu-desktop

解決root登陸受限

華爲雲登陸進去是guest用戶,不能選擇登陸用戶且不須要密碼就便可登陸。html

登陸進去會以下警告信息:linux

 

首先下載putty(傳送門):web

在putty上經過SSH登錄雲服務器:shell

ubuntu

 

對如下目錄文件進行修改:vim

注意:下載及登錄putty的操做是必須的!由於遠程進入華爲雲服務器,只能使用guest賬號,可是guest賬號是沒有權限修改這個文件的。因此,須要在windows端,使用上面提到的putty工具,以root賬號(使用putty工具進入能夠指定登陸用戶),遠程登陸進入,這樣才能夠修改文件。windows

vim /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
# 修改前
[Seat:*]
user-session=ubuntu
 
# 修改後
[Seat:*]
user-session=ubuntu
greeter-show-manual-login=true
allow-guest=false

 

重啓以後就能夠用root用戶登陸,可是登陸後仍是有警告,這個須要修改 /root/.profile 文件:bash

vim /root/.profile
# 文件 /root/.profile
 
# 文件修改前
    # ~/.profile: executed by Bourne-compatible login shells.
 
    if [ "$BASH" ]; then
      if [ -f ~/.bashrc ]; then
        . ~/.bashrc
      fi
    fi
    mesg n || true # 文件修改後
    # ~/.profile: executed by Bourne-compatible login shells.
 
    if [ "$BASH" ]; then
      if [ -f ~/.bashrc ]; then
        . ~/.bashrc
      fi
    fi
    tty -s && mesg n || true

reboot 重啓後便可。服務器

安裝遠程訪問軟件

每次都經過web進行登陸很不方便,並且桌面的反應也比較慢。所以能夠安裝Teamviwer/vnc4server來實現遠程登陸。session

方法一:Teamviwer安裝  傳送門  (推薦)

無需過多配置,一鍵安裝!

windows及linux版本均可安裝。

 

 

 

 

使用以下:

 

方法二:安裝vnc4server(稍麻煩,配置過多)

  • 安裝vnc4server

apt-get install vnc4server -y
  • 運行命令開啓VNC服務並設置鏈接密碼

vnc4server

 

  • 運行命令確認服務是否啓動

ps –ef|grep vnc

 

  • 修改xstartup文件 

  若是不修改VNC Viewer會找不到啓動桌面的文件。在修改以前作好備份!

cp ~/.vnc/xstartup ~/.vnc/xstartup.bak

  殺掉原來的桌面進程:

vncserver –kill :1

  修改vnc的啓動文件 :

vi ~/.vnc/xstartup      

  修改內容根據本身安裝的圖形界面的不一樣而不同。

  能夠自行查閱相關內容,此處略去。

  保存退出後,再次進入vnc遠程鏈接:

vncserver :1
  • 在你的電腦上安裝vncviwer,用來遠程鏈接

  vncviwer 傳送門    服務器地址這樣寫 公網IP:1 

相關文章
相關標籤/搜索