Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-27 00:21:46 +00:00
parent 69350c28ac
commit cdc8040fcb
33 changed files with 274 additions and 40 deletions

View File

@@ -8,11 +8,11 @@ source: https://github.com/tldr-pages/tldr.git
> Utility for managing Non-Volatile DIMMs.
> More information: <https://manned.org/ndctl>.
- Create an 'fsdax' mode namespace:
- Create an `fsdax` mode namespace:
`ndctl create-namespace --mode={{fsdax}}`
- Change the mode of a namespace to 'raw':
- Change the mode of a namespace to `raw`:
`ndctl create-namespace --reconfigure={{namespaceX.Y}} --mode={{raw}}`
@@ -28,7 +28,7 @@ source: https://github.com/tldr-pages/tldr.git
`ndctl list -vvv --namespace={{namespaceX.Y}}`
- Run a monitor to watch for SMART health events for NVDIMMs on the 'ACPI.NFIT' bus:
- Run a monitor to watch for SMART health events for NVDIMMs on the `ACPI.NFIT` bus:
`ndctl monitor --bus={{ACPI.NFIT}}`

29
tldr/linux/palworld Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# Palworld
> Create and start a headless Palworld server.
> More information: <https://docs.palworldgame.com/settings-and-operation/arguments>.
- Start the server with default settings:
`{{path/to/PalServer.sh}}`
- Start the server with a specific port and set a maximum player count:
`{{path/to/PalServer.sh}} -port={{8211}} -players={{1..32}}`
- Start a public lobby server:
`{{path/to/PalServer.sh}} -publiclobby`
- Start the server with performance optimizations for multi-threaded CPUs:
`{{path/to/PalServer.sh}} -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS`
- Start the server with a specific public IP and port for community servers:
`{{path/to/PalServer.sh}} -publicip={{ip_address}} -publicport={{port}}`

View File

@@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# paru
> An AUR helper and pacman wrapper.
> See also: `pacman`, `yay`.
> More information: <https://github.com/Morganamilo/paru>.
- Interactively search for and install a package:
@@ -20,6 +21,10 @@ source: https://github.com/tldr-pages/tldr.git
`paru -Sua`
- Remove an installed package, it's configuration files, and dependencies:
`paru -Rns {{package}}`
- Get information about a package:
`paru -Si {{package}}`

View File

@@ -21,9 +21,9 @@ source: https://github.com/tldr-pages/tldr.git
`rdesktop -u {{username}} -p {{password}} -f {{host:port}}`
- Use the customed resolution (use the letter 'x' between the number):
- Use a custom resolution (use the letter `x` between the numbers):
`rdesktop -u {{username}} -p {{password}} -g 1366x768 {{host:port}}`
`rdesktop -u {{username}} -p {{password}} -g {{1366}}x{{768}} {{host:port}}`
- Connect to a remote computer using domain user:

View File

@@ -10,7 +10,7 @@ source: https://github.com/tldr-pages/tldr.git
> Note: This page refers to the command from the `util-linux` package.
> More information: <https://manned.org/rename>.
- Rename files using simple substitutions (substitute 'foo' with 'bar' wherever found):
- Rename files using simple substitutions (substitute `foo` with `bar` wherever found):
`rename {{foo}} {{bar}} {{*}}`

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# virt-viewer
> Minimal graphical interface for a virtual machine (VM).
> Note: 'domain' refers to the name, UUID or ID for the existing VMs.
> Note: `domain` refers to the name, UUID or ID for the existing VMs.
> See also: `virsh`.
> More information: <https://manned.org/virt-viewer>.

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# virt-xml
> Edit libvirt Domain XML files with explicit command-line options.
> Note: 'domain' refers to the name, UUID or ID for the existing VMs.
> Note: `domain` refers to the name, UUID or ID for the existing VMs.
> See also: `virsh`.
> More information: <https://github.com/virt-manager/virt-manager/blob/main/man/virt-xml.rst>.

View File

@@ -24,6 +24,6 @@ source: https://github.com/tldr-pages/tldr.git
`yaourt -Ss {{query}}`
- List installed packages, versions, and repositories (AUR packages will be listed under the repository name 'local'):
- List installed packages, versions, and repositories (AUR packages will be listed under the repository name `local`):
`yaourt -Q`