安装oracle执行runInstaller文件时报错:“……/install/.oui:Permission denied”

一:问题描述

二:出错原因

将windows下未解压的Oracle安装软件上传到了linux服务器,导致有三个文件的执行权限丢失。

三:解决方法

为其赋予相应权限即可。

1:

[root@MyPc ~]# chmod 777 /download/database_10g_64/runInstaller

2:

[root@MyPc install]# chmod 777 /download/database_10g_64/install/.oui

3:

[root@MyPc install]# chmod 777 /download/database_10g_64/install/unzip

原文地址:https://www.cnblogs.com/eos666/p/10505015.html

时间: 2024-11-05 18:48:53

安装oracle执行runInstaller文件时报错:“……/install/.oui:Permission denied”的相关文章

使用FileView操作文件报错:ambari Permission denied

原因:通过FileView操作文件时要通多ProxyUser代理到HDFS用户. 解决办法: 1.打开AmbariServer并定位到 Services > HDFS > Configs 2.转到Advanced tab,找到Custom core-site添加以下属性: hadoop.proxyuser.root.groups=* hadoop.proxyuser.root.hosts=* 原文地址:https://www.cnblogs.com/lianglianggege/p/94469

安装Python的psutil模块时报错:error: command 'gcc' failed with exit status 1

安装Python的psutil模块: tar zxvf psutil-2.0.0.tar.gz cd psutil-2.0.0 python setup.py install 报错: running install running bdist_egg ...... psutil/_psutil_linux.c:12:20: error: Python.h: No such file or directory In file included from psutil/_psutil_linux.c

如何解决Win10通过FoD安装.Net Framework 3.5时报错0x8024401C?

如何解决Win10 1809通过FoD安装.Net Framework 3.5时报错0x8024401C? ?Lander Zhang 专注外企按需IT基础架构运维服务,IT Helpdesk 实战培训践行者博客:https://blog.51cto.com/landerIT Helpdesk 工程师实战培训课程:https://edu.51cto.com/lecturer/733218.html轻松进外企:IT Helpdesk工程师实战自学之路:https://blog.51cto.com/

Delphi 在写Ini文件时报错,Access violation at address 774D6EC8 in module 'ntdll.dll' write of address 004044CD

检查代码发现读写Ini文件函数ReadString参数错误导致:如下 节点不能为空. Delphi 在写Ini文件时报错,Access violation at address 774D6EC8 in module 'ntdll.dll' write of address 004044CD

python 读取文件时报错UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 205: illegal multibyte sequence

python读写txt文件转化成excel文件 python读取文件时提示"UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 205: illegal multibyte sequence" 解决办法1. FILE_OBJECT= open('order.log','r', encoding='UTF-8') 解决办法2. FILE_OBJECT= open('order.log','rb') pyth

javah生成jni头文件时报错 Error: cannot access android.support...

javah生成jni头文件时报错: Error: cannot access android.support.v7.app.AppCompatActivity class file for android.support.v7.app.AppCompatActivity not found Error: cannot access android.support.v4.app.FragmentActivity class file for android.support.v4.app.Fragm

SSH上传文件时报错

SSH上传文件时报错:encountered 1 errors during the transfer. 百度了一下,了解到客户端(Windows)这边的待上传文件不能放在有小括号的文件夹中,于是我将小括号去掉,果然就可以了. 版权声明:本文为博主原创文章,未经博主允许不得转载.

CentOS下编译CPP文件时报错[undefined reference to `__gxx_personality_v0' collect2: ld]的解决办法

在CentOS环境下编译CPP时报出 undefined reference to `__gxx_personality_v0' collect2: ld 以上错误,调查了一下,加上参数[-lstdc++]就可解决 例: gcc -lstdc++ a.cpp 参考自http://mlq.blog78.fc2.com/?mode=m&no=14 CentOS下编译CPP文件时报错[undefined reference to `__gxx_personality_v0' collect2: ld]

通过VS2010命令提示窗口创建强命名文件时报错问题

问题描述详见图 解决方案 00000005意思是Access Denied(即拒绝访问). 原因是:Program Files(x86)目录对一般用户和未提升权限的管理员是只读的. 所以只要赋予Users.Tusted Installer用户组对文件夹Microsoft Visual Studio 10.0或VC的完全权限即可(不必对Program Files(x86)进行权限提升) 通过VS2010命令提示窗口创建强命名文件时报错问题