From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id 5DCDF1B1A4 for ; Fri, 20 Oct 2017 07:36:35 +0200 (CEST) Received: by mail-wr0-f180.google.com with SMTP id r79so10309797wrb.13 for ; Thu, 19 Oct 2017 22:36:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:mime-version:thread-index :content-language; bh=utV+lxxQJ5HGK8Dm6DTnxDcndftG++gPNzgChKCM9Y4=; b=JXAQqZgYf3ZHwaLuwWFN/yl0zqaj7eodZ1SdsHmXey7cgcJkO5Q7Nth/9p40BGlQCD OLPIgH6rbhXDGtRuJBk1EYKGT7RAKppNUginXlyVUegC6lfl+hUN7KcEYlCrgFY3zmOI D9Lr9YRy5AJgoSEAwhOqB+njJkoNtLyHWxSKpbPNgJxOYeJL6wogP4aRvcD8Qbk0DJT8 LxWTuGaL65pU+n43jDXbs+tuGg4A9JVxubLoeg12QyWFuaTq7fXArxUPeb89CTl25d/2 +Y51+e2W9grBhZT3dmZore5Uwj6ckq/qaoB2iCggOR3/1G5UI62L6MBk4BYh+xf0nOHz Z2mQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :thread-index:content-language; bh=utV+lxxQJ5HGK8Dm6DTnxDcndftG++gPNzgChKCM9Y4=; b=aZr4Zv8AeSNtq5Erpz4BNIGRaNcK3VaShdpmAZ04XpB8VkKLBUuZ+hJE9YGHwWDmm1 MAyHJMMKbwOP9xOBIr5ZT0zifRKtBYU2cocKTOcS6sOSjFcwwba+V5PCoiRyQMMvrZrW 3vWh9YvmT8YZj8f6xchzKh8yVMluQCXyuQ8NeewNGj5vOHq+9Y6n74u4lgFZCUCo3/Sh oPo7wJoEzC9SLvA4pi8kSAeTSWN9gBNA3JzrKEP/bOAFiFXRj/IRWKhvtAY7An5mwRBZ OcrvjOogXBP/u4GnPHEEALgbg/KkNMsvq2x+7z9eAv3TaqVhnVQSFQXagnSOaTB65ei7 oBsA== X-Gm-Message-State: AMCzsaWXM19ljGfpxsVTbaag2wMU6xfRRETs566/ZbnqPeWVd24aCnc2 pLiVrYVZ+H+sfvfWP1XjKDbiBg== X-Google-Smtp-Source: ABhQp+T3iR8/CtejGRa87C8qI/heMA750CAGE004j6e/9MoTpJrE0NvRH5TcjG8MF21kPaMSAoofXw== X-Received: by 10.223.184.125 with SMTP id u58mr3312715wrf.8.1508477794893; Thu, 19 Oct 2017 22:36:34 -0700 (PDT) Received: from RezLenovoE450 ([5.78.202.63]) by smtp.gmail.com with ESMTPSA id w14sm355265wmd.9.2017.10.19.22.36.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 19 Oct 2017 22:36:33 -0700 (PDT) From: "Reza Shaikhly" To: Date: Fri, 20 Oct 2017 09:06:31 +0330 Message-ID: <000001d34965$63bcf9d0$2b36ed70$@gmail.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AdNJZVdg3uFBlKZDSl6xHC05pNR+0w== Content-Language: en-us Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] DPDK library installation on OpenStack X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Oct 2017 05:36:35 -0000 Hello everyone, Using this guide: http://dpdk.org/doc/guides/linux_gsg/build_dpdk.html I managed to install DPDK library on a CentOS 7 machine. However, I have a CentOS machine as an instance on my Openstack testbed environment (the same CentOS operating system with clean install but as an instance on OpenStack) that my efforts on installing DPDK there was failed. I prepared and installed packages as below: # yum install wget # yum install gcc # yum groupinstall 'Development Tools' # yum install glibc-devel.x86_64 # yum install epel-release # yum install kernel-devel.x86_64 # reboot # yum -y update What else should I do for successful installation? Any recommendation is appreciated, Rez