Linux – 每个目录的配额?

前端之家收集整理的这篇文章主要介绍了Linux – 每个目录的配额?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下场景:

单个分区安装为/,具有大量磁盘空间.

有一系列目录(/ pg / tbs1,/ pg / tbs2,/ pg / tbs3等),我想限制这些目录的总大小.

一种选择是制作一些大文件,然后mkfs它们,然后挂载环回,然后设置配额,但这会使扩展有点问题.

有没有其他方法可以使每个目录的配额工作?

解决方法

如果你被迫使用ext3,那么使用LVM可能是你最好的解决方案.为每个项目创建一个新的文件系统.这看起来像这样:
# Create a 10g filesystem for "project1" in volume group "vg0"
lvcreate -L 10g -n project1 vg0

# Create an ext3 filesystem.
mke2fs -j /dev/vg0/project1

# Mount it (obvIoUsly you would want this in /etc/fstab)
mount /dev/vg0/project1 /projects/project1

增长项目文件系统很容易:

# Add 2GB to the volume.
lvextend -L +2g /dev/vg0/project1

# Grow the filesystem.
resize2fs /dev/vg0/project1
原文链接:https://www.f2er.com/linux/402470.html

猜你在找的Linux相关文章