<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
Alright, I have it running, here's the short version, commands only, no
output, run as root, disk is attached at /dev/sdf with one partition:<br>
<br>
<br>
Check the filesystem (might want to use -f to force a real check)<br>
# fsck /dev/sdf1<br>
<br>
Repartition with sfdisk, start at the first cylinder end at the last<br>
# echo ",,L" | sfdisk /dev/sdf<br>
<br>
Resize the ext3 filesystem<br>
# resize2fs /dev/sdf1<br>
<br>
Recheck the filesystem<br>
# fsck -f /dev/sdf1 <br>
<br>
Now mount and check that the data is there and the size is correct with
df -h.<br>
<br>
Let me know if it works for you.<br>
<br>
- Austin<br>
<br>
Here is my verbose version, with output.<br>
<br>
# fsck /dev/sdf1 <br>
fsck from util-linux-ng 2.16<br>
e2fsck 1.41.9 (22-Aug-2009)<br>
/dev/sdf1: clean, 11/196608 files, 29901/785176 blocks<br>
<br>
# sfdisk -l /dev/sdf<br>
<br>
Disk /dev/sdf: 652 cylinders, 255 heads, 63 sectors/track<br>
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from
0<br>
<br>
&nbsp;&nbsp; Device Boot Start&nbsp;&nbsp;&nbsp;&nbsp; End&nbsp;&nbsp; #cyls&nbsp;&nbsp;&nbsp; #blocks&nbsp;&nbsp; Id&nbsp; System<br>
/dev/sdf1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0+&nbsp;&nbsp;&nbsp; 390&nbsp;&nbsp;&nbsp;&nbsp; 391-&nbsp;&nbsp; 3140707&nbsp;&nbsp; 83&nbsp; Linux<br>
/dev/sdf2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
<br>
<br>
# echo ",,L" | sfdisk /dev/sdf<br>
Checking that no-one is using this disk right now ...<br>
OK<br>
<br>
Disk /dev/sdf: 652 cylinders, 255 heads, 63 sectors/track<br>
Old situation:<br>
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from
0<br>
<br>
&nbsp;&nbsp; Device Boot Start&nbsp;&nbsp;&nbsp;&nbsp; End&nbsp;&nbsp; #cyls&nbsp;&nbsp;&nbsp; #blocks&nbsp;&nbsp; Id&nbsp; System<br>
/dev/sdf1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0+&nbsp;&nbsp;&nbsp; 390&nbsp;&nbsp;&nbsp;&nbsp; 391-&nbsp;&nbsp; 3140707&nbsp;&nbsp; 83&nbsp; Linux<br>
/dev/sdf2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
New situation:<br>
Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from
0<br>
<br>
&nbsp;&nbsp; Device Boot Start&nbsp;&nbsp;&nbsp;&nbsp; End&nbsp;&nbsp; #cyls&nbsp;&nbsp;&nbsp; #blocks&nbsp;&nbsp; Id&nbsp; System<br>
/dev/sdf1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0+&nbsp;&nbsp;&nbsp; 651&nbsp;&nbsp;&nbsp;&nbsp; 652-&nbsp;&nbsp; 5237189+&nbsp; 83&nbsp; Linux<br>
/dev/sdf2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
/dev/sdf4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; 0&nbsp; Empty<br>
Warning: no primary partition is marked bootable (active)<br>
This does not matter for LILO, but the DOS MBR will not boot this disk.<br>
Successfully wrote the new partition table<br>
<br>
Re-reading the partition table ...<br>
<br>
If you created or changed a DOS partition, /dev/foo7, say, then use
dd(1)<br>
to zero the first 512 bytes:&nbsp; dd if=/dev/zero of=/dev/foo7 bs=512
count=1<br>
(See fdisk(8).)<br>
<br>
<br>
# resize2fs /dev/sdf1 <br>
resize2fs 1.41.9 (22-Aug-2009)<br>
Resizing the filesystem on /dev/sdf1 to 1309297 (4k) blocks.<br>
The filesystem on /dev/sdf1 is now 1309297 blocks long.<br>
<br>
# fsck -f /dev/sdf1 <br>
fsck from util-linux-ng 2.16<br>
e2fsck 1.41.9 (22-Aug-2009)<br>
Pass 1: Checking inodes, blocks, and sizes<br>
Pass 2: Checking directory structure<br>
Pass 3: Checking directory connectivity<br>
Pass 4: Checking reference counts<br>
Pass 5: Checking group summary information<br>
/dev/sdf1: 11/327680 files (0.0% non-contiguous), 38511/1309297 blocks<br>
<br>
<br>
<br>
<br>
<br>
<br>
On 08/12/2010 08:01 PM, Dan Yamins wrote:
<blockquote
 cite="mid:AANLkTim0e+6S3Rmq3UXYCkgvi=uF2DPcUYN6QnQ7SQ5=@mail.gmail.com"
 type="cite">Let me add one more thing to this thread:<br>
  <br>
Even on ubuntu, even with my original volume, you can't do "e2fsck" of
the "device" , e.g. <br>
  <br>
$ e2fsck /dev/sdz<br>
Couldn't find ext2 superblock, trying backup blocks...<br>
e2fsck: Bad magic number in super-block while trying to open /dev/sdo<br>
...<br>
  <br>
Is that to be expected?&nbsp; In a number of tutorials on resizing EBS
volumes, i have seen this done with the devices itself.&nbsp; Is the reason
this is failing because its a partitioned drive?&nbsp; <br>
  <br>
  <br>
  <br>
  <div class="gmail_quote">On Thu, Aug 12, 2010 at 6:43 PM, Dan Yamins <span
 dir="ltr">&lt;<a moz-do-not-send="true" href="mailto:dyamins@gmail.com">dyamins@gmail.com</a>&gt;</span>
wrote:<br>
  <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
    <div class="im"><br>
    <div class="gmail_quote">
    <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
      <div text="#000000" bgcolor="#ffffff">
      <div>
      <div>
      <blockquote type="cite">
        <div class="gmail_quote">
        <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
          <div text="#000000" bgcolor="#ffffff">
          <div>
          <div>
          <blockquote type="cite">
            <div class="gmail_quote">
            <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
              <div text="#000000" bgcolor="#ffffff">Do you have a
snapshot?&nbsp;
I
have used parted and e2resizefs to expand an
ext3 filesystem without trouble.<br>
              </div>
            </blockquote>
            <div><br>
            </div>
            </div>
          </blockquote>
          </div>
          </div>
          </div>
        </blockquote>
        </div>
      </blockquote>
      </div>
      </div>
      </div>
    </blockquote>
    </div>
    <br>
    <br>
    </div>
    <div class="im">So I'm trying parted on a new, clean volume created
from the snapshot, attached to /dev/sdm&nbsp; As I explained before, I can't
do<br>
    <br>
$ parted /dev/sdm<br>
    </div>
    <div class="im">[root@domU-12-31-39-0E-B2-61 ~]# parted /dev/sdm<br>
Error: Error initialising SCSI device /dev/sdm - Invalid argument <br>
    <br>
    </div>
AUstin, when you did this did you get that same error?&nbsp; <br>
    <div class="im"><br>
    <br>
I <i>CAN</i> do parted on the path:<br>
    <br>
    </div>
    <div class="im">$ parted /dev/sdm1<br>
GNU Parted 1.8.1<br>
Using /dev/sdm1<br>
Welcome to GNU Parted! Type 'help' to view a list of commands.<br>
    <br>
    </div>
    <div>
    <div class="h5">But then i get this error:<br>
    <br>
(parted) resize 1 0 500GB<br>
Error: The location 500GB is outside of the device /dev/sdo1.<br>
    <br>
Which is course is true ...<br>
    <br>
(parted)
print&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
Disk /dev/sdm1: 21.5GB<br>
Sector size (logical/physical): 512B/512B<br>
Partition Table: loop<br>
    <br>
Number&nbsp; Start&nbsp;&nbsp; End&nbsp;&nbsp;&nbsp;&nbsp; Size&nbsp;&nbsp;&nbsp; File system&nbsp; Flags<br>
&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.00kB&nbsp; 21.5GB&nbsp; 21.5GB&nbsp; ext3&nbsp;&nbsp;&nbsp;&nbsp; <br>
    <br>
    <br>
So I'm not sure where to go from here... <br>
    <br>
    </div>
    </div>
    <font color="#888888">Dan<br>
    <br>
    </font></blockquote>
  </div>
  <br>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
Starcluster mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Starcluster@mit.edu">Starcluster@mit.edu</a>
<a class="moz-txt-link-freetext" href="http://mailman.mit.edu/mailman/listinfo/starcluster">http://mailman.mit.edu/mailman/listinfo/starcluster</a>
  </pre>
</blockquote>
<br>
</body>
</html>