4

Is there any way I can see the progress of a merge of my snapshot back to the origin?

The only thing I know is that there is an ongoing merge because I can't create a new snapshot.

2 Answers2

5

When running lvconvert, use the interval flag. From the man page:

-i, --interval Seconds

Report progress as a percentage at regular intervals.

sciurus
  • 12,678
  • 2
  • 31
  • 49
0

run

watch -n 1 "ps auxf | grep lvm | grep -v grep"

And check to see if the time column is going up. If it is you know the program is using CPU time.

GeoSword
  • 1,657
  • 12
  • 16