1.远程连接Linux常用软件:
putty、Real_VNC、xshell、SSHSecureShellClient-3.2.9、NetSarang.Xmanager、SecureCRT等等。

2.下面以vnc为例
vnc是以图形画界面连接到Linux,而且需要在Linux里配置一下文件参数,其他即连即用。
首先,设置虚拟机:
启用VMnet1,连接方式为host-only(如果有问题,可以更为Bridged尝试),ip与Linux主机ip在同一网段。

网上下载Real_VNC_Enterprise_Edition_v4.4.5.rar并在xp下安装完毕。进入Linux进行配置:
[root@rhel5 ~]# rpm -q vnc-server          //检查Linux是否安装vnc-server
vnc-server-4.1.2-14.el5                            //vnc-server已经安装

[root@rhel5 ~]# yum install vnc-server                   //安装vnc-server
[root@rhel5 ~]vncpasswd                               //设置密码
[root@rhel5 ~]vncserver &  
[root@rhel5 ~]# cd .vnc                               //进入隐藏目录vnc找到xstartup文件进行编辑
[root@rhel5 .vnc]# vim xstartup
将#twm &i改为gnome-session &

 

[root@rhel5 ~]vncserver -kill :1
[root@rhel5 ~]vncserver &

3.登录如图