1.安裝x11vnc
sudo apt-get install x11vnc
2.設定開機自動啟動連線密碼
sudo x11vnc -storepasswd
3.將密碼儲存在/etc/x11vnc.pass 下
sudo x11vnc -storepasswd in /etc/x11vnc.pass
4.在系統服務目錄中新建服務檔案
sudo vim /lib/systemd/system/x11vnc.service
5.在檔案中新增下列**
[unit]
description=start x11vnc at startup.
after=multi-user.target
[service]
type=******
execstart=/usr/bin/x11vnc -auth guess -forever -loop -noxdamage -repeat -rfbauth /home//.vnc/passwd -rfbport 5900 -shared
[install]
wantedby=multi-user.target
注意**中username,是你的使用者名稱,切記一定要更改。
1.設定開機自啟服務
sudo systemctl daemon-reload
sudo systemctl enable x11vnc.service
sudo systemctl start x11vnc.service
檢視狀態
systemctl status x11vnc.service
1.安裝使 ubuntu 使用虛擬顯示器的軟體
sudo apt-get install xserver-xorg-core-hwe-16.04
sudo apt-get install xserver-xorg-video-dummy-hwe-16.04 --fix-missing
2.修改/建立配置檔案(預設就會使用虛擬顯示器)
sudo vim /usr/share/x11/xorg.conf.d/xorg.conf
新增如下**:
section "device"
identifier "configured video device"
driver "dummy"
endsection
section "monitor"
identifier "configured monitor"
horizsync 31.5-48.5
vertrefresh 50-70
endsection
section "screen"
identifier "default screen"
monitor "configured monitor"
device "configured video device"
defaultdepth 24
subsection "display"
depth 24
modes "1920x1080"
endsubsection
endsection
重啟就可以生效
重啟之後即使接入了顯示器,也不會輸出訊號到顯示器上!
但是通過 vnc-viewer 與在未按照本文安裝軟體和修改配置檔案前一模一樣可以鏈結到 ubuntu 主機上,進行「遠端」桌面控制
Ubuntu16 04 和Windows遠端桌面
window7和ubuntu之間的遠端通訊一直沒解決,這兩天終於搞定了,試了很多方法,mstsc xdrp 最好用,也最簡單。ubuntu端 1.安裝xfce4 使用ubuntu16.04進行遠端桌面時,首先需要安裝xfce4,乙個輕量級的桌面,使用自帶的gnome失敗,具體細節暫時先不管了,這裡就...
Ubuntu 16 04 遠端桌面
1 安裝xrdp sudo apt get install xrdp 2 安裝vnc4server 我這裡是安裝xrdp的時候自動安裝的。我看網上很多說是需要單獨安裝的。3 安裝xfce4 sudo apt get install xubuntu desktop 這個軟體比較大,總計需要260m。4...
Ubuntu 16 04 遠端桌面
本文主要是講解如果理由vnc實現windows遠端訪問ubuntu 16.04,其實網上有很多類似教程,但是很多需要安裝第三方桌面 xfce桌面等等 而且很多人不太喜歡安裝第三方桌面,很多人像筆者一樣喜歡原生自帶的桌面 o o哈哈 有點強迫症 今天筆者給大家介紹一下,不需要安裝其他桌面,使用ubun...