From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-user+bounces-121480-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1Q8QkJ-0002Zj-IZ
	for garchives@archives.gentoo.org; Sat, 09 Apr 2011 05:30:07 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 94CADE035C;
	Sat,  9 Apr 2011 05:28:24 +0000 (UTC)
Received: from mail-yx0-f181.google.com (mail-yx0-f181.google.com [209.85.213.181])
	by pigeon.gentoo.org (Postfix) with ESMTP id 5CAA9E035C
	for <gentoo-user@lists.gentoo.org>; Sat,  9 Apr 2011 05:28:24 +0000 (UTC)
Received: by yxm8 with SMTP id 8so2487241yxm.40
        for <gentoo-user@lists.gentoo.org>; Fri, 08 Apr 2011 22:28:23 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=gamma;
        h=domainkey-signature:message-id:date:from:user-agent:mime-version:to
         :subject:references:in-reply-to:content-type
         :content-transfer-encoding;
        bh=PVTsz6VRXaFL5FfCXIDmtYDX5/jJRgSgDJ3/bNYP/3A=;
        b=jjbZ2mFX5QciihvnHQSGnpZvXNy6IvN6VCYbYNDxm92hq9F6SBHUraMVQXmQPQ5tto
         f76cSRQCTsdP7/3I2UHkOmIoGW9287XiaLN27COeMMSxWeGJCXcha2tS2MqAZ79zLbjc
         ieJP5yplC4BairyZHZG+7LNeXcdhGzcdPagQ4=
DomainKey-Signature: a=rsa-sha1; c=nofws;
        d=gmail.com; s=gamma;
        h=message-id:date:from:user-agent:mime-version:to:subject:references
         :in-reply-to:content-type:content-transfer-encoding;
        b=d5pqRFAZCMBo9yOZvDHOFZw24813yWq6pmpAkIQ/SulKTrr7UqMg4RcEa1te///9x/
         vLof0DjsNsG+A6Ziuc6MukCTfAZABMZBcw3zISjTvbbW/xIUD6xn8pdsCYVp19Nrha5a
         ZJWljl0bTKc9f99lPnMR2mBrtJxQrKW8aC8lg=
Received: by 10.236.170.40 with SMTP id o28mr3689915yhl.450.1302326903840;
        Fri, 08 Apr 2011 22:28:23 -0700 (PDT)
Received: from [192.168.2.5] (adsl-0-118-199.jan.bellsouth.net [65.0.118.199])
        by mx.google.com with ESMTPS id c4sm471928ana.23.2011.04.08.22.28.21
        (version=SSLv3 cipher=OTHER);
        Fri, 08 Apr 2011 22:28:22 -0700 (PDT)
Message-ID: <4D9FEE74.9060404@gmail.com>
Date: Sat, 09 Apr 2011 00:28:20 -0500
From: Dale <rdalek1967@gmail.com>
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.18) Gecko/20110325 Gentoo/2.0.13 SeaMonkey/2.0.13
Precedence: bulk
List-Post: <mailto:gentoo-user@lists.gentoo.org>
List-Help: <mailto:gentoo-user+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-user.gentoo.org>
X-BeenThere: gentoo-user@lists.gentoo.org
Reply-to: gentoo-user@lists.gentoo.org
MIME-Version: 1.0
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] LVM for data drives but not the OS
References: <4D9D9071.2050504@gmail.com>	<4D9F5C5F.7030700@gmail.com>	<4D9F779B.2040801@gmail.com>	<201104082323.20677.alan.mckinnon@gmail.com> <20110408230033.51ad12a5@digimed.co.uk> <4D9F9BFC.9020206@gmail.com>
In-Reply-To: <4D9F9BFC.9020206@gmail.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
X-Archives-Salt: 
X-Archives-Hash: dfe365df8b0337d4691c786936a252f6

OK.  I learned something.  Check this out:

root@fireball / # df
Filesystem           1K-blocks      Used Available Use% Mounted on
<< SNIP >>
/dev/mapper/sdb--vg-test
                       51606140  48910048     74652 100% /mnt/temp
root@fireball / #

This is what I am doing here.  As I posted a while ago, I created a 50Gb 
LV.  I attempted to copy about 75Gbs to it which filled it up but I 
wanted to make sure it would.  lol  Then I used lvextend -L100G 
/dev/mapper/sdb--vg-test to make it larger.  I read I could do the same 
thing with lvresize but the example I was reading showed lvextend.  This 
is what I got now:

root@fireball / # lvdisplay
   --- Logical volume ---
   LV Name                /dev/sdb-vg/test
   VG Name                sdb-vg
   LV UUID                mixhOb-La6D-BwG4-Uz3l-P0ci-oGg5-YI3mN8
   LV Write Access        read/write
   LV Status              available
   # open                 1
   LV Size                100.00 GiB
   Current LE             25600
   Segments               1
   Allocation             inherit
   Read ahead sectors     auto
   - currently set to     256
   Block device           254:0

root@fireball / #

So, according to that it is 100Gbs which is what I wanted.  Thing was, 
it didn't work.  So, hmmmm.  Light bulb moment.  Resize the file system 
silly.  After that, success.  So, I created something that wasn''t big 
enough, filled it up, made it bigger, fixed the file system and now it 
is working.  All while online too.  That is the weird part.

Still not comfy putting a OS on it but it is cool so far.

Dale

:-)  :-)