secureCRT启动xmanager图形化工具

时间:2023-11-26 09:07:26

secureCRT启动xmanager图形化工具

2014年9月17日

11:42

secureCRT是我们在维护UNIX或者linux的重要工具。xmanager 工具是连接UNIX或者linux的图形化工具。这两个工具都可以独立完成相关工具。我这里想介绍的是两个工具的结合,这样可以提交我们的工作效率。

我们很多操作都是可以通过命令行的形式来完成,但是像使用图形化界面建库时,使用secureCRT就不使用了。我这个设置可以在secureCRT中直接使用netca命令,由xmanager来显示安装界面。

首先,我们要进行一下服务器的设置

如果服务器是图形化界面启动的,xhost +命令可以不用执行

[root@test ~]# xhost +

xhost:  unable to open display ""

设置display变量,设置的IP为安装xmanager的客户端IP

[root@test ~]#

[root@test ~]# export DISPLAY=192.168.1.226:0.0

其次,我们要在客户端启动Xmanager - Passive程序

最后,我们就可以在secureCRT工具中直接使用领命来启动图形化界面了。

这个是一个技巧,增加工作的效率。

xhost: unable to open display

1、 以root用户登录

输入命令xdpyinfo,记录下里面的name of display:后的字符串,如 name of display:127.0.0.1:1.0

在执行xhost +命令(使得所有客户都可以访问)

返回信息为:

access control disabled,clients can connect from any host

如果xhost +不能执行,可以输入命令export DISPLAY=:0执行一下

再执行xhost +

xhost + ip (name表示那个ip机器可以使用该服务)

2、以oracle用户登录

如果前面root登录下执行xdpyinfo后的name of display:后的字符串是127.0.0.1:1.0

那么在该oracle用户下执行一下export DISPLAY=:1.0

然后再执行xdpyinfo命令,如果能出现信息说明你已经成功了

这样估计就可以解决linux下安装oracle出现的xhost问题

Warning: Missing charsets in String to FontSet conversion

[oracle@rhel5 ~]$ xclock

[oracle@rhel5 ~]$ Warning: Missing charsets in String to FontSet conversion

解决办法:

[oracle@rhel5 ~]$ export LANG=C;

[oracle@rhel5 ~]$ xclock

[oracle@rhel5 ~]$

源文档 <http://blog.sina.com.cn/s/blog_a57562c80101e0nn.html>