HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

mount.steamos — Mount or unmount SteamOS filesystem partitions. More information: <https://gitlab.com/users/evlaV/pr

Submitted by: @import:tldr-pages··
0
Viewed 0 times
steamoscommandunmountclifilesystempartitionsmountmount.steamos
linux

Problem

How to use the mount.steamos command: Mount or unmount SteamOS filesystem partitions. More information: <https://gitlab.com/users/evlaV/projects>.

Solution

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]}}

Code Snippets

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]}}

Context

tldr-pages: linux/mount.steamos

Revisions (0)

No revisions yet.