How to use Quota on Ubuntu

29/12/2020
Quota is a built in feature of the Linux kernel used to set a limit of how much disk space a user or a group can use. Quota is also used to limit the maximum number of files a user or a group can create on Linux. Although quota is a built in kernel feature, the filesystem where you want to use quota must also support quota. Some of the filesystems that supports quota on Linux are ext2, ext3, ext4, xfs etc. Quota must be defined for each filesystem and for each user or group separately. In this article, I will show you how to use quota in a multi user environment on Ubuntu. So, let’s get started.

Installing Quota Management Utilities on Ubuntu:

On Ubuntu/Debian, you can install the quota package from the official package repository of Ubuntu/Debian. The quota package installs the required programs which are essential to work with quotas.

First, update the APT package repository cache with the following command:

$ sudo apt update

Now, install the quota package with the following command:

$ sudo apt install quota

Now, press y and then press <Enter>.

The quota package should be installed.

Enabling Filesystem Quota:

I’ve already told you that there are 2 types of quota, user quota and group quota. You can enable either user quota, or group quota or both depending on your need.

To permanently enable quota on a filesystem, open /etc/fstab file with the following command:

$ sudo nano /etc/fstab

Now, add usrquota and/or grpquota options in the options field (4th) of the filesystem for which you want to enable quota in the /etc/fstab file. Once you’re done, save the file by pressing <Ctrl> + x followed by y and then press <Enter>.

NOTE: To enable only user quota, use the usrquota option only. To enable only group quota, use the grpquota option only. To enable both user and group quota, use usrquota,grpquota option.

Now, reboot your computer for the changes to take effect.

$ sudo reboot

If you just want to try out quota, then you can use the mount command to temporarily enable quota on a filesystem.

To temporarily enable quota on the root filesystem, run the following command:

$ sudo mount -o remount,usrquota,grpquota /

Initializing Quota on Filesystems:

Now, to get the filesystems ready to use quota, you have to run the quotacheck command on each one of filesystem you want to use quota on.

Let’s say, you want to use only user quota on the root (/) filesystem. To do that, initialize quota as follows:

$ sudo quotacheck -cum /

If you want to use group quota only, then the command would be,

$ sudo quotacheck -cgm /

If you want to use both user and group quota, then run the following command:

$ sudo quotacheck -cugm /

Now, turn on quota on the root (/) filesystem with the following command:

$ sudo quotaon -v /

As you can see, quota is turned on.

If you for some reason decide to turn off quota, then you can do so with the following command:

$ sudo quotaoff -v /

Working with User Quota:

Now, let’s say you want to add disk quota for the user bob. To do that, run the following command:

$ sudo edquota -u bob

You should see the following window.

There are some terms that you should know.

Filesystem: It is the disk partition where this quota is to be applied. In my case, it’s /dev/sda2, the root (/) filesystem partition. Don’t try to change it.

Blocks: This is the number of disk blocks the user bob can use. You can find the block size of your disk partition with the following command:

$ sudo blockdev –getbsz /dev/sda2

As you can see, the block size in my case is 4096 bytes or 4KB.

You can’t use megabyte or gigabyte unit here directly. You have to convert it to equivalent block size first. Then, use the block size here.

Let’s say, you want to let the user bob use only 1 GB of disk space. 1 GB = 1024 MB = 1024 * 1024 KB.

How many blocks? Well, (1024 * 1024 / 4) = 262144 blocks for each gigabyte

There are 262144 blocks for each gigabyte. So, for 5 GB of disk space, the block size is 5 * 262144 = 1310720

Easy right?

Inode: It is the number of files you can create in a filesystem. So, if the user bob is allowed to have 1000 inodes, then he can create only 1000 files or directories. Even if the total size of 1000 files or directories is less than the number of blocks he can use, he won’t still be able to create any new files or directories. So, I would keep it a little high.

A good measure is keeping it about 60-70% of the total block size.

So, for a block size of 262144, a good enough inode number is 157280 or 183500.

Soft and Hard Limit: Both block and inode can have a soft and a hard limit. A user or group can exceed soft limit for a certain number of days called grace period. But in no means they are allowed to exceed the hard limit. You can put 0 for soft limit to disable soft limit if you want. In this case, only hard limit will be used.

NOTE: You should only set the soft and hard limit. Don’t modify the values of the blocks and inode columns. They represent the blocks and inodes that the user is currently using.

I set the quota for the user bob as follows. Once you’re done, save the file. The quota should be applied.

Working with Group Quota:

To set a group quota for the group www-data (let’s say), run the following command:

$ sudo edquota -g www-data

Now, you can set group quota the same way as user quota.

Changing Grace Period:

To change the grace period for the soft limit, run the following command:

$ sudo edquota -t

Now, change the number of days for block and inode grace period depending on your need. Once you’re done, save the file.

Generating Quota Reports:

To generate quota usage reports, run the following command:

$ sudo repquota -aug

As you can see, the user and group quota report is generated.

If you only want to generate user quota reports, then run the following command:

$ sudo repquota -au

The same way, if you only want to generate group quota reports, then run the following command:

$ sudo repquota -ag

So, that’s how you use quota on Ubuntu. Thanks for reading this article.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Hướng dẫn hack băng thông 4G Viettell bằng Cách tạo Server V2ray Dùng Data 4G miễn phí

V2ray là gì? V2ray là một phần mềm giúp bạn tạo ra khả năng kết nối mạng riêng tư dựa vào cách...
27/05/2021

Check Ubuntu Version

Often people new to Ubuntu need to know specific information about the operating system they are running. They have questions...
28/12/2020

Install Samba on Ubuntu

Ubuntu 16.04 as an SMB File Server Linux belongs in the server space, and as a sysadmin, one of the most common tasks is...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Reliable IPv4 and IPv6 Subnet Rental Services: The Perfect Solution for Global Businesses
23/12/2024

Tìm Hiểu Về Thuê Proxy US – Lợi Ích và Cách Sử Dụng Hiệu Quả
11/12/2024

Mua Proxy V6 Nuôi Facebook Spam Hiệu Quả Tại Onetcomvn
03/06/2024

Hướng dẫn cách sử dụng ProxyDroid để duyệt web ẩn danh
03/06/2024

Mua proxy Onet uy tín tại Onet.com.vn
03/06/2024