首页IT科技linux如何部署(Linux下使用quota命令管理磁盘空间的实例教程)

linux如何部署(Linux下使用quota命令管理磁盘空间的实例教程)

时间2025-05-02 09:47:31分类IT科技浏览3601
导读:1.通过yum 方式 安装quota...

1.通过yum 方式 安装quota

#yum install quota

2.VirtualBox创建硬盘

如果你的Linux环境建立在VirtualBox下:

(1)关闭虚拟机镜像

点击setting 配置虚拟机所使用的硬件

(2)配置新硬盘

选择Create new disk

选择VHD (virtual hard disk)

输入硬盘镜像名字

(3)格式化硬盘

进入linux         ,使用命令创建硬盘进行格式化
代码如下:
#mkfs -t ext4 /dev/sdb

(4)为硬盘空间寻找目录

代码如下:
#mount /dev/sdb /home

如果有需要长期挂着                  ,请自行百度如何修改/etc/fstab     ,本人修改多次      ,让系统多次崩溃                 ,最终放弃        ,选择在 vi /etc/rc.local 里面    ,业余的加入 mount /dev/sdb /home 这条命令         。

3.格式化新创建的硬盘

代码如下:
[root@localhost ~]# mkfs -t ext4 /dev/sdb
代码如下:

mke2fs 1.41.12 (12-Apr-2016)

/dev/sdb is entire device, not just one partition!

Proceed anyway? (y,n) y

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

524288 inodes, 2097152 blocks

104857 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=2147483648

64 block groups

32768 blocks per group, 32768 fragments per group

8192 inodes per group

Superblock backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 24 mounts or

180 days, whichever comes first. Use tune2fs -c or -i to override.

挂在硬盘到/home目录

代码如下:

[root@localhost ~]# mount /dev/sdb /home/

[root@localhost ~]# mount -o remount,usrquota,grpquota /home

[root@localhost ~]# mount
代码如下:

/dev/mapper/VolGroup-lv_root on / type ext4 (rw)

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

devpts on /dev/pts type devpts (rw,gid=5,mode=620)

tmpfs on /dev/shm type tmpfs (rw,rootcontext="system_u:object_r:tmpfs_t:s0")

/dev/sda1 on /boot type ext4 (rw)

none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

/dev/sdb on /home type ext4 (rw,usrquota,grpquota)

为系统设置启动后自动挂载硬盘

代码如下:
[root@localhost ~]#vi /etc/rc.local

添加

代码如下:

mount /dev/sdb /home

mount -o remount,usrquota,grpquota /home

备注:本人并没有采取修改/etc/fstab 的方法                ,因为该方法容易因为输入的字符或格式不对导致系统崩溃           ,所以采取了修改用户启动文件的方法

4.配置quota

代码如下:
[root@localhost ~]#quotacheck -avug 对整个系统含有 usrquota, grpquota 参数的文件系统进行 quotacheck 扫描

quotacheck: Your kernel probably supports journaled quota but you are not using it. Consider switching to journaled quota to avoid running quotacheck after an unclean shutdown.

quotacheck: Scanning /dev/sdb [/home] done

quotacheck: Cannot stat old user quota file: No such file or directory

quotacheck: Cannot stat old group quota file: No such file or directory

quotacheck: Cannot stat old user quota file: No such file or directory

quotacheck: Cannot stat old group quota file: No such file or directory

quotacheck: Checked 2 directories and 0 files

quotacheck: Cannot create new quotafile /home/aquota.user.new: Permission denied

quotacheck: Cannot initialize IO on new quotafile: Permission denied

quotacheck: Cannot create new quotafile /home/aquota.group.new: Permission denied

quotacheck: Cannot initialize IO on new quotafile: Permission denied

出现报错  ,报错原因是因为没有关闭selinux
代码如下:

[root@localhost ~]# setenforce 0

[root@localhost ~]# quotacheck -avug

quotacheck: Your kernel probably supports journaled quota but you are not using it. Consider switching to journaled quota to avoid running quotacheck after an unclean shutdown.

quotacheck: Scanning /dev/sdb [/home] done

quotacheck: Cannot stat old user quota file: No such file or directory

quotacheck: Cannot stat old group quota file: No such file or directory

quotacheck: Cannot stat old user quota file: No such file or directory

quotacheck: Cannot stat old group quota file: No such file or directory

quotacheck: Checked 2 directories and 0 files

quotacheck: Old file not found.

quotacheck: Old file not found.

成功生成
代码如下:
[root@localhost ~]#quotaon -auvg 启动quota

5.为用户添加硬盘空间限制

创建账户
代码如下:

[root@localhost ~]# useradd quotauser1

[root@localhost ~]# passwd quotauser1
代码如下:
[root@localhost ~]# edquota -u quotauser1

Disk quotas for user quotauser1 (uid 500):

Filesystem blocks soft hard inodes soft hard

/dev/sdb 16 500000 600000 4 0 0

限制用户quotauser1的使用空间为500M               ,最大限制是600M

参数意义参考

  soft :这是最低限制容量的意思              ,使用者在宽限期间之内,他的容量可以超过 soft             ,但必需要宽限时间之内将磁盘容量降低到 soft 的容量限制之下!

  hard :这是『绝对不能超过』的容量!跟 soft 相比的意思为何呢?通常 hard limit 会比 soft limit 为高                 ,例如网络磁盘空间为 30 MB   ,那么 hard limit 就设定为 30MB          ,但是为了让使用者有一定的警戒心                  ,所以当使用空间超过 25 MB 时     ,例如使用者使用了 27 MB 的空间时      ,那么系统就会警告使用者                 ,让使用者可以在『宽限时间内』将他的档案量降低至 25 MB ( 亦即是 soft limit )之内!也就是说        , soft 到 hard 之间的容量其实就是宽限的容量啦!可以达到针对使用者的『警示』作用!

  宽限时间:那么宽限时间就可以很清楚的知道含意是什么了!也就是当您的使用者使用的空间超过了 soft limit     ,却还没有到达 hard limit 时                ,那么在这个『宽限时间』之内           ,就必需要请使用者将使用的磁盘容量降低到 soft limit 之下!而当使用者将磁盘容量使用情况超过 soft limit 时  ,『宽限时间』就会自动被启动               ,而在使用者将容量降低到 soft limit 之下              ,那么宽限时间就会自动的取消啰!

6.测试

登陆quotauser1

创建超过600M的文件
代码如下:
[quotauser1@localhost ~]$ dd if=/dev/zero of=bigfile bs=1M count=700

sdb: warning, user block quota exceeded.

sdb: write failed, user block limit reached.

dd: writing `bigfile: Disk quota exceeded

586+0 records in

585+0 records out

614379520 bytes (614 MB) copied, 2.75934 s, 223 MB/s
代码如下:
[quotauser1@localhost ~]$ ls

bigfile

代码如下:
[quotauser1@localhost ~]$ ls -l

total 599984

-rw-rw-r--. 1 quotauser1 quotauser1 614379520 Sep 28 03:28 bigfile

可以发现文件的大小被限制了

声明:本站所有文章,如无特殊说明或标注            ,均为本站原创发布                  。任何个人或组织                 ,在未征得本站同意时  ,禁止复制            、盗用              、采集      、发布本站内容到任何网站         、书籍等各类媒体平台     。如若本站内容侵犯了原著者的合法权益         ,可联系我们进行处理      。

创心域SEO版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!

展开全文READ MORE
如何进行网站优化(掌握有效方法,提升网站排名) linux网络不可用(Linux不能上网ping:unknown host出错该怎么办?)