Install libffi-devel

地址: https://gist.github.com/rderoldan1/5920539

[rpmforge]
# name=rpmforge
# baseurl=http://10.10.10.180/rpmforge
# failovermethod=priority
# enabled=1
# gpgcheck=0
# #gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
# gpgkey=http://10.10.10.180/centos65x64_base/RPM-GPG-KEY-CentOS-6

name = Red Hat Enterprise $releasever - RPMforge.net - dag
#baseurl = http://apt.sw.be/redhat/el5/en/$basearch/dag
mirrorlist = http://apt.sw.be/redhat/el5/en/mirrors-rpmforge
#mirrorlist = file:///etc/yum.repos.d/mirrors-rpmforge
enabled = 1
protect = 0
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
gpgcheck = 1

  1. Create a repo file in /etc/yum.repos.d/rpmforge.repo, you need to be an admin
  2. Copy the following text.
#Name: RPMforge RPM Repository for Red Hat Enterprise 5 - dag
   #URL: http://rpmforge.net/
   [rpmforge]
    name = Red Hat Enterprise $releasever - RPMforge.net - dag
    #baseurl = http://apt.sw.be/redhat/el5/en/$basearch/dag
    mirrorlist = http://apt.sw.be/redhat/el5/en/mirrors-rpmforge
    #mirrorlist = file:///etc/yum.repos.d/mirrors-rpmforge
    enabled = 1
    protect = 0
    gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
    gpgcheck = 1
  1. Download the the rpmforge gpg key

    $ sudo rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
    
  2. Install the package via yum
    $ sudo yum install libffi-devel
    
时间: 2024-09-06 13:29:09

Install libffi-devel的相关文章

Install Oracle12cR1 on Oracle Linux 6.5 in VirtualBox

My Oralce Linux 6.5 is running on VirtualBox. Basic settings is 4G memory, 50G hard-disk, auto partition when install OL6.5.   ** Following series of operations need root privilege. 1. Edit /etc/host Add your hostname. For example, you host name ol65

[Oracle] - Install Oracle12cR1 on Oracle Linux 6.5 in VirtualBox

My Oralce Linux 6.5 is running on VirtualBox. Basic settings is 4G memory, 50G hard-disk, auto partition when install OL6.5.   ** Following series of operations need root privilege. 1. Edit /etc/hosts Add your hostname. For example, you host name ol6

Oracel 12cR1 install for Oracle Linux 6.6

Oracel 12cR1install for Oracle Linux 6.5 一.安装前准备 1. 软件下载: Database software: db12102_V46095-01_1of2.zip db12102_V46095-01_2of2.zip 下载地址: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 或是:http://edelivery.oracle.com

install mongodb on macos

Update Homebrew’s package database. In a system shell, issue the following command: brew update 2 Install MongoDB. You can install MongoDB via brew with several different options. Use one of the following operations: Install the MongoDB Binaries To i

Centos install Postfix

###########################################POSTFIX安装文档############ centos6.4搭建postfix+extmail 系统环境Centos6.4 x64 一.安装mysql-5.0.60 yum remove mysql rm -f /etc/my.cnf groupadd mysql useradd -g mysql -s /bin/false -M mysql tar zxvf mysql-5.0.60.tar.gz cd

install emacs

address: http://ftp.gnu.org/pub/gnu/emacs/ file: emacs-26.1.tar.gz yum -y groupinstall "Development Tools" yum -y install gtk+-devel gtk2-devel yum -y install libXpm-devel yum -y install libpng-devel yum -y install giflib-devel yum -y install li

centos6.5安装部署git服务器(gitlab)

环境准备 python版本2.6 git版本 1.8.4.1 ruby版本ruby-2.0.0-p353 gitlab-shell版本 v1.8.0 gitlab版本6.4.3 因centos6系列的python版本是2.6的,已经支持,所以不必升级python版本. 在centos5下面需要升级python版本>2.5 安装epel的yum源 1 yum -y install http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-

centos6安装部署git服务器(gitlab6.4)

环境准备 python版本2.6git版本 1.8.4.1ruby版本ruby-2.0.0-p353gitlab-shell版本 v1.8.0gitlab版本6.4.3 因centos6系列的python版本是2.6的,已经支持,所以不必升级python版本.在centos5下面需要升级python版本>2.5 安装epel的yum源 1 yum -y install http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.n

LNMP编译安装遇到问题归总

LNMP编译安装遇到问题归总 1.错误:configure: error: freetype-config not found. 解决:yum install freetype-devel 2.错误:configure: error: libevent >= 1.4.11 could not be found  解决:yum -y install libevent libevent-devel 3.错误:configure: error: Please reinstall the mysql d

Python之路【第九篇】:Python操作 RabbitMQ、Redis、Memcache、SQLAlchemy

Python之路[第九篇]:Python操作 RabbitMQ.Redis.Memcache.SQLAlchemy Memcached Memcached 是一个高性能的分布式内存对象缓存系统,用于动态Web应用以减轻数据库负载.它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提高动态.数据库驱动网站的速度.Memcached基于一个存储键/值对的hashmap.其守护进程(daemon )是用C写的,但是客户端可以用任何语言来编写,并通过memcached协议与守护进程通信. Memc