概念
成都創(chuàng)新互聯(lián)公司是一家專業(yè)提供海東企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)、H5場(chǎng)景定制、小程序制作等業(yè)務(wù)。10年已為海東眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。
Ubuntu是一個(gè)以桌面應(yīng)用為主的開源GNU/Linux操作系統(tǒng),Ubuntu 是基于Debian GNU/Linux,支持x86、amd64(即x64)和ppc架構(gòu),由全球化的專業(yè)開發(fā)團(tuán)隊(duì)(Canonical Ltd)打造的。
VNC (Virtual Network Computer)是虛擬網(wǎng)絡(luò)計(jì)算機(jī)的縮寫,它是一款遠(yuǎn)程控制工具軟件,由Olivetti & Oracle研究室所開發(fā),此研究室在1999年并入美國(guó)電話電報(bào)公司(AT&T)。VNC借由網(wǎng)絡(luò),可傳送鍵盤與鼠標(biāo)的動(dòng)作及實(shí)時(shí)的屏幕畫面。在Linux中,VNC包括以下四個(gè)命令:vncserver,vncviewer,vncpasswd和 vncconnect。大多數(shù)情況下用戶只需要其中的兩個(gè)命令:vncserver和 vncviewer。
需求:
有一臺(tái)ubuntu 19.10,已安裝圖形界面,現(xiàn)需開啟vnc遠(yuǎn)程桌面
分析:
由于ubuntu desktop 自帶的定制了的gnome桌面系統(tǒng),在該桌面系統(tǒng)下vnc4server和tightvncserver等均不可直接使用。
實(shí)際上Ubuntu Desktop是有桌面共享功能的,如果是最小化安裝就需要單獨(dú)安裝它。
Ubuntu桌面共享使用的是vino。
Ubuntu桌面共享使用的是vino。
Ubuntu桌面共享使用的是vino。
在ubuntu默認(rèn)的gnome環(huán)境下不要使用vnc4server和tightvncserver,使用vino。
解決:
1.開啟ssh,并允許root密碼登錄
apt install openssh-server ssh
vi /etc/ssh/sshd_config
UsePAM yes
PermitRootLogin yes
PasswordAuthentication yes
#修改以上配置
systemctl enable ssh && systemctl restart ssh
#此時(shí)可以用root 密碼登錄ssh
2.開啟屏幕共享
打開Settings --> Screen Sharing -->激活并設(shè)置密碼
#如果沒有Screen Sharing選項(xiàng),可能是vino沒有安裝,嘗試apt install vino 安裝
#激活后,用netstat -tulp | grep 59,查看端口是否監(jiān)聽590X
#如果正常,可以嘗試用vnc連接,可能會(huì)出現(xiàn)“no security type suitable for RFB3.3”的錯(cuò)誤。第3步就是解決這個(gè)問題。
3.關(guān)閉加密
gsettings set org.gnome.Vino require-encryption false
#關(guān)閉加密,此時(shí)vnc能正常連接
4.開啟用戶自動(dòng)登錄桌面
vino必須登錄后才能啟動(dòng),所以還要配置用戶自動(dòng)登錄桌面環(huán)境
vi /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
[Seat:*]
user-session=ubuntu
greeter-show-manual-login=true
allow-guest=false
#允許root登錄桌面環(huán)境
Autologin-user=root
#自動(dòng)登錄的用戶
vi /etc/pam.d/gdm-autologin
#auth required pam_succeed_if.so user != root quiet_success
#注釋此行
vi /etc/pam.d/gdm-password
#auth required pam_succeed_if.so user != root quiet_success
#注釋此行
vi /etc/gdm3/custom.conf
[daemon]
# Uncomment the line below to force the login screen to use Xorg
#WaylandEnable=false
# Enabling automatic login
AutomaticLoginEnable = true
AutomaticLogin = root
#配置自動(dòng)登錄
vi /root/.profile
#mesg n || true
tty -s && mesg n || true
#修改mesg這行為tty
5.修改屏幕共享端口
默認(rèn)是5900,但由于業(yè)務(wù)需要,改成5901
apt-get install dconf-editor
#安裝dconf-editor
登錄圖形界面,執(zhí)行dconf-editor,依次選擇/org/gnome/desktop/remote-access/alternative-port 關(guān)閉默認(rèn)值,手動(dòng)修改為5901;
有資料說要再Again Right Click on alternative_port and click on Set as Default (this is important),但實(shí)際測(cè)試時(shí)這步會(huì)還原成5900,不清楚是否必要。
然后打開use-alternative-port,這步很重要。
參考:https://ubuntuforums.org/showthread.php?t=1297290
netstat 檢查端口是否修改,就可以用新端口登錄。