From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.cs.Stanford.EDU (smtp1.cs.stanford.edu [171.64.64.25]) by dpdk.org (Postfix) with ESMTP id 9B9E46CA2 for ; Fri, 19 Aug 2016 20:17:29 +0200 (CEST) Received: from mail-it0-f53.google.com ([209.85.214.53]:37926) by smtp1.cs.Stanford.EDU with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.84_2) (envelope-from ) id 1baoMC-00069V-2i for users@dpdk.org; Fri, 19 Aug 2016 11:17:28 -0700 Received: by mail-it0-f53.google.com with SMTP id n128so31941691ith.1 for ; Fri, 19 Aug 2016 11:17:28 -0700 (PDT) X-Gm-Message-State: AEkooutgO55HR3UDmz9MXFULibYoEzBHlCCsU1nGvVuGp7Fpka9+ULfzeYTcLRV/24SIlaYLpFoENPXVmuR4cw== X-Received: by 10.36.210.68 with SMTP id z65mr8295228itf.32.1471630647727; Fri, 19 Aug 2016 11:17:27 -0700 (PDT) MIME-Version: 1.0 Received: by 10.36.27.204 with HTTP; Fri, 19 Aug 2016 11:16:47 -0700 (PDT) From: John Ousterhout Date: Fri, 19 Aug 2016 11:16:47 -0700 X-Gmail-Original-Message-ID: Message-ID: To: users@dpdk.org X-Spam-Score: -1.0 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin on smtp1.cs.Stanford.EDU X-Scan-Signature: d3e02c565cd5ac634b2ff74b6ba3e13d Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] Running DPDK as non-root X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2016 18:17:29 -0000 I'm trying to run a DPDK application as a normal user without root privilege, and saw the instructions here: http://dpdk.org/doc/guides/linux_gsg/enable_func.html However, when I try this I get the following log messages: EAL: Detected 8 lcore(s) EAL: Probing VFIO support... EAL: Cannot open /proc/self/pagemap: Operation not permitted. virt2phys address translation will not work PANIC in rte_eal_init(): Cannot init memory I tried to change the permissions on /proc/self/pagemap, but that is disallowed, even if I try it as root. Any suggestions on how to get around this problem? Thanks in advance for the help. -John-