refactor
This commit is contained in:
parent
8a44e4aeef
commit
d34c642377
5 changed files with 140 additions and 5 deletions
|
@ -3,6 +3,7 @@ arch-wiki: https://wiki.archlinux.org/title/File_systems
|
|||
tags: ["meta"]
|
||||
obj: meta/collection
|
||||
---
|
||||
|
||||
## Filesystems
|
||||
- [ZFS](ZFS.md)
|
||||
- [Btrfs](Btrfs.md)
|
||||
|
@ -10,4 +11,5 @@ obj: meta/collection
|
|||
- [SquashFS](SquashFS.md)
|
||||
- [MergerFS](MergerFS.md)
|
||||
- [exFAT](exFAT.md)
|
||||
- [SSHFS](SSHFS.md)
|
||||
- [SSHFS](SSHFS.md)
|
||||
- [XFS](XFS.md)
|
29
technology/linux/filesystems/XFS.md
Normal file
29
technology/linux/filesystems/XFS.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
obj: filesystem
|
||||
wiki: https://en.wikipedia.org/wiki/XFS
|
||||
---
|
||||
|
||||
# XFS
|
||||
XFS is a high-performance, scalable file system designed for Unix-like operating systems. It was originally developed by Silicon Graphics, Inc. (SGI) and later open-sourced. XFS is known for its robustness, advanced features, and suitability for large-scale storage environments.
|
||||
|
||||
## File System Creation and Management
|
||||
|
||||
Creating an XFS file system can be done using the mkfs.xfs command:
|
||||
```shell
|
||||
mkfs.xfs /dev/sdX
|
||||
```
|
||||
|
||||
To mount an XFS file system, use the mount command:
|
||||
```shell
|
||||
mount -t xfs /dev/sdX /mnt/point
|
||||
```
|
||||
|
||||
Grow the filesystem:
|
||||
```shell
|
||||
xfs_growfs /mnt
|
||||
```
|
||||
|
||||
Get information on filesystem:
|
||||
```shell
|
||||
xfs_info /mnt
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue