helpying 发表于 2008-08-31 10:29

通过vnc安装oracle出现at least 256 colors Failed的错误处理

1 出现错误如下:
Checking Temp space: must be greater than 250 MB.   Actual 1570 MB    Passed
Checking swap space: must be greater than 500 MB.   Actual 1810 MB    Passed
Checking monitor: must be configured to display at least 256 colors    Failed >> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set.
Some requirement checks failed. You must fulfill these requirements before
continuing with the installation,at which time they will be rechecked.
2 处理思路是修订vncserver的配置为以下内容:
#!/bin/sh
/usr/openwin/bin/xrdb $HOME/.Xresources
/usr/openwin/bin/xsetroot -solid grey
/usr/openwin/bin/xterm -geometry 1024x768 -ls -title "$VNCDESKTOP Desktop" &
/usr/dt/bin/dtsession &
#startkde &
#/usr/bin/gnome-session &
#/usr/openwin/bin/twm &
#80x24+10+10 -depth 16 -geometry 1024x768 -rfbwait 120000 -rfbauth& 这里是xterm行原来的配置

3 重新启动vncserver后ok


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/14639/showart_1160437.html
页: [1]
查看完整版本: 通过vnc安装oracle出现at least 256 colors Failed的错误处理