1. Create 4 users as below
a. Ravi with the default properties
b. Sunil whose primary group is sales
c. Tom whose primary group is sales
d. Rani whose secondary group is sales
2. Create a partition and mount it with users and group quotas enabled.
3. Apply quotas to the user Ravi and the group sales and check.
Create a Group
Example:- To create a group called as sales
[root@test119 ~]# groupadd sales
Create the Users
Example:- Create users and add some to sales group
[root@test119 ~]# useradd ravi
[root@test119 ~]# useradd -g sales sunil
[root@test119 ~]# useradd...