I thought the storage groups feature was not coming out until .21 gets released?<br><br>/video is a mount point&nbsp; /videotemp is also a mount point.<br><br>I have copied all the data in /video under /videotemp.<br><br>mv /video to /video2 failed because it is a mount point.&nbsp; if I umount /video I can make the space for /video part of the /videotemp mount point, but I&#39;m still not gaining what I want because /videotemp still can&#39;t be moved to /video
<br><br>Alright.. Since I had a backup I took a leap of faith and umount ed /video and mount ed it to /video2.&nbsp; I changed directories to /video2 and all my stuff was there..<br><br>I basically ran this in case anyone tries this in the future:
<br><br>umount /video<br>umount /videotemp<br>mount /dev/VGforMyth/video /video<br>vgextend VGforMyth /dev/sdb5<br>resize2fs /dev/VGforMyth/video (This works for ext3 filesystems under fedora core 6 YMMV)<br><br>Now I want to modify fstab table so that everything mounts on bootup.. What do I do? This is what I have now:
<br>LABEL=/video&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /video&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ext3&nbsp;&nbsp;&nbsp; defaults&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 2<br>I think I want to replace that line with this:<br>LABEL=/video&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /dev/VGforMyth/video &nbsp; ext3&nbsp;&nbsp;&nbsp; defaults&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1 2<br><br>Is that correct?
<br>