Linux 可以通过使用 SSH 远程连接来进行控制,也可以在主机执行以下命令进行投射。
[root@localhost ~]# export DISPLAY=ipaddress:0
[root@localhost ~]# xhost +
这个命令要求 ipaddress 的机器装有 X Server(比如 Xmanager),但有时需要将远程整个的 Linux 桌面投射到本地,这时仍可通过安装配置 Xmanager 来实现。
本文主要介绍 VNC Server 的配置方法,需配置好 yum 源,文中的“主机”指安装 Linux 的机器。
若没有,则
[root@localhost ~]# yum install "*vnc*"
3. Red Hat Linux 支持两种图形模式:KDE 模式和 gnome 模式。
[root@localhost .vnc]# vi xstartup
exec /etc/X11/xinit/xinitrc
Killing Xvnc process ID 21198
[root@localhost ~]# vncserver
New ‘localhost.localdomain:1 (root)’ desktop is localhost.localdomain:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:1.log
[root@localhost sysconfig]# vi iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 6001 -j ACCEPT
Flushing firewall rules: [ OK ]
Setting chains to policy ACCEPT: filter [ OK ]
Unloading iptables modules: [ OK ]
Applying iptables firewall rules: [ OK ]
Loading additional iptables modules: ip_conntrack_netbios_ns ip_conntrack_ftp [ OK ]
补充:
[root@mail01 .vnc]# vncserver :1
xauth: (stdin):1: bad display name "CC:1" in "add" command
New 'mail01:1 (root)' desktop is mail01:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/mail01:1.log
hostname不能被ping
[root@mail01 .vnc]# vi /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 CC ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
文章摘自http://niye.name/archives/1138