How To Install quota on Rocky Linux 8

In this tutorial we learn how to install quota on Rocky Linux 8. quota is System administration tools for monitoring users’ disk usage

Introduction

In this tutorial we learn how to install quota on Rocky Linux 8.

What is quota

The quota package contains system administration tools for monitoring and limiting user and or group disk usage per file system.

We can use yum or dnf to install quota on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install quota.

Install quota on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install quota using dnf by running the following command:

sudo dnf -y install quota

Install quota on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install quota using yum by running the following command:

sudo yum -y install quota

How To Uninstall quota on Rocky Linux 8

To uninstall only the quota package we can use the following command:

sudo dnf remove quota

quota Package Contents on Rocky Linux 8

/usr/bin/quota
/usr/bin/quotasync
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/e06dcd65dd5d204b0fe230b7a2e68d08631368
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/62513f4b2ff1a8139475133fc49aaaca7a04da
/usr/lib/.build-id/0b/fd6e4538271a0b8e7a62dc5a014d096153973a
/usr/lib/.build-id/0e
/usr/lib/.build-id/0e/276d94703ea2e27ced4b16c5bc99e2ede6482d
/usr/lib/.build-id/1e
/usr/lib/.build-id/1e/1a0a9a73aff477f31073f38c261f888766a168
/usr/lib/.build-id/41
/usr/lib/.build-id/41/cc2be2ef7b3d0cb11ca1f5370eaee9a1b7e27d
/usr/lib/.build-id/5c
/usr/lib/.build-id/5c/cf36b747a610f82f95fb5e775a22a1c1f936aa
/usr/lib/.build-id/82
/usr/lib/.build-id/82/a94e55f573e902f23d179f5ef2ef81a38be1d5
/usr/lib/.build-id/a4
/usr/lib/.build-id/a4/10425599840f136e39f9e80517ee4dccd3ca69
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/cbd1309582d7c7f8f06ebb926d9188045ac029
/usr/lib/.build-id/b4
/usr/lib/.build-id/b4/f3098beef38bf6e5332ba68f37737081da17fa
/usr/lib/.build-id/be
/usr/lib/.build-id/be/311e06a840430ce70f71ead9f25da0ce898a19
/usr/lib/.build-id/da
/usr/lib/.build-id/da/eeaaf3ec6230860d1e28a5309b64835ad01fbd
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/20887c370515e71a6954bcf4091f6c1de731d7
/usr/sbin/convertquota
/usr/sbin/edquota
/usr/sbin/quot
/usr/sbin/quotacheck
/usr/sbin/quotaoff
/usr/sbin/quotaon
/usr/sbin/quotastats
/usr/sbin/repquota
/usr/sbin/setquota
/usr/sbin/xqmstats
/usr/share/doc/quota
/usr/share/doc/quota/Changelog
/usr/share/man/man1/quota.1.gz
/usr/share/man/man1/quotasync.1.gz
/usr/share/man/man8/convertquota.8.gz
/usr/share/man/man8/edquota.8.gz
/usr/share/man/man8/quot.8.gz
/usr/share/man/man8/quotacheck.8.gz
/usr/share/man/man8/quotaoff.8.gz
/usr/share/man/man8/quotaon.8.gz
/usr/share/man/man8/quotastats.8.gz
/usr/share/man/man8/repquota.8.gz
/usr/share/man/man8/setquota.8.gz
/usr/share/man/man8/xqmstats.8.gz

References

Summary

In this tutorial we learn how to install quota on Rocky Linux 8 using yum and dnf.