Same error.<br><br>resize2fs 1.39 (29-May-2006)<br>resize2fs: Bad magic number in super-block while trying to open /dev/sdm1<br>Couldn&#39;t find valid filesystem superblock.<br><br>Something is corrupted on the drive when re-writing the partition table<br>
<br><br><br><div class="gmail_quote">On Thu, Aug 12, 2010 at 12:18 PM, Justin Riley <span dir="ltr">&lt;<a href="mailto:jtriley@mit.edu">jtriley@mit.edu</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;">
-----BEGIN PGP SIGNED MESSAGE-----<br>
Hash: SHA1<br>
<div class="im"><br>
On 08/12/2010 11:43 AM, Dan Yamins wrote:<br>
&gt; Does this completely confirm that the larger 500 GB volume is completely<br>
&gt; &quot;seen&quot;?   (And if so, does this mean that nothing like resize2fs or<br>
&gt; xfs_growfs is necessary?)<br>
<br>
</div>Dan,<br>
<br>
- From the fdisk -l output you sent you can see that you have a larger<br>
volume now (536.8GB) however your partition is still only 20GB big:<br>
<br>
20964824(blocks)/1024.0(blocks/MB) ~= 20GB<br>
<br>
You need to recreate the partition to be 536.8GB and then run resize2fs:<br>
<br>
If you&#39;re doing this on a StarCluster you&#39;ll first need to run the<br>
following command (as root) on each node of the cluster for the<br>
mount_path defined in your volume&#39;s StarCluster config:<br>
<br>
$ umount MOUNT_PATH<br>
<br>
Then shutdown the nfs service (as root) on the master node:<br>
<br>
$ /etc/init.d/nfs stop<br>
<br>
After that do the following (as root) to resize your new volume:<br>
<br>
$ umount /dev/sdz<br>
$ fdisk /dev/sdz<br>
<br>
# Type &#39;d&#39; to delete the primary partition<br>
# Type &#39;n&#39; for new partition<br>
# Type &#39;p&#39; for primary<br>
# Type &#39;1&#39; for 1st<br>
# Type Enter for 1st cylinder<br>
# Type Enter for last cylinder (full disk)<br>
# Type &#39;w&#39; to finish<br>
<br>
$ e2fsck -f /dev/sdz1<br>
$ resize2fs -p /dev/sdz1<br>
$ fsck -f -y /dev/sdz1<br>
<br>
Then you should be able to mount the new volume:<br>
<br>
$ mount /dev/sdz1 MOUNT_PATH<br>
<br>
And start nfs again on the master:<br>
<br>
$ /etc/init.d/nfs start<br>
<br>
And re-mount the NFS drives for that volume on each of the nodes:<br>
<br>
$ mount MOUNT_PATH<br>
<br>
HTH,<br>
<br>
~Justin<br>
-----BEGIN PGP SIGNATURE-----<br>
Version: GnuPG v2.0.15 (GNU/Linux)<br>
Comment: Using GnuPG with Mozilla - <a href="http://enigmail.mozdev.org/" target="_blank">http://enigmail.mozdev.org/</a><br>
<br>
iEYEARECAAYFAkxkHucACgkQ4llAkMfDcrnxIwCgjFOPtLte3TT59m8mPONqPf3O<br>
ZhAAnRQ8ByIehbl6CS/8QbraCistzu6+<br>
=9VLQ<br>
-----END PGP SIGNATURE-----<br>
<br>
</blockquote></div><br>