14

I've used lxc-clone command to clone my lvm-based container (test_lvm was copied to create u33). Container works fine, but the output of sudo lvs confuses me:

  LV                             VG         Attr      LSize Pool Origin Data%  Move Log Copy%  Convert
  test_lvm                       containers -wi-a---- 1.00g
  u33                            containers -wi-ao--- 1.00g

What is the o attribute? Found nothing on the documentation.

maniaque
  • 710
  • 2
  • 5
  • 13

1 Answers1

19

The meaning of the o in the output of lvs is described in its manpage, under the lv_attrs attributes section:

          6  device (o)pen

Basically this means the device has been mounted.

dawud
  • 14,918
  • 3
  • 41
  • 61