tigervnc-server
安裝yum install tigervnc-server
為當前使用者設定密碼
vncpasswd
[root@tm ~]# vncserver &
[1] 10615
[root@tm ~]# xauth: (stdin):1: bad display name 「tm.myserver:1」 in 「add」 command
new 『tm.myserver:1 (root)』 desktop is tm.myserver:1
「tm.myserver:1」 表示桌面,類似於screen,在乙個終端上可以有多個螢幕;乙個vnc client只能連線乙個桌面
新增開機自啟動
[root@tm ~]#chkconfig vncserver on
殺程序命令,殺掉第乙個桌面程序
[root@tm ~]# vncserver -kill :1
vnc啟動後會在使用者的家目錄下生成乙個.vnc目錄,裡面的檔案如下
[root@localhost
~]# ls .vnc/
localhost.localdomain:
1.log localhost.localdomain:
1.pid passwd xstartup
這些檔案的作用
xstartup1
passwd 2
localhost.localdomain:1.pid3
localhost.localdomain:1.pid4
vnc passwd file ↩︎
identifies the xvnc process id ↩︎
配置VNC服務
在使用vncviewer遠端登入linux伺服器前,必須先開啟vncserver服務。整個配置過程包括以下幾步 1 增加vnc使用者。vncserver允許多個使用者同時登入乙個伺服器,每個使用者使用不同的session,並通過乙個新的xserver程序使用伺服器。配置檔案是 etc sysconf...
Ubuntu啟用VNC服務的配置
sudo apt get install vnc4server如果你想訪問root使用者的桌面環境就用sudo vncserver,如果訪問當前普通使用者的環境就直接vncserver即可。首次啟動會要求設定密碼,用來在客戶端訪問時使用,後面可以使用vncpasswd 修改。vncserver啟動v...
Linux中配置VNC伺服器
1 check whether the vnc has installed rpm q vnc server 2 install vnc if need yum install vnc server 3 set the vnc start as boot chkconfig vncserver on...