user1, while in his home directory, is attempting to run the following command in his home directory: cp bigfile
verybig
The system displays the following error:
cp: cannot create verybig: Disc quota exceeded
Your initial troubleshooting shows that the df -h command indicates he is at 100% capacity. What command
would you use to increase the disk space available to the user?
A.
zfs get quota rpool/export/home/user1
B.
zfs userused@user1
C.
zfs quota=none /rpool/export/home/user1
D.
df -h | grep user1
E.
zfs set quota=none /rpool/export/home/user1
Explanation:
ZFS quotas can be set and displayed by using the zfs set and zfs get commands.
We can remove the quota restriction by setting to quota to none.