Δημοσιεύτηκε: 04 Μαρ 2019, 22:45
από Tasos
Τα περιεχομενα της παραπανω εντολης ειναι:


Κώδικας: Επιλογή όλων
# This configuration section has an automatic default value.
# report {

   # Configuration option report/output_format.
   # Format of LVM command's report output.
   # If there is more than one report per command, then the format
   # is applied for all reports. You can also change output format
   # directly on command line using --reportformat option which
   # has precedence over log/output_format setting.
   # Accepted values:
   #   basic
   #     Original format with columns and rows. If there is more than
   #     one report per command, each report is prefixed with report's
   #     name for identification.
   #   json
   #     JSON format.
   # This configuration option has an automatic default value.
   # output_format = "basic"

   # Configuration option report/compact_output.
   # Do not print empty values for all report fields.
   # If enabled, all fields that don't have a value set for any of the
   # rows reported are skipped and not printed. Compact output is
   # applicable only if report/buffered is enabled. If you need to
   # compact only specified fields, use compact_output=0 and define
   # report/compact_output_cols configuration setting instead.
   # This configuration option has an automatic default value.
   # compact_output = 0

   # Configuration option report/compact_output_cols.
   # Do not print empty values for specified report fields.
   # If defined, specified fields that don't have a value set for any
   # of the rows reported are skipped and not printed. Compact output
   # is applicable only if report/buffered is enabled. If you need to
   # compact all fields, use compact_output=1 instead in which case
   # the compact_output_cols setting is then ignored.
   # This configuration option has an automatic default value.
   # compact_output_cols = ""

   # Configuration option report/aligned.
   # Align columns in report output.
   # This configuration option has an automatic default value.
   # aligned = 1

   # Configuration option report/buffered.
   # Buffer report output.
   # When buffered reporting is used, the report's content is appended
   # incrementally to include each object being reported until the report
   # is flushed to output which normally happens at the end of command
   # execution. Otherwise, if buffering is not used, each object is
   # reported as soon as its processing is finished.
   # This configuration option has an automatic default value.
   # buffered = 1

   # Configuration option report/headings.
   # Show headings for columns on report.
   # This configuration option has an automatic default value.
   # headings = 1

   # Configuration option report/separator.
   # A separator to use on report after each field.
   # This configuration option has an automatic default value.
   # separator = " "

   # Configuration option report/list_item_separator.
   # A separator to use for list items when reported.
   # This configuration option has an automatic default value.
   # list_item_separator = ","

   # Configuration option report/prefixes.
   # Use a field name prefix for each field reported.
   # This configuration option has an automatic default value.
   # prefixes = 0

   # Configuration option report/quoted.
   # Quote field values when using field name prefixes.
   # This configuration option has an automatic default value.
   # quoted = 1

   # Configuration option report/columns_as_rows.
   # Output each column as a row.
   # If set, this also implies report/prefixes=1.
   # This configuration option has an automatic default value.
   # columns_as_rows = 0

   # Configuration option report/binary_values_as_numeric.
   # Use binary values 0 or 1 instead of descriptive literal values.
   # For columns that have exactly two valid values to report
   # (not counting the 'unknown' value which denotes that the
   # value could not be determined).
   # This configuration option has an automatic default value.
   # binary_values_as_numeric = 0

   # Configuration option report/time_format.
   # Set time format for fields reporting time values.
   # Format specification is a string which may contain special character
   # sequences and ordinary character sequences. Ordinary character
   # sequences are copied verbatim. Each special character sequence is
   # introduced by the '%' character and such sequence is then
   # substituted with a value as described below.
   #
   # Accepted values:
   #   %a
   #     The abbreviated name of the day of the week according to the
   #     current locale.
   #   %A
   #     The full name of the day of the week according to the current
   #     locale.
   #   %b
   #     The abbreviated month name according to the current locale.
   #   %B
   #     The full month name according to the current locale.
   #   %c
   #     The preferred date and time representation for the current
   #     locale (alt E)
   #   %C
   #     The century number (year/100) as a 2-digit integer. (alt E)
   #   %d
   #     The day of the month as a decimal number (range 01 to 31).
   #     (alt O)
   #   %D
   #     Equivalent to %m/%d/%y. (For Americans only. Americans should
   #     note that in other countries%d/%m/%y is rather common. This
   #     means that in international context this format is ambiguous and
   #     should not be used.
   #   %e
   #     Like %d, the day of the month as a decimal number, but a leading
   #     zero is replaced by a space. (alt O)
   #   %E
   #     Modifier: use alternative local-dependent representation if
   #     available.
   #   %F
   #     Equivalent to %Y-%m-%d (the ISO 8601 date format).
   #   %G
   #     The ISO 8601 week-based year with century as adecimal number.
   #     The 4-digit year corresponding to the ISO week number (see %V).
   #     This has the same format and value as %Y, except that if the
   #     ISO week number belongs to the previous or next year, that year
   #     is used instead.
   #   %g
   #     Like %G, but without century, that is, with a 2-digit year
   #     (00-99).
   #   %h
   #     Equivalent to %b.
   #   %H
   #     The hour as a decimal number using a 24-hour clock
   #     (range 00 to 23). (alt O)
   #   %I
   #     The hour as a decimal number using a 12-hour clock
   #     (range 01 to 12). (alt O)
   #   %j
   #     The day of the year as a decimal number (range 001 to 366).
   #   %k
   #     The hour (24-hour clock) as a decimal number (range 0 to 23);
   #     single digits are preceded by a blank. (See also %H.)
   #   %l
   #     The hour (12-hour clock) as a decimal number (range 1 to 12);
   #     single digits are preceded by a blank. (See also %I.)
   #   %m
   #     The month as a decimal number (range 01 to 12). (alt O)
   #   %M
   #     The minute as a decimal number (range 00 to 59). (alt O)
   #   %O
   #     Modifier: use alternative numeric symbols.
   #   %p
   #     Either "AM" or "PM" according to the given time value,
   #     or the corresponding strings for the current locale. Noon is
   #     treated as "PM" and midnight as "AM".
   #   %P
   #     Like %p but in lowercase: "am" or "pm" or a corresponding
   #     string for the current locale.
   #   %r
   #     The time in a.m. or p.m. notation. In the POSIX locale this is
   #     equivalent to %I:%M:%S %p.
   #   %R
   #     The time in 24-hour notation (%H:%M). For a version including
   #     the seconds, see %T below.
   #   %s
   #     The number of seconds since the Epoch,
   #     1970-01-01 00:00:00 +0000 (UTC)
   #   %S
   #     The second as a decimal number (range 00 to 60). (The range is
   #     up to 60 to allow for occasional leap seconds.) (alt O)
   #   %t
   #     A tab character.
   #   %T
   #     The time in 24-hour notation (%H:%M:%S).
   #   %u
   #     The day of the week as a decimal, range 1 to 7, Monday being 1.
   #     See also %w. (alt O)
   #   %U
   #     The week number of the current year as a decimal number,
   #     range 00 to 53, starting with the first Sunday as the first
   #     day of week 01. See also %V and %W. (alt O)
   #   %V
   #     The ISO 8601 week number of the current year as a decimal number,
   #     range 01 to 53, where week 1 is the first week that has at least
   #     4 days in the new year. See also %U and %W. (alt O)
   #   %w
   #     The day of the week as a decimal, range 0 to 6, Sunday being 0.
   #     See also %u. (alt O)
   #   %W
   #     The week number of the current year as a decimal number,
   #     range 00 to 53, starting with the first Monday as the first day
   #     of week 01. (alt O)
   #   %x
   #     The preferred date representation for the current locale without
   #     the time. (alt E)
   #   %X
   #     The preferred time representation for the current locale without
   #     the date. (alt E)
   #   %y
   #     The year as a decimal number without a century (range 00 to 99).
   #     (alt E, alt O)
   #   %Y
   #     The year as a decimal number including the century. (alt E)
   #   %z
   #     The +hhmm or -hhmm numeric timezone (that is, the hour and minute
   #     offset from UTC).
   #   %Z
   #     The timezone name or abbreviation.
   #   %%
   #     A literal '%' character.
   #
   # This configuration option has an automatic default value.
   # time_format = "%Y-%m-%d %T %z"

   # Configuration option report/devtypes_sort.
   # List of columns to sort by when reporting 'lvm devtypes' command.
   # See 'lvm devtypes -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # devtypes_sort = "devtype_name"

   # Configuration option report/devtypes_cols.
   # List of columns to report for 'lvm devtypes' command.
   # See 'lvm devtypes -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # devtypes_cols = "devtype_name,devtype_max_partitions,devtype_description"

   # Configuration option report/devtypes_cols_verbose.
   # List of columns to report for 'lvm devtypes' command in verbose mode.
   # See 'lvm devtypes -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # devtypes_cols_verbose = "devtype_name,devtype_max_partitions,devtype_description"

   # Configuration option report/lvs_sort.
   # List of columns to sort by when reporting 'lvs' command.
   # See 'lvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # lvs_sort = "vg_name,lv_name"

   # Configuration option report/lvs_cols.
   # List of columns to report for 'lvs' command.
   # See 'lvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # lvs_cols = "lv_name,vg_name,lv_attr,lv_size,pool_lv,origin,data_percent,metadata_percent,move_pv,mirror_log,copy_percent,convert_lv"

   # Configuration option report/lvs_cols_verbose.
   # List of columns to report for 'lvs' command in verbose mode.
   # See 'lvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # lvs_cols_verbose = "lv_name,vg_name,seg_count,lv_attr,lv_size,lv_major,lv_minor,lv_kernel_major,lv_kernel_minor,pool_lv,origin,data_percent,metadata_percent,move_pv,copy_percent,mirror_log,convert_lv,lv_uuid,lv_profile"

   # Configuration option report/vgs_sort.
   # List of columns to sort by when reporting 'vgs' command.
   # See 'vgs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # vgs_sort = "vg_name"

   # Configuration option report/vgs_cols.
   # List of columns to report for 'vgs' command.
   # See 'vgs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # vgs_cols = "vg_name,pv_count,lv_count,snap_count,vg_attr,vg_size,vg_free"

   # Configuration option report/vgs_cols_verbose.
   # List of columns to report for 'vgs' command in verbose mode.
   # See 'vgs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # vgs_cols_verbose = "vg_name,vg_attr,vg_extent_size,pv_count,lv_count,snap_count,vg_size,vg_free,vg_uuid,vg_profile"

   # Configuration option report/pvs_sort.
   # List of columns to sort by when reporting 'pvs' command.
   # See 'pvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvs_sort = "pv_name"

   # Configuration option report/pvs_cols.
   # List of columns to report for 'pvs' command.
   # See 'pvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvs_cols = "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free"

   # Configuration option report/pvs_cols_verbose.
   # List of columns to report for 'pvs' command in verbose mode.
   # See 'pvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvs_cols_verbose = "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,dev_size,pv_uuid"

   # Configuration option report/segs_sort.
   # List of columns to sort by when reporting 'lvs --segments' command.
   # See 'lvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # segs_sort = "vg_name,lv_name,seg_start"

   # Configuration option report/segs_cols.
   # List of columns to report for 'lvs --segments' command.
   # See 'lvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # segs_cols = "lv_name,vg_name,lv_attr,stripes,segtype,seg_size"

   # Configuration option report/segs_cols_verbose.
   # List of columns to report for 'lvs --segments' command in verbose mode.
   # See 'lvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # segs_cols_verbose = "lv_name,vg_name,lv_attr,seg_start,seg_size,stripes,segtype,stripesize,chunksize"

   # Configuration option report/pvsegs_sort.
   # List of columns to sort by when reporting 'pvs --segments' command.
   # See 'pvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvsegs_sort = "pv_name,pvseg_start"

   # Configuration option report/pvsegs_cols.
   # List of columns to sort by when reporting 'pvs --segments' command.
   # See 'pvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvsegs_cols = "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,pvseg_start,pvseg_size"

   # Configuration option report/pvsegs_cols_verbose.
   # List of columns to sort by when reporting 'pvs --segments' command in verbose mode.
   # See 'pvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvsegs_cols_verbose = "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,pvseg_start,pvseg_size,lv_name,seg_start_pe,segtype,seg_pe_ranges"

   # Configuration option report/vgs_cols_full.
   # List of columns to report for lvm fullreport's 'vgs' subreport.
   # See 'vgs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # vgs_cols_full = "vg_all"

   # Configuration option report/pvs_cols_full.
   # List of columns to report for lvm fullreport's 'vgs' subreport.
   # See 'pvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvs_cols_full = "pv_all"

   # Configuration option report/lvs_cols_full.
   # List of columns to report for lvm fullreport's 'lvs' subreport.
   # See 'lvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # lvs_cols_full = "lv_all"

   # Configuration option report/pvsegs_cols_full.
   # List of columns to report for lvm fullreport's 'pvseg' subreport.
   # See 'pvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvsegs_cols_full = "pvseg_all,pv_uuid,lv_uuid"

   # Configuration option report/segs_cols_full.
   # List of columns to report for lvm fullreport's 'seg' subreport.
   # See 'lvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # segs_cols_full = "seg_all,lv_uuid"

   # Configuration option report/vgs_sort_full.
   # List of columns to sort by when reporting lvm fullreport's 'vgs' subreport.
   # See 'vgs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # vgs_sort_full = "vg_name"

   # Configuration option report/pvs_sort_full.
   # List of columns to sort by when reporting lvm fullreport's 'vgs' subreport.
   # See 'pvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvs_sort_full = "pv_name"

   # Configuration option report/lvs_sort_full.
   # List of columns to sort by when reporting lvm fullreport's 'lvs' subreport.
   # See 'lvs -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # lvs_sort_full = "vg_name,lv_name"

   # Configuration option report/pvsegs_sort_full.
   # List of columns to sort by when reporting for lvm fullreport's 'pvseg' subreport.
   # See 'pvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # pvsegs_sort_full = "pv_uuid,pvseg_start"

   # Configuration option report/segs_sort_full.
   # List of columns to sort by when reporting lvm fullreport's 'seg' subreport.
   # See 'lvs --segments -o help' for the list of possible fields.
   # This configuration option has an automatic default value.
   # segs_sort_full = "lv_uuid,seg_start"

   # Configuration option report/mark_hidden_devices.
   # Use brackets [] to mark hidden devices.
   # This configuration option has an automatic default value.
   # mark_hidden_devices = 1

   # Configuration option report/two_word_unknown_device.
   # Use the two words 'unknown device' in place of '[unknown]'.
   # This is displayed when the device for a PV is not known.
   # This configuration option has an automatic default value.
   # two_word_unknown_device = 0
# }

# Configuration section dmeventd.
# Settings for the LVM event daemon.
dmeventd {

   # Configuration option dmeventd/mirror_library.
   # The library dmeventd uses when monitoring a mirror device.
   # libdevmapper-event-lvm2mirror.so attempts to recover from
   # failures. It removes failed devices from a volume group and
   # reconfigures a mirror as necessary. If no mirror library is
   # provided, mirrors are not monitored through dmeventd.
   mirror_library = "libdevmapper-event-lvm2mirror.so"

   # Configuration option dmeventd/raid_library.
   # This configuration option has an automatic default value.
   # raid_library = "libdevmapper-event-lvm2raid.so"

   # Configuration option dmeventd/snapshot_library.
   # The library dmeventd uses when monitoring a snapshot device.
   # libdevmapper-event-lvm2snapshot.so monitors the filling of snapshots
   # and emits a warning through syslog when the usage exceeds 80%. The
   # warning is repeated when 85%, 90% and 95% of the snapshot is filled.
   snapshot_library = "libdevmapper-event-lvm2snapshot.so"

   # Configuration option dmeventd/thin_library.
   # The library dmeventd uses when monitoring a thin device.
   # libdevmapper-event-lvm2thin.so monitors the filling of a pool
   # and emits a warning through syslog when the usage exceeds 80%. The
   # warning is repeated when 85%, 90% and 95% of the pool is filled.
   thin_library = "libdevmapper-event-lvm2thin.so"

   # Configuration option dmeventd/thin_command.
   # The plugin runs command with each 5% increment when thin-pool data volume
   # or metadata volume gets above 50%.
   # Command which starts with 'lvm ' prefix is internal lvm command.
   # You can write your own handler to customise behaviour in more details.
   # User handler is specified with the full path starting with '/'.
   # This configuration option has an automatic default value.
   # thin_command = "lvm lvextend --use-policies"

   # Configuration option dmeventd/executable.
   # The full path to the dmeventd binary.
   # This configuration option has an automatic default value.
   # executable = "/sbin/dmeventd"
}

# Configuration section tags.
# Host tag settings.
# This configuration section has an automatic default value.
# tags {

   # Configuration option tags/hosttags.
   # Create a host tag using the machine name.
   # The machine name is nodename returned by uname(2).
   # This configuration option has an automatic default value.
   # hosttags = 0

   # Configuration section tags/<tag>.
   # Replace this subsection name with a custom tag name.
   # Multiple subsections like this can be created. The '@' prefix for
   # tags is optional. This subsection can contain host_list, which is a
   # list of machine names. If the name of the local machine is found in
   # host_list, then the name of this subsection is used as a tag and is
   # applied to the local machine as a 'host tag'. If this subsection is
   # empty (has no host_list), then the subsection name is always applied
   # as a 'host tag'.
   #
   # Example
   # The host tag foo is given to all hosts, and the host tag
   # bar is given to the hosts named machine1 and machine2.
   # tags { foo { } bar { host_list = [ "machine1", "machine2" ] } }
   #
   # This configuration section has variable name.
   # This configuration section has an automatic default value.
   # tag {

      # Configuration option tags/<tag>/host_list.
      # A list of machine names.
      # These machine names are compared to the nodename returned
      # by uname(2). If the local machine name matches an entry in
      # this list, the name of the subsection is applied to the
      # machine as a 'host tag'.
      # This configuration option does not have a default value defined.
   # }
# }
tasos@tasos-SATELLITE-T110:~$