<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">e2fsck -f /dev/volume_group/logical_volume<br>resize2fs /dev/volume_group/logical_volume 320G
<br>lvresize -L -50G dev/volume_group/logical_volume<br><br>Of course, the 320G is probably not quite right - you'll have to check<br>exactly what the available size is pre adding the extra space, or what<br>it is afterwards less 50G I guess.
<br><br></blockquote></div>I have done this on both reiserfs and ext3. What I do is slightly different:<br><br>resize2fs /dev/volume_group/logical_volume 319<br>lvresize -L -50G dev/volume_group/logical_volume<br>resize2fs /dev/volume_group/logical_volume
<br><br>This way the first resize makes sure that the data is smaller than the first <br>logical volume and then logical volume is reduced and then the filesystem<br>is resized in the 3rd command to the exact size of the logical volume. This
<br>way I don't have to play with trying to figure out exactly how many blocks to<br>resize the volume...<br><br>John<br>