pages*: fix various proper names, acronyms and initialisms (#12494)

This commit is contained in:
Vitor Henrique
2024-03-14 02:01:06 -03:00
committed by GitHub
parent 33770df77d
commit 935d605998
243 changed files with 415 additions and 415 deletions

View File

@@ -20,6 +20,6 @@
`wget -qO - {{https://host.tld/filename.key}} | apt-key add -`
- Add a key from keyserver with only key id:
- Add a key from keyserver with only key ID:
`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{KEYID}}`

View File

@@ -3,7 +3,7 @@
> Manage archives of various formats.
> More information: <https://www.nongnu.org/atool/>.
- List files in a `zip` archive:
- List files in a Zip archive:
`atool --list {{path/to/archive.zip}}`
@@ -11,10 +11,10 @@
`atool --extract {{path/to/archive.tar.gz}}`
- Create a new `7z` archive with two files:
- Create a new 7z archive with two files:
`atool --add {{path/to/archive.7z}} {{path/to/file1 path/to/file2 ...}}`
- Extract all `zip` and rar archives in the current directory:
- Extract all Zip and rar archives in the current directory:
`atool --each --extract {{*.zip *.rar}}`

View File

@@ -1,7 +1,7 @@
# distrobox-list
> List all Distrobox containers. See also: `tldr distrobox`.
> Distrobox containers are listed separately from the rest of normal podman or Docker containers.
> Distrobox containers are listed separately from the rest of normal Podman or Docker containers.
> More information: <https://distrobox.it/usage/distrobox-list>.
- List all Distrobox containers:

View File

@@ -1,13 +1,13 @@
# dockerd
> A persistent process to start and manage docker containers.
> A persistent process to start and manage Docker containers.
> More information: <https://docs.docker.com/engine/reference/commandline/dockerd/>.
- Run docker daemon:
- Run Docker daemon:
`dockerd`
- Run docker daemon and configure it to listen to specific sockets (UNIX and TCP):
- Run Docker daemon and configure it to listen to specific sockets (UNIX and TCP):
`dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}`

View File

@@ -23,7 +23,7 @@
`dolphin --split {{path/to/directory1}} {{path/to/directory2}}`
- Launch the daemon (only required to use the DBus interface):
- Launch the daemon (only required to use the D-Bus interface):
`dolphin --daemon`

View File

@@ -8,6 +8,6 @@
`sudo groupmod --new-name {{new_group}} {{group_name}}`
- Change the group id:
- Change the group ID:
`sudo groupmod --gid {{new_id}} {{group_name}}`

View File

@@ -31,6 +31,6 @@
`kdialog --getopenfilename`
- Open a progressbar dialog and print a DBUS reference for communication to `stdout`:
- Open a progressbar dialog and print a D-Bus reference for communication to `stdout`:
`kdialog --progressbar "{{message}}"`

View File

@@ -4,7 +4,7 @@
> See also: `tar`, `lrzuntar`, `lrunzip`.
> More information: <https://manned.org/lrztar>.
- Archive a directory with `tar`, then compress:
- Archive a directory with tar, then compress:
`lrztar {{path/to/directory}}`

View File

@@ -15,7 +15,7 @@
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -e {{file|directory1 file|directory2 ...}}`
- Create or append files and directories to a squashfs filesystem, [e]xcluding those ending with `.gz`:
- Create or append files and directories to a squashfs filesystem, [e]xcluding those ending with gzip:
`mksquashfs {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{filesystem.squashfs}} -wildcards -e "{{*.gz}}"`

View File

@@ -1,7 +1,7 @@
# nsenter
> Run a new command in a running process' namespace.
> Particularly useful for docker images or chroot jails.
> Particularly useful for Docker images or chroot jails.
> More information: <https://manned.org/nsenter>.
- Run a specific command using the same namespaces as an existing process:

View File

@@ -11,7 +11,7 @@
`pidstat -r`
- Show input/output usage per process id:
- Show input/output usage per process ID:
`pidstat -d`

View File

@@ -3,7 +3,7 @@
> Report memory map of a process or processes.
> More information: <https://manned.org/pmap>.
- Print memory map for a specific process id (PID):
- Print memory map for a specific process ID (PID):
`pmap {{pid}}`

View File

@@ -1,6 +1,6 @@
# pngcheck
> Forensics tool for validating the integrity of PNG based (`.png`, `.jng`, `.mng`) image files.
> Forensics tool for validating the integrity of PNG based (PNG, JNG, MNG) image files.
> Can also extract embedded images and text from a file.
> More information: <http://www.libpng.org/pub/png/apps/pngcheck.html>.

View File

@@ -1,6 +1,6 @@
# pw-cat
> Play and record audio files through pipewire.
> Play and record audio files through PipeWire.
> More information: <https://fedoraproject.org/wiki/QA:Testcase_PipeWire_PipeWire_CLI>.
- Play a WAV file over the default target:

View File

@@ -3,7 +3,7 @@
> Profile a local or remote instance.
> More information: <https://docs.pipewire.org/page_man_pw-profiler_1.html>.
- Profile the default instance, logging to `profile.log` (`gnuplot` files and a `.html` file for result visualizing are also generated):
- Profile the default instance, logging to `profile.log` (`gnuplot` files and a HTML file for result visualizing are also generated):
`pw-profiler`

View File

@@ -1,6 +1,6 @@
# pw-record
> Record audio files through pipewire.
> Record audio files through PipeWire.
> Shorthand for pw-cat --record.
> More information: <https://fedoraproject.org/wiki/QA:Testcase_PipeWire_PipeWire_CLI>.

View File

@@ -4,7 +4,7 @@
> Use `--skiplock` and `--skiplockstorage` flags with caution, as they may lead to data corruption in certain situations.
> More information: <https://pve.proxmox.com/pve-docs/qm.1.html>.
- Suspend a virtual machine by id:
- Suspend a virtual machine by ID:
`qm suspend {{vm_id}} {{integer}}`

View File

@@ -1,7 +1,7 @@
# rexec
> Execute a command on a remote host.
> Note: Use `rexec` with caution, as it transmits data in plain text. Consider secure alternatives like `ssh` for encrypted communication.
> Note: Use `rexec` with caution, as it transmits data in plain text. Consider secure alternatives like SSH for encrypted communication.
> More information: <https://www.gnu.org/software/inetutils/manual/html_node/rexec-invocation.html>.
- Execute a command on a remote [h]ost:

View File

@@ -3,11 +3,11 @@
> Display accounting data from the Slurm service.
> More information: <https://slurm.schedmd.com/sacct.html>.
- Display job id, job name, partition, account, number of allocated cpus, job state, and job exit codes for recent jobs:
- Display job ID, job name, partition, account, number of allocated cpus, job state, and job exit codes for recent jobs:
`sacct`
- Display job id, job state, job exit code for recent jobs:
- Display job ID, job state, job exit code for recent jobs:
`sacct --brief`

View File

@@ -3,22 +3,22 @@
> Create a squashfs filesystem from a tar archive.
> More information: <https://manned.org/sqfstar>.
- Create a squashfs filesystem (compressed using `gzip` by default) from an uncompressed `tar` archive:
- Create a squashfs filesystem (compressed using `gzip` by default) from an uncompressed tar archive:
`sqfstar {{filesystem.squashfs}} < {{archive.tar}}`
- Create a squashfs filesystem from a `tar` archive compressed with `gzip`, and [comp]ress the filesystem using a specific algorithm:
- Create a squashfs filesystem from a tar archive compressed with `gzip`, and [comp]ress the filesystem using a specific algorithm:
`zcat {{archive.tar.gz}} | sqfstar -comp {{gzip|lzo|lz4|xz|zstd|lzma}} {{filesystem.squashfs}}`
- Create a squashfs filesystem from a `tar` archive compressed with `xz`, excluding some of the files:
- Create a squashfs filesystem from a tar archive compressed with `xz`, excluding some of the files:
`xzcat {{archive.tar.xz}} | sqfstar {{filesystem.squashfs}} {{file1 file2 ...}}`
- Create a squashfs filesystem from a `tar` archive compressed with `zstd`, excluding files ending with `.gz`:
- Create a squashfs filesystem from a tar archive compressed with `zstd`, excluding files ending with `.gz`:
`zstdcat {{archive.tar.zst}} | sqfstar {{filesystem.squashfs}} "{{*.gz}}"`
- Create a squashfs filesystem from a `tar` archive compressed with `lz4`, excluding files matching a regular expression:
- Create a squashfs filesystem from a tar archive compressed with `lz4`, excluding files matching a regular expression:
`lz4cat {{archive.tar.lz4}} | sqfstar {{filesystem.squashfs}} -regex "{{regular_expression}}"`

View File

@@ -19,7 +19,7 @@
`ss -lt src :{{8080}}`
- Show all TCP sockets along with processes connected to a remote ssh port:
- Show all TCP sockets along with processes connected to a remote SSH port:
`ss -pt dst :{{ssh}}`

View File

@@ -15,7 +15,7 @@
`tftp {{server_ip}} -6 -R {{port}}:{{port}}`
- Set the transfer mode to binary or ascii through the tftp client:
- Set the transfer mode to binary or ASCIi through the tftp client:
`mode {{binary|ascii}}`

View File

@@ -1,9 +1,9 @@
# unzipsfx
> Create a self-extracting compressed binary file by prepending self-extracting stubs on a `zip` file.
> Create a self-extracting compressed binary file by prepending self-extracting stubs on a Zip file.
> More information: <https://manned.org/unzipsfx>.
- Create a self-extracting binary file of a `zip` archive:
- Create a self-extracting binary file of a Zip archive:
`cat unzipsfx {{path/to/archive.zip}} > {{filename}} && chmod 755 {{filename}}`
@@ -19,6 +19,6 @@
`{{./path/to/binary)}} -c {{path/to/filename}}`
- Print comments on `zip` archive in the self-extracting binary:
- Print comments on Zip archive in the self-extracting binary:
`{{./path/to/binary)}} -z`

View File

@@ -8,7 +8,7 @@
`sudo useradd {{username}}`
- Create a new user with the specified user id:
- Create a new user with the specified user ID:
`sudo useradd --uid {{id}} {{username}}`

View File

@@ -8,7 +8,7 @@
`sudo usermod --login {{new_username}} {{username}}`
- Change a user id:
- Change a user ID:
`sudo usermod --uid {{id}} {{username}}`

View File

@@ -1,6 +1,6 @@
# zip
> Package and compress (archive) files into `zip` archive.
> Package and compress (archive) files into a Zip archive.
> See also: `unzip`.
> More information: <https://manned.org/zip>.
@@ -24,7 +24,7 @@
`zip -r --encrypt {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
- Archive files/directories to a multi-part [s]plit `zip` archive (e.g. 3 GB parts):
- Archive files/directories to a multi-part [s]plit Zip archive (e.g. 3 GB parts):
`zip -r -s {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`