User Tools

Site Tools


quickreference:lvm2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
quickreference:lvm2 [2023/10/15 00:11] – [Testing a change with ability to revert] rodolicoquickreference:lvm2 [2024/12/07 13:36] (current) – [Too Much Information] rodolico
Line 45: Line 45:
  
 <code python> <code python>
 +# only check RAID volumes (/dev/md0), ignore everything else
 filter=[ "a|^/dev/md|", "r/.*/" ] filter=[ "a|^/dev/md|", "r/.*/" ]
 +# only check /dev/sda, nothing else
 +filter = [ "a|^/dev/sda$|", "r|^/dev/*|" ]
 +# Finally, accept sda, sdb, any md, then ignore anything else
 +filter = [ "a|^/dev/md|","a|^/dev/sda$|","a|^/dev/sdb$|", "r|^/dev/*|" ]
 +</code>
 +
 +To determine which drives are actually local, you can use the **mount** command. For example:
 +<code bash>
 +mount | grep '^/dev'
 +</code>
 +will show all mounted drives which are local, ignoring nfs, tmpfs, etc...
 +
 +After making the change, rescan LVM with one of the following commands
 +<code bash>
 +# yes, start, not reload, not restart, start
 +vgscan
 +# OR
 +service lvm2 start
 +# OR
 +lvm vgchange -aay --sysinit
 </code> </code>
  
quickreference/lvm2.1697346690.txt.gz · Last modified: 2023/10/15 00:11 by rodolico