source: MondoRescue/branches/stable/mindi/analyze-my-lvm@ 1063

Last change on this file since 1063 was 1063, checked in by Bruno Cornec, 17 years ago
  • USB device support for mindi (Tested and Working)
  • Begining of USB device support for mondo (maybe not even compiling)
  • FindDistroFailsafe build process support
  • makemount list doesn't issue weird messages anymore around LVM
  • Property svn:keywords set to Id
File size: 6.7 KB
Line 
1#!/bin/bash
2#
3# $Id: analyze-my-lvm 1063 2007-01-20 22:37:55Z bruno $
4#
5
6Die() {
7 echo "$1" >> /dev/stderr
8 exit -1
9}
10
11
12
13GetValueFromField() {
14 local res
15 sed s/' '/~/ "$1" | tr -s ' ' ' ' | sed s/'~ '/'~'/ | grep -i "$2~" | cut -d'~' -f2,3,4,5 | tr '~' ' ' | gawk '{ if ($2=="MB") {printf "%dm",$1;} else if ($2=="KB") {printf "%dk",$1;} else if ($2=="GB") {printf "%dg",$1;} else {print $0;};}'
16}
17
18
19GetLastBit() {
20 local i res
21 i=20
22 res=""
23 while [ ! "$res" ] ; do
24 i=$(($i-1))
25 res=`echo "$1" | cut -d'/' -f$i`
26 done
27 echo "$res"
28}
29
30
31ProcessLogicalVolume() {
32 local LV_full_string fname logical_volume volume_group device
33 LV_full_string=$1
34 [ ! -e "$1" ] && Die "Cannot find LV file $1"
35 volume_group=`echo "$LV_full_string" | cut -d'/' -f3`
36 logical_volume=`echo "$LV_full_string" | cut -d'/' -f4`
37 if [ $lvmversion = 2 ]; then
38 device=$LV_full_string
39 params=`GenerateLvcreateParameters $device`
40 else
41 fname=/proc/lvm/VGs/$volume_group/LVs/$logical_volume
42 if [ ! -e "$fname" ] ; then
43 echo "Warning - cannot find $volume_group's $logical_volume LV file"
44 else
45 device=`GetValueFromField $fname "name:"`
46 params=`GenerateLvcreateParameters $device`
47 fi
48 fi
49 echo "# $LVMCMD lvcreate$params -n $logical_volume $volume_group"
50}
51
52
53GenerateLvcreateParameters() {
54 local device stripes stripesize device fname allocation output readahead
55 fname=/tmp/PLF.$$.txt
56 device=$1
57 output=""
58 $LVMCMD lvdisplay $device > $fname
59 stripes=`GetValueFromField $fname "Stripes"`
60 stripesize=`GetValueFromField $fname "Stripe size (MByte)"`m
61 [ "$stripesize" = "m" ] && stripesize=`GetValueFromField $fname "Stripe size (KByte)"`k
62 [ "$stripesize" = "k" ] && stripesize=""
63 allocation=`GetValueFromField $fname "LV Size"`
64 [ ! "`echo "$allocation" | grep "[k,m,g]"`" ] && allocation="$allocation"m
65 if echo "$allocation" | grep -E '^.*g$' > /dev/null 2> /dev/null ; then
66 val=`echo "$allocation" | sed s/g//`
67 allocation=`echo "$val" | awk '{c=$1; printf "%d", c*1024;}'`m
68 fi
69 readahead=`GetValueFromField $fname "Read ahead sectors"`
70 rm -f $fname
71 [ "$stripes" ] && output="$output -i $stripes"
72 [ "$stripesize" ] && output="$output -I $stripesize"
73 [ "$allocation" ] && output="$output -L $allocation"
74 [ "$readahead" ] && output="$output -r $readahead"
75 echo "$output"
76}
77
78
79
80GenerateVgcreateParameters() {
81 local current_VG device fname incoming VG_info_file max_logical_volumes max_physical_volumes physical_extent_size output blanklines
82 current_VG=$1
83 VG_info_file=/tmp/$$.vg-info.txt
84 $LVMCMD vgdisplay $current_VG > $VG_info_file
85 max_logical_volumes=`GetValueFromField "$VG_info_file" "MAX LV"`
86 [ $max_logical_volumes -ge 256 ] && max_logical_volumes=255
87 max_physical_volumes=`GetValueFromField "$VG_info_file" "MAX PV"`
88 [ $max_physical_volumes -ge 256 ] && max_physical_volumes=255
89 physical_extent_size=`GetValueFromField "$VG_info_file" "PE Size"`
90 output=""
91 [ "$max_logical_volumes" ] && output="$output -l $max_logical_volumes"
92 [ "$max_physical_volumes" ] && output="$output -p $max_physical_volumes"
93 [ "$physical_extent_size" ] && output="$output -s $physical_extent_size"
94 echo "$output"
95 rm -f $VG_info_file
96}
97
98
99
100
101
102ProcessVolumeGroup() {
103 local current_VG physical_volumes i list_of_devices VG_params
104 current_VG=$1
105 if [ $lvmversion = 2 ]; then
106 VG_params=`GenerateVgcreateParameters $current_VG`
107 list_of_devices=`$LVMCMD pvs | grep " $current_VG " | awk '{print $1}'`
108 else
109 info_file=/proc/lvm/VGs/$current_VG/group
110 physical_volumes=`ls /proc/lvm/VGs/$current_VG/PVs`
111 VG_params=`GenerateVgcreateParameters $current_VG`
112 list_of_devices=""
113 for i in $physical_volumes ; do
114 fname=/proc/lvm/VGs/$current_VG/PVs/$i
115 device=`GetValueFromField $fname "name:"`
116 list_of_devices="$list_of_devices $device"
117 done
118 fi
119 echo "# $LVMCMD vgcreate $current_VG$VG_params $list_of_devices"
120 echo "# $LVMCMD vgchange -a y $current_VG"
121}
122
123
124
125ListAllPhysicalVolumes() {
126 if [ $lvmversion = 2 ]; then
127 $LVMCMD pvscan 2> /dev/null | grep 'PV' | awk '{print $2}'
128 else
129 pvscan 2> /dev/null | grep '"' | cut -d'"' -f2
130 fi
131}
132
133
134ListAllVolumeGroups() {
135 $LVMCMD vgdisplay 2> /dev/null | awk '/^ *VG Name/ {print $3;}'
136}
137
138
139ListLvmDrivesAndPartitions() {
140 $LVMCMD vgdisplay -v 2> /dev/null | grep "PV Name" | sed 's/(#)//' | awk '{print $3}'
141}
142
143
144
145PrettifyList() {
146 local i
147 echo -en "$1"
148 for i in $2 ; do
149 echo -en "$i "
150 done
151 echo ""
152}
153
154
155ListAllLogicalVolumes() {
156 if [ $lvmversion = 2 ]; then
157 $LVMCMD lvscan 2> /dev/null | grep "'" | cut -d"'" -f2
158 else
159 lvscan 2> /dev/null | grep '"' | cut -d'"' -f2
160 fi
161}
162
163
164
165WriteShutdownScript() {
166 local i
167 echo ""
168 echo "Finally, to shut down and delete the volumes, do this:-"
169 for i in `ListAllLogicalVolumes` ; do
170 echo "($LVMCMD lvremove -f $i)"
171 done
172 for i in `ListAllVolumeGroups` ; do
173 echo "($LVMCMD vgchange -a n $i)"
174 done
175 for i in `ListAllVolumeGroups` ; do
176 echo "($LVMCMD vgremove $i)"
177 done
178 if [ $lvmversion = 2 ]; then
179 echo "(rmmod dm-mod & rmmod dm_mod & )"
180 else
181 echo "(rmmod lvm-mod)"
182 fi
183}
184
185
186
187# -------------------------------- main -----------------------------------
188which lvmdiskscan 2>/dev/null 2>&1 || Die "lvmdiskscan not found. Won't handle LVM."
189if [ -e "/proc/lvm/global" ] && [ "`tr -s '\t' ' ' < /proc/lvm/global | grep "0 VGs 0 PVs 0 LVs"`" != "" ] ; then
190 exit 0
191fi
192
193lvmversion=`lvmdiskscan --help 2>&1 |
194 grep -E "Logical Volume Manager|LVM version:" |
195 cut -d: -f2 | cut -d. -f1 |
196 awk '{print $NF}' |
197 sed -e 's/ //g'`
198
199if which lvm 2>/dev/null; then
200 version=`lvm version | grep "LVM version" | awk '{print $3}'`
201 i="`echo "$version" | cut -d'.' -f1`"
202 echo "i=$i"
203 if [ "$i" -ge "2" ] ; then
204 lvmversion=2
205 fi
206fi
207
208if [ $lvmversion = 2 ]; then
209 echo "LVM version >= 2.0 found."
210 LVMCMD="lvm"
211else
212 LVMCMD=""
213fi
214
215all_lvm_drives_and_partitions=`ListLvmDrivesAndPartitions`
216echo "Just before you extrapolate mountlist to include RAID partitions,"
217echo "extrapolate it to include the following LVM drives and partitions:-"
218PrettifyList ">>>>> " "$all_lvm_drives_and_partitions"
219echo "To get started, type:-"
220if [ $lvmversion = 2 ]; then
221 echo "(insmod dm-mod)"
222 echo "(insmod dm_mod)"
223else
224 echo "(insmod lvm-mod)"
225fi
226echo "# $LVMCMD vgchange -an"
227for i in `ListAllPhysicalVolumes` ; do
228 echo "# echo y | $LVMCMD pvcreate -ff $i"
229done
230echo "# $LVMCMD vgscan"
231echo ""
232echo "Create and activate the VG's (volume groups)."
233all_volume_groups=`ListAllVolumeGroups`
234for current_VG in $all_volume_groups ; do
235 if [ $lvmversion -ne 2 ]; then
236 echo "# rm -Rf /dev/$current_VG"
237 fi
238 ProcessVolumeGroup $current_VG
239done
240echo ""
241echo "Finally, create the LV's (logical volumes)."
242all_logical_volumes=`ListAllLogicalVolumes`
243for current_LV in $all_logical_volumes ; do
244 ProcessLogicalVolume $current_LV
245done
246echo ""
247echo "# $LVMCMD vgscan"
248echo "Now you may format the LV's:-"
249for i in `ListAllLogicalVolumes` ; do
250 echo "(mkfs -t foo $i or something like that)"
251done
252WriteShutdownScript
253exit 0
254
255
256
Note: See TracBrowser for help on using the repository browser.