linux 下安装oracle的依赖包解释
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 下安装oracle的依赖包解释相关的知识,希望对你有一定的参考价值。
binutils-2.15.92.0.2-13.EL4
compat-db-4.1.25-9
compat-libstdc++-296-2.96-132.7.2
control-center-2.8.0-12
gcc-3.4.3-22.1.EL4
gcc-c++-3.4.3-22.1.EL44
glibc-2.3.4-2.9
glibc-common-2.3.4-2.9
gnome-libs-1.4.1.2.90-44.1
libstdc++-3.4.3-22.1
libstdc++-devel-3.4.3-22.1
make-3.80-5
pdksh-5.2.14-30
sysstat-5.0.5-1
xscreensaver-4.18-5.rhel4.2
setarch-1.6-1
libaio-0.3.103-3
libXp(as 5)
各种依赖包的用处,和含义。
最好贴出资料来,谢谢!!!!!!!!!!!
linux高手出来吧!!!!
不是库就是桌面环境
手动指定一个yum源
1 将光盘挂载到/mnt下面
mount -o loop /dev/cdrom /mnt
2 编辑/etc/yum.repos.d/rhel-debuginfo.repo
[rhel-debuginfo]
name=Red Hat Enterprise Linux $releasever - $basearch - Debug
baseurl=file:///mnt/Server ###将文件路径改为本地挂载点:file:///mnt/Server
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-debuginfo-beta]
name=Red Hat Enterprise Linux $releasever Beta - $basearch - Debug
baseurl=file:///mnt/Server ###将文件路径改为本地挂载点:file:///mnt/Server
enabled=1 ###启动yum
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
3 修改python的检测系统
编辑/usr/lib/python2.4/site-packages/yum/yumRepo.py
搜索remote
将其值改为:remote = "file:///mnt/Server" + '/' + relative
4 创建yum源目录
mkdir /var/www/html/yumsource/
5 yum clean all
OK
15.Linux下Apache rpm包安装方法,并解决依赖性问题(附自动启动方法)
参考技术A 1.修改虚拟机设置,按下图所示2.挂载镜像文件,如果报错,有可能是因为上面的 已连接 忘记打钩了。
1.必须先进入到rpm的包文件中
2.安装httpd包
可以查询出httpd包的全名,根据包全名开始安装
3.安装时发生错误,报错显示有依赖性,所以先安装被依赖的包apr-util-ldap
4.安装apr-util-ldap也发生依赖错误,所以先安装apr-util
5.安装apr-util发生模块依赖错误,在模块依赖查询网站查询此模块所在的软件包,
6.先安装上面模块所在的软件包,成功
7.再回到第5步,来安装apr-util成功
8.apr-util安装成功后,回到第4步,安装apr-util-ldap,成功
9.apr-util-ldap安装成功后,回到第2步,安装httpd,仍发生依赖错误。
10.继续安装依赖的软件包httpd-tools
11.httpd-tools安装成功,回到第2步,尝试安装httpd。终于成功
截止此时,Apache的主要功能已经安装成功。
但是,缺少其他组件,Apache功能还不完善,所以接着安装它的其他组件
1.安装httpd-devel
2.安装httpd-manual
2.成功,至此全部安装成功
3.查询是否安装
查询系统中安装的所有有httpd关键字的软件包
成功后,卸载ISO镜像
以上是关于linux 下安装oracle的依赖包解释的主要内容,如果未能解决你的问题,请参考以下文章
15.Linux下Apache rpm包安装方法,并解决依赖性问题(附自动启动方法)