如下转自一个论坛,忘了哪了,一直在电脑上存的. I've got Oracle Enterprise Linux 5 to install an Oracle server. Checking required packages I found three missing. I located the .rpm files and tried to install manually. The install gave a warning, but said the package was alr…
1.安装rpm包 nano /v.sh 将下面内容复制进去 #!/bin/bash rpm -Uvh compat-db-4.2.52-5.1.i386.rpm rpm -Uvh compat-libstdc++-33-3.2.3-61.i386.rpm rpm -Uvh make-3.81-3.el5.i386.rpm rpm -Uvh setarch-2.0-1.1.i386.rpm rpm -Uvh libgomp-4.4.0-6.el5.i386.rpm rpm -Uvh libXp-1…
Linux下软件的安装主要有两种不同的形式.第一种安装为源码安装,文件名为xxx.tar.gz压缩包为主;以第一种方式发行的软件多为以源码形式发送的.第二种方式则是另一种安装文件名为xxx.i386.rpm.直接以二进制形式发送的.第三种 是在线安装方法 yum  在另一篇中详细介绍. 安装前先查看是否安装过,避免重复安装 查看有没有安装过(以mysql为例): yum list installed mysql* rpm -qa | grep mysql* find / -name mysql*…
linux上安装mysql, 就需要两个文件, xx.client.xx.rpm和 xx.server.xx.rpm 如 MySQL-client-community-5.1.72-1.rhel5.i386.rpm 和 MySQL-server-community-5.1.72-1.rhel5.i386.rpm 对于 MySQL-community-5.1.72-1.rhel5.i386.rpm-bundle.tar, 则包括全部. 安装过程还是很简单, ref: http://rainbow7…
yum 安装软件时,报错:No package XXX available. [root@localhost ~]# yum -y install redis Loaded plugins: fastestmirror No package redis available. Nothing to do 配置一台CentOS 7.x或RHEL 7.x的系统使用Fedora EPEL  repos和第三方软件包安装各种软件包.请注意,这些软件包没有正式获得任何的CentOS或Red Hat的支持,但…
注意 RHEL5 和 RHEL6 的不同 How to use yum to download a package without installing it Solution Verified - Updated October 22 2015 at 2:36 PM - English Environment Red Hat Enterprise Linux (RHEL) 7 Red Hat Enterprise Linux 6 Red Hat Enterprise Linux 5 Issue…
a2ps-4.13b-57.2.el5.i386.rpm 每一个rpm包的名称都由"-"和"."分成了若干部分.就拿 a2ps-4.13b-57.2.el5.i386.rpm 这个包来解释一下,a2ps 为包名:4.13b则为版本信息Version:57.2.el5为发布版本号(同一版本的软件包有很多准对不同平台的发布号Release):i386为运行平台.其中运行平台常见的有i386, i586, i686, x86_64 ,需要你注意的是cpu目前是分32位和6…
在 Ubuntu 执行 sudo apt-get upgrade 时,出现了如下的报错: Setting up bluez (4.101-0ubuntu13.1) ... reload: Job is not running: dbus invoke-rc.d: initscript dbus, action "force-reload" failed. start: Job failed to start invoke-rc.d: initscript bluetooth, acti…
#!/usr/bin/python # 8th November, 2009 # update manager failed, giving me the error: # 'files list file for package 'xxx' is missing final newline' for every package. # some Googling revealed that this problem was due to corrupt files(s) in /var/lib/…
前提: Centos 系统, apache 已安装, python 已安装. 1. 首先下载mod_wsgi-3.5.tar.gz 下载地址:https://code.google.com/p/modwsgi/ 2. 解压:tar -zxvf mod_wsgi-3.5.tar.gz 3. 进入解压后的目录:cd mod_wsgi-3.5 4. 配置:./configure 此时可能会遇到问题:apxs: command not found 原因: apache 组件 httpd-devel 没有…