Skip to content

Instantly share code, notes, and snippets.

@lemenkov
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save lemenkov/2b4d3f74e1a126e57b94 to your computer and use it in GitHub Desktop.

Select an option

Save lemenkov/2b4d3f74e1a126e57b94 to your computer and use it in GitHub Desktop.
How to replace disk in LVM
#!/bin/bash
#
# http://www.openfusion.net/linux/pvmove_disk_migrations
# http://artw.ru/blog/archives/1376/
# http://xgu.ru/wiki/LVM
#
pvcreate /dev/sdi
vgextend video /dev/sdi
pvmove /dev/sdh /dev/sdi
vgreduce /dev/sdh
pvremove /dev/sdh
lvextend -l +100%FREE /dev/video/video
systemctl start media.mount
xfs_growfs /media
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment