(转)Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPL
转自:http://blog.csdn.net/huashnag/article/details/9357517
Starting Oracle Universal Installer... Checking Temp space: must be greater than MB. Actual MB Passed Checking swap space: must be greater than MB. Actual MB Passed Checking monitor: must be configured to display at least colors >>> Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<< Some requirement checks failed. You must fulfill these requirements before continuing with the installation,at which time they will be rechecked. Continue? (y/n) [n]
解决办法:
把系统注销,然后使用Oracle用户直接登录系统进入即可!
另外注意:环境变量配置文件中,如果加上官方文档中的一个参数
- export DISPLAY=local_host:0.0
- 会导致不能以Oracle用户的身份登录到图形界面,提示什么10s什么的
# 配置vncserver
vim /etc/sysconfig/vncservers
# 以用户root启动第一个和第二个桌面
VNCSERVERS="1:root 2:oracle"
# 调整分辨率
VNCSERVERARGS[1]="-geometry 1024x768"
VNCSERVERARGS[2]="-geometry 1024x768"
#设置密码
su - oracle
/usr/bin/vncpasswd
service vncserver restart
(转)Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPL的更多相关文章
- 图形化界面安装oracle报错Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set.
		问题描述: 在Linux + oracle 安装时,采有root 帐号登录x-windows 界面,然后 $su oracle 登录录安装Oracle 报以下错误: >>> Coul ... 
- linux安装数据时报错Could not execute auto check for display colors using command /usr/bin/xdpyinfo.
		在redhat6.5上安装Oracle时,最后使用oracle用户执行runInstaller 报错如下,无法连接到安装有xmanager的windows服务器,也就无法图形化安装oracle ora ... 
- Could not execute auto check for display colors using command /usr/bin/xdpyinfo.(
		Steps to resolve this issue: 1) login into root user( su -l root) 2) execute this command : xhost +S ... 
- 无法使用命令 /usr/bin/xdpyinfo 自动检查显示器颜色。请检查是否设置了 DISPLAY
		https://blog.csdn.net/woshigedahaoren/article/details/9493887 
- "crsctl check crs" command hangs at EVMD check
		 Pre-11gR2: "crsctl check crs" command hangs at EVMD check (文档 ID 1578875.1) APPLIES TO: ... 
- centos 7.3 安装 mysqldb 报错   EnvironmentError: mysql_config not found  ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
		ERROR: Command errored : command: /usr/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] ... 
- Failed to create Accelerated Display. Please check the display hardware and drivers meet the minimum requirements.
		ArcGIS Runtime for WPF开发中Map设置了属性UseAcceleratedDisplay="True",报错: Sample: LocalMap Error: ... 
- 解决linux用户切换失败 su:execute /usr/bin 没有权限
		问题描述: 回宿舍前,在root用户中安装fish,并修改其shell为fish.回宿舍之后,在图形界面用root用户进行登陆,莫名其妙登陆失败.没有任何提示信息,直接回到登陆界面.用非root用户登 ... 
- E0264 Unable to execute '"/usr/bin/codesign" ...'
		E0264 Unable to execute '"/usr/bin/codesign" ...' http://docwiki.embarcadero.com/RADStudio ... 
随机推荐
- 聊聊高并发(十八)理解AtomicXXX.lazySet方法
			看过java.util.concurrent.atomic包里面各个AtomicXXX类实现的同学应该见过lazySet方法.比方AtomicBoolean类的lazySet方法 public fin ... 
- 你如何理解 HTML5 的 section?会在什么场景使用?为什么这些场景使用 section 而不是 div?
			section元素表示文档或应用的一个部分.所谓“部分”,这里是指按照主题分组的内容区域,通常会带有标题.[也就是每个section对应不同的主题.注意是内容本身的主题,而不是其他人为设定的划分标准. ... 
- Tools-->SQL Server Profiler监视数据库
			http://www.cnblogs.com/lorking/p/4062787.html https://docs.microsoft.com/en-us/sql/tools/sql-server- ... 
- vue -- 脚手架之webpack.dev.conf.js
			webpack.dev.conf.js 开发环境模式配置文件: 'use strict'//js按照严格模式执行 const utils = require('./utils')//导入utils. ... 
- 关于router-link的传参以及参数的传递
			1.路径:http://localhost:8081/#/test?name=1 <router-link :to="{path:'/test',query: {name: id}}& ... 
- 2017国家集训队作业[agc014d]Black and White Tree
			2017国家集训队作业[agc014d]Black and White Tree 题意:  有一颗n个点的树,刚开始每个点都没有颜色.Alice和Bob会轮流对这棵树的一个点涂色,Alice涂白,B ... 
- AJAX与XMLHttpRequest
			XMLHttpRequest: 中文可以解释为可扩展超文本传输请求.Xml可扩展标记语言,Http超文本传输协议,Request请求.XMLHttpRequest对象可以在不向服务器提交整个页面的情况 ... 
- 【Codeforces Round #457 (Div. 2) B】Jamie and Binary Sequence
			[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 把n分解成二进制的形式. n=2^a0+2^a1+...+2^a[q-1] 则固定就是长度为q的序列. 要想扩展为长为k的序列. 可 ... 
- POJ——T 2891 Strange Way to Express Integers
			http://poj.org/problem?id=2891 Time Limit: 1000MS Memory Limit: 131072K Total Submissions: 16849 ... 
- win8用久了变得非常慢, 磁盘占用100%
			完美解决方式: 直接重装win7 完美解决这个问题 在网上查了非常久也没找到有效方法, 求教 
