一、Rdesktop远程连接工具

1、安装rdesktop

[root@localhost ~]# rpm -qa rdesktop
[root@localhost ~]# yum install rdesktop


2、常用参数选项

格式:rdesktop [options] server[:port]
[options]

-u:    用户名

-p:    用户密码

-g:    指定屏幕显示分辨率大小

-f:     全屏模式(Ctrl+Alt+Enter退出全屏)

-a:    显示器颜色位数(16/32)


3、远程连接windows桌面

[root@localhost ~]# rdesktop  -g 1440x800 -a 32 -u HM  192.168.1.238


二、Screen后台虚拟终端进程管理

1、安装screen

[root@localhost ~]# yum install screen
2、打开一个虚拟终端

[root@localhost ~]# screen

3、返回到用户终端

    【先按ctrl+a 再输入d】

4、查看后台虚拟终端

[root@localhost ~]# screen -ls
There is a screen on:
    11791.pts-0.localhost    (Detached)
1 Socket in /var/run/screen/S-root.

5、进入后台虚拟终端

[root@localhost ~]# screen -r 11791  //指定screen虚拟终端ID

6、关闭后台虚拟终端

输入exit或者ctrl+d