1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 22:55:44 +02:00

stratis: add page (#17387)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
nbaud 2025-07-30 06:05:37 +02:00 committed by GitHub
parent 4eee899bca
commit ae6f3b55e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

37
pages/linux/stratis.md Normal file
View file

@ -0,0 +1,37 @@
# stratis
> Manage local storage pools and volumes using the Stratis storage manager.
> Stratis volumes use the XFS filesystem and require the `stratisd` service.
> More information: <https://stratis-storage.github.io>.
- Start the Stratis service (must be active before managing pools or volumes):
`sudo systemctl start stratisd`
- Create a storage pool from one or more devices:
`sudo stratis pool create {{pool_name}} {{/dev/sdX}} {{/dev/sdY}}`
- Create a filesystem (volume) in a pool:
`sudo stratis filesystem create {{pool_name}} {{volume_name}}`
- List all Stratis filesystems:
`sudo stratis filesystem list`
- Format and mount a Stratis volume manually:
`sudo mkfs.xfs /dev/stratis/{{pool_name}}/{{volume_name}} && sudo mount /dev/stratis/{{pool_name}}/{{volume_name}} {{/mnt/target}}`
- Add a volume to `/etc/fstab` for mounting at boot:
`echo /dev/stratis/{{pool_name}}/{{volume_name}} {{/mnt/target}} xfs defaults,x-systemd.requires=stratisd.service 0 0 | sudo tee {{[-a|--append]}} /etc/fstab`
- Extend an existing pool by adding a new device:
`sudo stratis pool add-data {{pool_name}} {{/dev/sdZ}}`
- Delete a volume:
`sudo stratis filesystem destroy {{pool_name}} {{volume_name}}`