mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-12 14:59:01 +00:00
Update cheatsheets
This commit is contained in:
@@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Show information about the specific commit, rather than the latest version:
|
||||
|
||||
`flatpak remote-info --commit={{COMMIT}} {{remote_name}} {{com.example.app}}`
|
||||
`flatpak remote-info --commit {{COMMIT}} {{remote_name}} {{com.example.app}}`
|
||||
|
||||
@@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Update/Downgrade to a specific commit (also see flatpak remote-info and flatpak mask):
|
||||
|
||||
`flatpak update --commit={{COMMIT}} {{com.example.app}}`
|
||||
`flatpak update --commit {{COMMIT}} {{com.example.app}}`
|
||||
|
||||
37
tldr/linux/hyprshot
Normal file
37
tldr/linux/hyprshot
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# hyprshot
|
||||
|
||||
> Screenshot utility for the Hyprland Wayland compositor.
|
||||
> More information: <https://github.com/Gustash/Hyprshot>.
|
||||
|
||||
- Select and take a screenshot of a region:
|
||||
|
||||
`hyprshot {{[-m|--mode]}} region`
|
||||
|
||||
- Select and take a screenshot of a specific window:
|
||||
|
||||
`hyprshot {{[-m|--mode]}} window`
|
||||
|
||||
- Select and take a screenshot of a specific output:
|
||||
|
||||
`hyprshot {{[-m|--mode]}} output`
|
||||
|
||||
- Take a screenshot of the currently active window:
|
||||
|
||||
`hyprshot {{[-m|--mode]}} active {{[-m|--mode]}} window`
|
||||
|
||||
- Freeze the screen and take a screenshot of the selected region:
|
||||
|
||||
`hyprshot {{[-z|--freeze]}} {{[-m|--mode]}} region`
|
||||
|
||||
- Select and take a screenshot of a specific window, saving to the given output directory:
|
||||
|
||||
`hyprshot {{[-o|--output-folder]}} {{path/to/directory}} {{[-m|--mode]}} window`
|
||||
|
||||
- Select and take a screenshot of a specific output, saving the screenshot to the clipboard only:
|
||||
|
||||
`hyprshot --clipboard {{[-m|--mode]}} output`
|
||||
@@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Compile a component without updating its local code and without compiling its dependencies:
|
||||
|
||||
`kde-builder {{[-S|--no-src]}} {{[-D|--no-include-dependencies]}} {{component_name}}`
|
||||
`kde-builder {{[-SD|--no-src --no-include-dependencies]}} {{component_name}}`
|
||||
|
||||
- Refresh the build directories before compiling:
|
||||
|
||||
|
||||
33
tldr/linux/lvm_import_vdo
Normal file
33
tldr/linux/lvm_import_vdo
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lvm_import_vdo
|
||||
|
||||
> Import a VDO volume created by the VDO manager into an LVM-managed logical volume (irreversible).
|
||||
> More information: <https://manned.org/lvm_import_vdo>.
|
||||
|
||||
- Import a VDO volume with automatic names for the VG/LV:
|
||||
|
||||
`lvm_import_vdo {{/dev/mapper/vdo_volume}}`
|
||||
|
||||
- Import and set the destination VG/LV name:
|
||||
|
||||
`lvm_import_vdo {{[-n|--name]}} {{vg_name/lv_name}} {{/dev/mapper/vdo_volume}}`
|
||||
|
||||
- Show what would be done without changing anything:
|
||||
|
||||
`lvm_import_vdo --dry-run {{/dev/mapper/vdo_volume}}`
|
||||
|
||||
- Convert in place without using a temporary snapshot (less safe):
|
||||
|
||||
`lvm_import_vdo --no-snapshot {{/dev/mapper/vdo_volume}}`
|
||||
|
||||
- Verbose output and automatically answer "yes" to prompts:
|
||||
|
||||
`lvm_import_vdo {{[-v|--verbose]}} {{[-y|--yes]}} {{/dev/mapper/vdo_volume}}`
|
||||
|
||||
- Use a VDO manager configuration file during import:
|
||||
|
||||
`lvm_import_vdo --vdo-config {{path/to/vdo.conf}} {{/dev/mapper/vdo_volume}}`
|
||||
33
tldr/linux/lvmconfig
Normal file
33
tldr/linux/lvmconfig
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lvmconfig
|
||||
|
||||
> Display and manipulate LVM configuration information.
|
||||
> More information: <https://manned.org/lvmconfig>.
|
||||
|
||||
- Display the effective configuration in use (after merging all config sources):
|
||||
|
||||
`lvmconfig --typeconfig current --mergedconfig`
|
||||
|
||||
- Show only settings that differ from their defaults:
|
||||
|
||||
`lvmconfig --typeconfig diff`
|
||||
|
||||
- List all configuration keys:
|
||||
|
||||
`lvmconfig {{[-l|--list]}}`
|
||||
|
||||
- Print the default configuration with full comments and extra spacing:
|
||||
|
||||
`lvmconfig --typeconfig default --withcomments --withspaces`
|
||||
|
||||
- Validate the full merged configuration and report errors:
|
||||
|
||||
`lvmconfig --mergedconfig --validate`
|
||||
|
||||
- Write the current effective configuration to a file:
|
||||
|
||||
`lvmconfig --typeconfig current {{[-f|--file]}} {{path/to/output.conf}}`
|
||||
41
tldr/linux/lvmdevices
Normal file
41
tldr/linux/lvmdevices
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lvmdevices
|
||||
|
||||
> Manage the LVM devices file that lists block devices allowed for physical volumes.
|
||||
> More information: <https://manned.org/lvmdevices>.
|
||||
|
||||
- List devices recorded in the devices file:
|
||||
|
||||
`lvmdevices`
|
||||
|
||||
- Add a device to the devices file:
|
||||
|
||||
`lvmdevices --adddev {{/dev/sdXN}}`
|
||||
|
||||
- Remove a device from the devices file:
|
||||
|
||||
`lvmdevices --deldev {{/dev/sdXN}}`
|
||||
|
||||
- Add a physical volume by its PVID:
|
||||
|
||||
`lvmdevices --addpvid {{PVID}}`
|
||||
|
||||
- Remove a physical volume by its PVID:
|
||||
|
||||
`lvmdevices --delpvid {{PVID}}`
|
||||
|
||||
- Update the devices file after device names change:
|
||||
|
||||
`lvmdevices --update`
|
||||
|
||||
- Check the devices file for problems:
|
||||
|
||||
`lvmdevices --check`
|
||||
|
||||
- Display version:
|
||||
|
||||
`lvmdevices --version`
|
||||
21
tldr/linux/lvmdiskscan
Normal file
21
tldr/linux/lvmdiskscan
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lvmdiskscan
|
||||
|
||||
> Scan for devices that may be used as physical volumes by LVM (deprecated; prefer `pvs`).
|
||||
> More information: <https://manned.org/lvmdiskscan>.
|
||||
|
||||
- Scan all devices:
|
||||
|
||||
`lvmdiskscan`
|
||||
|
||||
- Show only physical volumes (PVs):
|
||||
|
||||
`lvmdiskscan {{[-l|--lvmpartition]}}`
|
||||
|
||||
- Increase verbosity (repeat for more detail):
|
||||
|
||||
`lvmdiskscan {{[-v|--verbose]}}`
|
||||
26
tldr/linux/lvmdump
Normal file
26
tldr/linux/lvmdump
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# lvmdump
|
||||
|
||||
> Collect diagnostic information about LVM2 (Logical Volume Manager).
|
||||
> By default, outputs a compressed tar archive with system and configuration data in the home directory.
|
||||
> More information: <https://manned.org/lvmdump>.
|
||||
|
||||
- Generate a basic dump:
|
||||
|
||||
`lvmdump`
|
||||
|
||||
- Generate an extended dump with metadata and daemon info:
|
||||
|
||||
`lvmdump -a -l -m`
|
||||
|
||||
- Dump the information into a directory instead of a tarball:
|
||||
|
||||
`lvmdump -d {{path/to/directory}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`lvmdump -h`
|
||||
@@ -19,3 +19,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
- Discover API paths:
|
||||
|
||||
`pvesh {{[l|ls]}} {{/}}`
|
||||
|
||||
- Display API path usage instructions:
|
||||
|
||||
`pvesh {{[u|usage]}} {{/pools}}`
|
||||
|
||||
Reference in New Issue
Block a user