When you deal with LVM operations, you might hit a situation to find how PVs does my filesystem spanned across. Here’s the command
- Use df -gt command to find out the lv name of that filesystem
- lslv -m |awk ‘{print $3}’ |grep -Ev “^$|PV” |uniq
When you deal with LVM operations, you might hit a situation to find how PVs does my filesystem spanned across. Here’s the command