Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# 2nd Array
#  parted  /dev/cciss/c2d1
#	mklabel   
#	gpt
#	mkpart primary ext2                                              
#	Start? 1                                                                  
#	End? 100%     
#	set 1 lvm on    
#	quit
# 
# pvcreate /dev/cciss/c2d1p1
# vgextend VG1 /dev/cciss/c2d1p1
# lvextend /dev/VG1/LV1.u1 /dev/cciss/c2d1p1
#   Extending logical volume LV1.u1 to 16.92 TB
#   Logical volume LV1.u1 successfully resized
# 
# 
# we then tried this command:
# 	resize2fs /dev/VG1/LV1.u1
# but 16.92TB was too big for ext3 filesystem resize2fs, we got the error:
# 	File too large while trying to determine filesystem size
# so then we reduced the size of the logical volume to just under 16TB
# with this command:
# 	lvreduce -L -1t /dev/VG1/LV1.u1
# after that, the resize2fs command worked:
# 
#         resize2fs /dev/VG1/LV1.u1

...