一般的培訓上課的話,除了使用投影儀之外呢,還有就是共享遠端桌面。
在這篇文章裡面,我們就來詳細的**一下如何來配置vnc伺服器的配置。當然如果遠端的windows通過client來鏈結linux伺服器,進行圖形化的管理也不是沒有可能啦!畢竟ssh沒有gnome直觀嘛!
其實配置vnc很簡單。只要執行vncserver就好了.執行完畢後,它會在家目錄生成.vnc目錄。
首先使用的是vncserver 命令來執行,結果如下
[root@jadeshow .vnc]# vncserver
you will require a password to access your desktops.
password: //輸入密碼
verify: //重複密碼
xauth: (stdin):1: bad display name "jadeshow:4" in "add" command
new 'jadeshow:4 (jadeshow)' desktop is jadeshow:4
creating default startup script /root/.vnc/xstartup
log file is /root/.vnc/jadeshow:4.log
這個時候就能在windows或者學生端敲打vncviewer 就可以進入遠端系統了哦!
ip位址後面的:1的意思是linux上面vnc設定的display no.每執行乙個vncserver就會多建立乙個display,display no也就會加一.
雖然此時可以登入,但是登入後看到的介面是x term的介面,還不是正常的x window介面,我們要修改配置,使之使用x window來顯示。
修改配置檔案/root/.vnc/xstartup,使之與下面內容相同
#!/bin/sh
# uncomment the following two lines for normal desktop:
unset session_manager
exec /etc/x11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $home/.xresources ] && xrdb $home/.xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$vncdesktop desktop" &
twm &
這是windows下客戶端軟體,註冊碼已經包括在裡面了。
(圖的大小作了限制,傳不上來 就不傳了!)
Centos7遠端桌面 vnc server設定
1 假定你的系統沒有安裝vnc的任何軟體,那麼,首先安裝vnc yum y install tigervnc server tigervnc 2 centos7之前的系統,如果安裝vnc一般都需要配置 cat etc sysconfig vncservers this file has been r...
遠端桌面連線
e d a a q wbbs.ecdown.net 遠端桌面其實可以為我們做很多事,而且不久的將來,其所發揮的作用將更大,簡單地說,遠端桌面管理,就是可以讓我們坐在家裡就可以連線到遠端電腦的桌面,可以操作遠端的電腦為你做任何事,如收發郵件了,檢視報表了,進行使用者管理了,進系統維護更新了,就像實際操...
ubuntu遠端桌面
1.xp下預設的遠端桌面協議是rdp,預設埠3389,而ubuntu用的時vnc 預設埠5900 2.首先被訪問的主機 windows linux 都要設定為允許其他主機遠端訪問該主機。ubuntu下只要設定 system preferences remote desktop windows下右鍵我...