需求:
有一臺(tái)ubuntu 19.10,已安裝圖形界面,現(xiàn)需開(kāi)啟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。開(kāi)啟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。開(kāi)啟屏幕共享
打開(kāi)Settings --> Screen Sharing -->激活并設(shè)置密碼
#如果沒(méi)有Screen Sharing選項(xiàng),可能是vino沒(méi)有安裝,嘗試apt install vino 安裝
#激活后,用netstat -tulp | grep 59,查看端口是否監(jiān)聽(tīng)590X
#如果正常,可以嘗試用vnc連接,可能會(huì)出現(xiàn)“no security type suitable for RFB3.3”的錯(cuò)誤。第3步就是解決這個(gè)問(wèn)題。
3。關(guān)閉加密
gsettings?set?org.gnome.Vino?require-encryption?false
#關(guān)閉加密,此時(shí)vnc能正常連接
4。開(kāi)啟用戶(hù)自動(dòng)登錄桌面
vino必須登錄后才能啟動(dòng),所以還要配置用戶(hù)自動(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)登錄的用戶(hù)
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。重啟測(cè)試
6。修改屏幕共享端口
默認(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;
有資料說(shuō)要再Again Right Click on ? ? alternative_port and click on Set as Default (this is important),但實(shí)際測(cè)試時(shí)這步會(huì)還原成5900,不清楚是否必要。
然后打開(kāi)use-alternative-port,這步很重要。
參考:https://ubuntuforums.org/showthread.php?t=1297290
netstat 檢查端口是否修改,就可以用新端口登錄。
本文標(biāo)題:ubuntu19.10desktop配置遠(yuǎn)程vnc-創(chuàng)新互聯(lián)
本文鏈接:http://www.rwnh.cn/article12/csiogc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、網(wǎng)站營(yíng)銷(xiāo)、網(wǎng)站設(shè)計(jì)公司、網(wǎng)站內(nèi)鏈、動(dòng)態(tài)網(wǎng)站、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容