易截截图软件、单文件、免安装、纯绿色、仅160KB

linux下vncserver配置与win下vnc客户端


linux下vncserver配置与win下vnc客户端


8 Nov, 2008
 
管理&服务

< type="text/javascript"><!--
google_ad_client = "pub-7056129240767270";
/* 300x250, 创建于 09-2-13 */
google_ad_slot = "2704913083";
google_ad_width = 300;
google_ad_height = 250;
//-->
< src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
VNC最初由AT&T开发,是一个对系统进行远程管理的软件.其操作方式类似于现在Windows下常见的远程桌面,当然其资格比Windows的远程桌面更老.在Windows下的VNC软件有RealVNC等.
linux系统当然不支持Windows的远程桌面登录,那么我们如何用一台Windows的笔记本来管理一台linux的服务器呢?
下载页面:
http://www.realvnc.com/products/download.html
http://www.onlinedown.net/soft/45175.htm
首先,我们当然会考虑SSH,在linux下安装SSH服务器,然后在windows下使用puTTY登录进行管理.
但是现在,我们不满足仅仅使用命令行方式,我们同样想使用GUI界面.那么:
1.在linux系统下安装VNC Server,大多数linux发行版都带了VNC Server的发行包.只要选择安装就可以了.
2. 在Windows下安装VNC 客户端,以RealVNC为例,VNC客户端叫做VNC Viewer.VNC的使用相对比较简单,输入客户端的IP,然后VNC会进行连接,然后弹出密码框输入密码.没有问题的话就连接上了.
3. 配置linux VNC Server.
(1)启动VNC 服务.通过puTTY以SSH方式登录服务器,假设用户名为test
login as: test
 [test@MyServer's password:
 [test@xok.la ~]$ /etc/init.d/vncserver start
 Starting VNC server: no displays configured                [  OK  ]
(2)运行vncserver命令,如果第一次配置VNC Server,会要求提供登录VNC使用的密码.以后也可以使用vncpasswd来修改密码.
[test@xok.la ~]$ vncserver
 You will require a password to access your desktops.
 Password:123456
 Verify:123456
 xauth:  creating new authority file /root/.vnc/.Xauthority
 New 'xok.la.localdomain:1 (test)' desktop is xok.la.localdomain:1
 Creating default startup script /root/.vnc/x


相关文档:

Notes for Advanced Linux Programming 4. Threads

4.  Threads
To use the POSIX standard thread API (pthreads), link libpthread.so
to your program.
4.1. Thread Creation
Each thread in a process is identified by a thread ID,
pthread_t.
The pthread_self function returns the thread ID of the current
thread.
This thread IDs can be compared ......

Notes for Advanced Linux Programming 6. Devices


6.  Devices
A device driver hides the hardware device’s communication
protocols from the operating system and allows the system to interact with the
device through a standardized interface.
Processes can communicate with a device driver via
file-like objects.
6.1 Device Types
A c ......

【转帖LINUX】netfilter中的conntrack内核阅读笔记(1)

2008-07-07 22:04状 态检测(stateful inspection)是由CheckPoint公司最先提出的,可算是防火墙技术的一项突破性变革,把包过滤的快速性和代理的安全性很好地结合在一起, 目前已经是防火墙最流行的检测方式。状态检测的根本思想是对所有网络数据建立“连接”的概念,此“连接”是面向“连接&rdquo ......

【转帖LINUX】netfilter中的conntrack内核阅读笔记(2)


2008-07-07 22:05
初始化
1,ip_conntrack_standalone_init是contrack模块的初始化函数。它主要完成以下内容:
   /*1, 初始化conntrack相关的数据结构,如hash表,ip_conntrack_protocol以及内存管理等*/
ret = ip_conntrack_init();
if (ret < 0)
     return ret;
#ifdef CON ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号