1 生成密碼
$ x11vnc -storepasswd
enter vnc password: *********
verify password: *********
write password to /home/userhome/.vnc/passwd? [y]/n y
password written to: /home/rahul/.vnc/passwd
2 開啟服務
x11vnc -auth guess -once -loop -noxdamage -repeat -rfbauth /home/username/.vnc/passwd -rfbport 5900 -shared3 設為開機啟動
sudo nano /lib/systemd/system/x11vnc.service在開啟的頁面中插入以下**
[unit]
description=start x11vnc at startup.
after=multi-user.target
[service]
type=******
execstart=/usr/bin/x11vnc -auth guess -once -loop -noxdamage -repeat -rfbauth /home/username/.vnc/passwd -rfbport 5900 -shared
[install]
wantedby=multi-user.target
sudo systemctl daemon-reload4 修改vnc viewer螢幕解析度sudo systemctl enable x11vnc.service
使用man命令獲得關於geometry引數的描述
[root@secdb ~]# man vncserver
……-geometry widthxheight
specify the size of the desktop to be created. default is 1024x768.
……可見,預設的解析度是1024x768,我們可以使用這個引數對解析度進行調整。
例如,我們需要將解析度調整到800x600
[root@secdb ~]# vncserver -geometry 800x600
Ubuntu遠端SSH及x11vnc遠端桌面連線
一 連線ssh 1.開啟ssh sudo apt update 更新源列表 sudo apt get install openssh server 安裝ssh服務 sudo ps e grep ssh 檢視ssh服務是否啟動 如圖則已開啟 sudo service ssh start 開啟ssh服務...
UOS系統中安裝x11vnc遠端桌面
sudo apt get updatesudo apt get install x11vnc ysudo x11vnc storepasswd etc x11vnc.pass根據提示,輸入並確認vnc連線的密碼,密碼儲存在 etc x11vnc.pass檔案中。sudo vim lib system...
x11vnc怎麼手動啟動和隨系統自啟動
x11vnc怎麼手動啟動和隨系統自啟動 1 手動啟動x11vnc www.2cto.com 按組合鍵ctrl alt t開啟終端,輸入 sudo usr bin x11vnc display 0 auth var run lightdm root 0 forever bg o var log x11...