Hi:<br><br>I have an NFS volume that I'm trying to resize a partition on.<br><br>Something about the fdisk process is corrupting something on the drive<br><br>Before running fdisk, I can mount the volume find:<br><br>$ mount /dev/sdo1 /home <br>

<br>... and the volume is mounted fine.<br><br>And, <br>$ e2fsck -f /dev/sdo1 <br>/dev/sdo1: clean, ... <br><br><br>But then I run fdisk to rewrite the partition table of this drive, to expand the /dev/sdo1 partition w/o losing data:<br>

<br>$ fdisk /dev/sdo<br># Type 'd' to delete the primary partition<br>
# Type 'n' for new partition<br>
# Type 'p' for primary<br>
# Type '1' for 1st<br>
# Type Enter for 1st cylinder<br>
# Type Enter for last cylinder (full disk)<br>
# Type 'w' to finish<br><br>Calling ioctl() ...<br>Syncing disks ...<br><br>But then something has gone wrong.   <br><br>$ e2fsck -f /dev/sdo1 <br>e2fsck 1.39 (29-May-2006)<br>Couldn't find ext2 superblock, trying backup blocks...<br>
e2fsck: Bad magic number in super-block while trying to open /dev/sdm1 ...<br><br><br>And I can't mount the volume any more:<br>$ mount /dev/sdo1 /home<br>mount: you must specify the filesystem type<br><br>What am I doing wrong? Am I missing a step of the process? <br>
<br>Thanks!<br>Dan<br><br><br>