1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 00:05:59 +02:00

steamos-{boot-install, devmode, finalize-install}, mount.steamos: add pages (#16750)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
bradleyJT-CS 2025-06-04 13:02:49 -07:00 committed by GitHub
parent f1f14794a5
commit 8fa247c3ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,20 @@
# mount.steamos
> Mount or unmount SteamOS filesystem partitions.
> More information: <https://gitlab.com/users/evlaV/projects>.
- Mount all necessary partitions from a device to a target directory:
`sudo mount.steamos {{/dev/sdX}} {{/mnt}}`
- Mount with options to exclude specific partitions (e.g. `/home`, overlays):
`sudo mount.steamos {{[-o|--options]}} nohome,nooverlay {{/dev/sdX}} {{/mnt}}`
- Unmount all partitions mounted under a target directory:
`sudo mount.steamos -u {{/mnt}}`
- Display help:
`mount.steamos {{[-h|--help]}}`

View file

@ -0,0 +1,7 @@
# steamos-boot-install
> This command is an alias of `steamos-finalize-install`.
- View documentation for the original command:
`tldr steamos-finalize-install`

View file

@ -0,0 +1,17 @@
# steamos-devmode
> Enable SteamOS developer mode.
> Note: Developer mode disables read-only protections and initializes the package manager.
> More information: <https://gitlab.com/users/evlaV/projects>.
- Enable developer mode:
`sudo steamos-devmode enable`
- Enable developer mode without confirmation prompt:
`sudo steamos-devmode enable --no-prompt`
- Check if developer mode is currently enabled:
`sudo steamos-devmode status`

View file

@ -0,0 +1,24 @@
# steamos-finalize-install
> Complete a SteamOS installation by setting up bootloaders and applying system updates.
> More information: <https://gitlab.com/users/evlaV/projects>.
- Finalize the installation:
`sudo steamos-finalize-install`
- Finalize without updating bootloaders or kernel:
`sudo steamos-finalize-install --no-bootloaders --no-kernel`
- Skip all migration steps:
`sudo steamos-finalize-install --no-migrate`
- Set a specific root hash during finalization:
`sudo steamos-finalize-install --roothash {{hash}}`
- Force system migration steps regardless of environment:
`sudo steamos-finalize-install --force`