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:
parent
f1f14794a5
commit
8fa247c3ba
4 changed files with 68 additions and 0 deletions
20
pages/linux/mount.steamos.md
Normal file
20
pages/linux/mount.steamos.md
Normal 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]}}`
|
7
pages/linux/steamos-boot-install.md
Normal file
7
pages/linux/steamos-boot-install.md
Normal 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`
|
17
pages/linux/steamos-devmode.md
Normal file
17
pages/linux/steamos-devmode.md
Normal 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`
|
24
pages/linux/steamos-finalize-install.md
Normal file
24
pages/linux/steamos-finalize-install.md
Normal 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`
|
Loading…
Add table
Reference in a new issue