From owner-freebsd-questions@FreeBSD.ORG Fri Jul 18 06:55:17 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D84CBD33 for ; Fri, 18 Jul 2014 06:55:17 +0000 (UTC) Received: from mail-la0-x22c.google.com (mail-la0-x22c.google.com [IPv6:2a00:1450:4010:c03::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E1512ECF for ; Fri, 18 Jul 2014 06:55:17 +0000 (UTC) Received: by mail-la0-f44.google.com with SMTP id e16so2548767lan.31 for ; Thu, 17 Jul 2014 23:55:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:message-id:date:reply-to:user-agent:mime-version:to:subject :content-type; bh=MAIooODvOOqb3CwHOHc0R6qqU5dKMUMqqFobMHv9+DY=; b=iIGgxb7+BJUviYvq2tVLnBO7qfndpsjkNiSTvr8rrHBH4InWv40zNXalBx37Xpoc28 3h6oYXMafLzu/h8NG8wh5zoHPbj9DkdA8j377KRm6XzaSL0kmT8gphpAWAapA9gQmTJ6 QDN9VwrPrXwC1nXYyDiLgMHSUihLOxBKy5rxs4+hmKaj82SegzzQD01tLG/vhN32Ox5x 8tAM/gRwlLkMi+S7Ub99k/VXsRWNeTFMsvxDbdz1sqmPmBL2o1TYvLy+AdMmGYQfoGYT pgkTLoeFGzfVhjg2KbMnvOGfmbyRusMcXR8eGLIfgVF2bEqtLmR3CGgPGqcBccfgKbrs ywoQ== X-Received: by 10.112.139.167 with SMTP id qz7mr2331271lbb.22.1405666513813; Thu, 17 Jul 2014 23:55:13 -0700 (PDT) Received: from Leslies-MacBook-Pro.local (c-195-216-044-136.ekt.thalamus.net. [195.216.44.136]) by mx.google.com with ESMTPSA id h4sm7671784lbj.1.2014.07.17.23.55.12 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 17 Jul 2014 23:55:13 -0700 (PDT) From: Leslie Jensen X-Google-Original-From: Leslie Jensen Message-ID: <53C8C4CE.4090304@eskk.nu> Date: Fri, 18 Jul 2014 08:55:10 +0200 Reply-To: jensen.leslie@gmail.com User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Installing a binary package Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 06:55:17 -0000 I'm on a small machine with 256Mb memory and 1 Gb of swap space. Compiling clang33 gives me failures and stop, out of swap space. I got the advise to install clang33 as a binary packet and there my problems began :-) Following instructions found via Google: http://permalink.gmane.org/gmane.os.freebsd.devel.pkg/44 save the following as /usr/local/etc/pkg/repos/FreeBSD.conf: FreeBSD: { url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest ", mirror_type: "srv", signature_type: "fingerprints", fingerprints: "/usr/share/keys/pkg", enabled: yes } You'll also need to save this as /usr/share/keys/pkg/trusted/pkg.freebsd.org.2013102301 function: "sha256" fingerprint: "b0170035af3acc5f3f3ae1859dc717101b4e6c1d0a794ad554928ca0cbb2f438" And also https://forums.freebsd.org/viewtopic.php?f=5&t=44499 | cd /usr/src/share/keys && make && make install | I've created /usr/src/share and /usr/src/share/keys as they did not exist. Of course there's nothing to make! What do I need to proceed? Thanks /Leslie