原 超快速搞定linux的vnc

2021-09-08 07:20:36 字數 1306 閱讀 3741

在linux下使用vnc的機會也不多,也就是幾個資料庫的安裝,自從學會了在命令列下安裝oracle之後,更是將之忘記得一乾二淨,近來搞db2又不得不把它搗鼓起vnc了。

[root@test01 db2]# vncserver 

you will require a password to access your desktops.

password:

verify:

xauth: creating new authority file /root/.xauthority

new 'test01:1 (root)' desktop is test01:1

creating default startup script /root/.vnc/xstartup

log file is /root/.vnc/test01:1.log

[root@test01 db2]# cd ~/.vnc/

[root@test01 .vnc]# ls

passwd test01:1.log test01:1.pid xstartup

[root@test01 .vnc]# vim xstartup

[root@test01 .vnc]# pwd

/root/.vnc

[root@test01 .vnc]# vim xstartup

# 修改 xstartup

[root@test01 .vnc]# cat 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 & # 注釋這一行

gnome-session& # 新增這一行

[root@test01 db2]# vncserver -kill :1

[root@test01 db2]# vncserver

Linux超快速安裝Ruby on Rails

時間 2014 11 25 11 45 11 flincllck talk 原文主題 ruby on rails sed 在前面的一篇文章我介紹了乙個安裝ror的方法,不過對於剛接觸unix命令列的來說還是比較複雜,容易出錯。現在介紹乙個利用rvm快速安裝ruby gem rails的方法 一 安裝...

Linux命令安裝vnc服務端與vnc的客戶端

第一歩 執行命令 yum install tigervnc server y 第二歩 安裝telnet 第三歩 執行vncserver,建立桌面 vncserver kill 1 刪除桌面1的序號 伺服器測試埠 5901 在windows下測試 客戶端測試連線伺服器的5901埠時,提示telnet命...

教你一招,快速搞定Linux靜態IP設定

在實際應用中,由於我們使用的是dhcp dynamic host configuration protocol 動態主機配置協議 伺服器來分配的位址,那麼每次重啟dhcp伺服器ip位址有可能是會變動的。而我們用linux來搭建集群學習hadoop的話,是希望ip固定不變的,因為有很多地方會涉及到ip...