refactor
This commit is contained in:
parent
8a44e4aeef
commit
d34c642377
5 changed files with 140 additions and 5 deletions
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
obj: os
|
obj: os
|
||||||
website: https://www.openbsd.org/
|
website: https://www.openbsd.org
|
||||||
---
|
---
|
||||||
#refactor #notnow
|
#refactor #notnow
|
||||||
# OpenBSD
|
# OpenBSD
|
||||||
The OpenBSD project produces a FREE, multi-platform 4.4BSD-based UNIX-like operating system. Our efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography. As an example of the effect OpenBSD has, the popular [OpenSSH](../applications/SSH.md) software comes from OpenBSD.
|
The OpenBSD project produces a free, multi-platform BSD-based UNIX-like operating system. Our efforts emphasize portability, standardization, correctness, proactive security and integrated cryptography. As an example of the effect OpenBSD has, the popular [OpenSSH](../applications/SSH.md) software comes from OpenBSD.
|
|
@ -34,7 +34,7 @@ Each message is inside a topic allowing for organizing them.
|
||||||
### 1. **IoT (Internet of Things):**
|
### 1. **IoT (Internet of Things):**
|
||||||
- MQTT is widely used in IoT scenarios for efficient communication between devices.
|
- MQTT is widely used in IoT scenarios for efficient communication between devices.
|
||||||
### 2. **Home Automation:**
|
### 2. **Home Automation:**
|
||||||
- Smart homes leverage MQTT for controlling and monitoring devices. For example zigbee2mqtt with [Home Assistant](../applications/web/Home%20Assistant.md).
|
- Smart homes leverage MQTT for controlling and monitoring devices. For example [zigbee2mqtt](../applications/web/zigbee2mqtt.md) with [Home Assistant](../applications/web/Home%20Assistant.md).
|
||||||
### 3. **Messaging in Remote Locations:**
|
### 3. **Messaging in Remote Locations:**
|
||||||
- Suitable for scenarios with low bandwidth, high latency, or unreliable connections.
|
- Suitable for scenarios with low bandwidth, high latency, or unreliable connections.
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ arch-wiki: https://wiki.archlinux.org/title/File_systems
|
||||||
tags: ["meta"]
|
tags: ["meta"]
|
||||||
obj: meta/collection
|
obj: meta/collection
|
||||||
---
|
---
|
||||||
|
|
||||||
## Filesystems
|
## Filesystems
|
||||||
- [ZFS](ZFS.md)
|
- [ZFS](ZFS.md)
|
||||||
- [Btrfs](Btrfs.md)
|
- [Btrfs](Btrfs.md)
|
||||||
|
@ -10,4 +11,5 @@ obj: meta/collection
|
||||||
- [SquashFS](SquashFS.md)
|
- [SquashFS](SquashFS.md)
|
||||||
- [MergerFS](MergerFS.md)
|
- [MergerFS](MergerFS.md)
|
||||||
- [exFAT](exFAT.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…
Reference in a new issue