Split fs-btrfs

This commit is contained in:
root
2024-06-12 02:01:52 +03:00
parent 896956b62b
commit eaa2d11891
3 changed files with 33 additions and 25 deletions

18
docs/linux/fs-other.md Normal file
View File

@@ -0,0 +1,18 @@
# LVM
#### Extend
```bash
lvextend -L+1G /dev/vg4/homevol
```
# Ext4
#### Resize
```bash
resize2fs /dev/device [size]
```
#### if superblock fail
```bash
dumpe2fs /dev/sda5 | grep -i backup
fsck -b 32768 /dev/sda5
```