1. 安裝vnc4server
# sudo apt-get install vnc4server
2. 首先動行一次vnc4server, 去建立.vnc目錄。
# vnc4server
簡單指令碼:
#! /bin/sh
vnc4server :6 -geometry 1680x1050 -alwaysshared -depth 16
3. 使用vnc時,使其能使用copy/paste功能
vncconfig -iconic -nowin &
另附: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 -nowin &
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$vncdesktop desktop" &
#x-window-manager &
gnome-session &
4. 重啟vnc4server
# vnc4server -kill :
# vnc4server (或直接執行上面的指令碼)
5. 測試,使用ok。
Ubuntu11 04使用小結
首先還是介面的感覺,更炫了,這得益於unity桌面。ubuntu不再使用gnome桌面而換用全新的unity,這算得上乙個大膽超前的決策,畢竟gnome已經發展了這麼多年了,積累了大量的使用者群。而unity的變化的確很大,最明顯是 開始 選單不見了,取而代之的一排應用程式快捷按鈕,類似於蘋果的桌面...
rvm 在ubuntu11 04下安裝
ruby 版本眾多,相互相容性差。在開發中新老專案的維護非常不便,於是有rvm這東東出來了。ubuntu 下開發環境搭建實錄 bash curl 在 bashrc 中加入 s home rvm scripts rvm source home rvm scripts rvm source home u...
QT在ubuntu 11 04下的安裝
第一種方法 第二種方法 1 配置 進入解壓後的資料夾裡,執行.configure prefix usr local trolltech qt 4.7.4 pc 2 編譯 make 時間比較長,好幾個小時 3 安裝 make install 由於在配置時指定了安裝目錄,這樣將被安裝到目錄下 usr l...