From owner-freebsd-arm@freebsd.org Thu Oct 29 19:35:24 2015 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFF2AA21100 for ; Thu, 29 Oct 2015 19:35:24 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: from mail-vk0-x22a.google.com (mail-vk0-x22a.google.com [IPv6:2607:f8b0:400c:c05::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EB2E1305 for ; Thu, 29 Oct 2015 19:35:24 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: by vkgy127 with SMTP id y127so34059393vkg.0 for ; Thu, 29 Oct 2015 12:35:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=dYptoPFRizPr298B5CJsiEU16kCmKPk7I71ogj9AQI0=; b=xheVp3iXxbmC1sMbZ9taskPR9fjOortDdzoozO8PtwH7D6oP2FA/2CHsRYHStTFL8l tQAzbN0OlIIJ5dWmcyfCKjyPXx6/M/NVZ4zwFadE1S65gNzJIyk0pgd2DlQEYIcSUeWa B+Z/Kw5ZmFRUgKNkDtkWuEKl7BEZpUgSghXPiSpMYVVgx2ujltT0nR8OWISf0/ElzKeD 4WUXbqcSI8iLqNDWjwyy85R3w2hW7cju37s1IwWTxX8k/H232pOlhl2iStRcNNfqgG2r qBOn9v8r6Xhvg9djQH+sEOnmaKgqkSzmmIPDlzcS00oWPTVW9fW6OiMVRfeyPLTWRJqG zLfw== MIME-Version: 1.0 X-Received: by 10.31.132.195 with SMTP id g186mr2626786vkd.13.1446147323448; Thu, 29 Oct 2015 12:35:23 -0700 (PDT) Received: by 10.31.66.9 with HTTP; Thu, 29 Oct 2015 12:35:23 -0700 (PDT) Date: Thu, 29 Oct 2015 12:35:23 -0700 Message-ID: Subject: Full SD Card From: Russell Haley To: freebsd-arm Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2015 19:35:25 -0000 Hi there, I was playing around and trying to build rocksdb from ports. I had 1.5 GB left on the SD card and managed to fill it up. /usr/ports/databases/rocksdb# make install clean The installation never completed due to a build error, but it built Python and cmake and some other stuff. I then went back into the rocksdb directory and ran make clean, which cleaned up a couple of directories, but didn't seem to affect the overall size. So I used the following command to search the ports directory and find out which work folder ate my sd card: find . -maxdepth 4 -type f -size +20M -print0 | xargs -0 ls -Shal | head which only shows the INDEX-11 file at 31MB. I tried the same thing on /usr and it only lists a couple clang compiler files at 39MB. How do I find out what used up all my space? Thanks, Russ