diff --git a/tldr/feh b/tldr/feh index 0cb022cb..041e1d5b 100644 --- a/tldr/feh +++ b/tldr/feh @@ -16,6 +16,10 @@ source: https://github.com/tldr-pages/tldr.git `feh {{[-r|--recursive]}} {{path/to/images}}` +- View images and display the file name at the top-left of the images: + +`feh {{[-d|--draw-filename]}} {{path/to/images}}` + - View images without window borders: `feh {{[-x|--borderless]}} {{path/to/images}}` diff --git a/tldr/fzf b/tldr/fzf index 79958cde..390cd467 100644 --- a/tldr/fzf +++ b/tldr/fzf @@ -29,6 +29,6 @@ source: https://github.com/tldr-pages/tldr.git `fzf {{[-q|--query]}} "^core go$ | rb$ | py$"` -- Start `fzf` on entries that not match `pyc` and match exactly `travis`: +- Start `fzf` on entries that do not match `pyc` and contain `travis`: -`fzf {{[-q|--query]}} "\!pyc 'travis'"` +`fzf {{[-q|--query]}} '!pyc travis'` diff --git a/tldr/linux/dpkg-reconfigure b/tldr/linux/dpkg-reconfigure index b69179ca..b2f87de0 100644 --- a/tldr/linux/dpkg-reconfigure +++ b/tldr/linux/dpkg-reconfigure @@ -15,3 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Reconfigure console font setup: `dpkg-reconfigure console-setup` + +- Reconfigure the timezone: + +`dpkg-reconfigure tzdata` diff --git a/tldr/linux/impala b/tldr/linux/impala new file mode 100644 index 00000000..3a4357f6 --- /dev/null +++ b/tldr/linux/impala @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# impala + +> Manage WiFi networks through a TUI. +> More information: . + +- Launch `impala` in station mode: + +`impala` + +- Launch `impala` in Access Point mode: + +`impala {{[-m|--mode]}} ap` + +- Switch between different sections: + +`{{|}}` + +- Select a network to connect to: + +`` + +- Display hotkeys: + +`` diff --git a/tldr/linux/lsblk b/tldr/linux/lsblk index 5e8c9547..29c639d3 100644 --- a/tldr/linux/lsblk +++ b/tldr/linux/lsblk @@ -38,4 +38,4 @@ source: https://github.com/tldr-pages/tldr.git - Display a customized summary using a comma-separated list of columns: -`lsblk {{[-o|--output]}} {{NAME,SERIAL,MODEL,TRAN,TYPE,SIZE,FSTYPE,MOUNTPOINT,...}}` +`lsblk {{[-o|--output]}} {{NAME,ROTA,SERIAL,MODEL,TRAN,TYPE,SIZE,FSTYPE,MOUNTPOINT,...}}` diff --git a/tldr/linux/lspci b/tldr/linux/lspci index c32a4cdf..abfd81af 100644 --- a/tldr/linux/lspci +++ b/tldr/linux/lspci @@ -12,22 +12,22 @@ source: https://github.com/tldr-pages/tldr.git `lspci` -- Display additional information (Note: the `-v` flag can be repeated to increase verbosity): +- Display [v]erbose information (Note: the `-v` flag can be repeated to increase verbosity): `lspci -v` -- Display drivers and modules handling each device: +- Display [k]ernel drivers and modules handling each device: `lspci -k` -- Show a specific device: +- [s]elect a specific device: `lspci -s {{00:18.3}}` -- Dump info in a readable form: +- Dump info in a ([m]achine) readable form: `lspci -vm` -- Show PCI vendor and device codes alongside its name: +- Show PCI vendor and device codes as both [n]umbers and [n]ames: `lspci -nn` diff --git a/tldr/linux/systemctl-poweroff b/tldr/linux/systemctl-poweroff new file mode 100644 index 00000000..d2612f3e --- /dev/null +++ b/tldr/linux/systemctl-poweroff @@ -0,0 +1,22 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# systemctl-poweroff + +> Power off the system. +> See also: `poweroff`. +> More information: . + +- Power off the system: + +`systemctl poweroff` + +- Power off the system immediately without asking services to stop gracefully: + +`systemctl poweroff --force` + +- Power off the system immediately without sending notifications to logged-in users: + +`systemctl poweroff --force --no-wall` diff --git a/tldr/linux/whatis b/tldr/linux/whatis index 1cfec302..ddd66955 100644 --- a/tldr/linux/whatis +++ b/tldr/linux/whatis @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # whatis > Display one-line descriptions from manual pages. +> See also: `whereis`, `which`, `type`. > More information: . - Display a description from a man page: diff --git a/tldr/linux/whereis b/tldr/linux/whereis index 7436890a..14d67827 100644 --- a/tldr/linux/whereis +++ b/tldr/linux/whereis @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # whereis > Locate the binary, source, and manual page files for a command. +> See also: `which`, `whatis`, `type`. > More information: . - Locate binary, source and man pages for SSH: diff --git a/tldr/type b/tldr/type index f41f8c99..5aebf248 100644 --- a/tldr/type +++ b/tldr/type @@ -7,6 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Display the type of command the shell will execute. > Note: All examples are not POSIX compliant. +> See also: `whereis`, `which`, `whatis`. > More information: . - Display the type of a command: diff --git a/tldr/vboxmanage b/tldr/vboxmanage index 64136da2..02684af0 100644 --- a/tldr/vboxmanage +++ b/tldr/vboxmanage @@ -10,18 +10,34 @@ source: https://github.com/tldr-pages/tldr.git > Some subcommands such as `startvm` have their own usage documentation. > More information: . -- Execute a VboxManage subcommand: +- List all VirtualBox virtual machines: -`VBoxManage {{subcommand}}` +`VBoxManage list vms` + +- Show information about a particular virtual machine: + +`VBoxManage showvminfo {{name|uuid}}` + +- Start a virtual machine: + +`VBoxManage startvm {{name|uuid}}` + +- Start a virtual machine in headless mode: + +`VBoxManage startvm {{name|uuid}} --type headless` + +- Shutdown the virtual machine and save its current state: + +`VBoxManage controlvm {{name|uuid}} savestate` + +- Shutdown down the virtual machine without saving its state: + +`VBoxManage controlvm {{name|uuid}} poweroff` + +- Update VBox extension packs: + +`VBoxManage extpack install --replace {{VboxExtensionPackFileName}}` - Display help: `VBoxManage --help` - -- Display help for a specific subcommand: - -`VBoxManage --help {{clonevm|import|export|startvm|...}}` - -- Display version: - -`VBoxManage --version` diff --git a/tldr/which b/tldr/which index 2bb74026..f28d41d2 100644 --- a/tldr/which +++ b/tldr/which @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # which > Locate a program in the user's path. +> See also: `whereis`, `whatis`, `type`. > More information: . - Search the PATH environment variable and display the location of any matching executables: