Can I 'yum remove quota' (CentOS 7)
Clash Royale CLAN TAG#URR8PPP
To avoid a long conversation explaining why I want to do this I will just cut straight to the chase.
To totally remove quotas can I simply
yum remove quota
And change
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 quota,seclabel,grpquota,usrquota,data=ordered,relatime,rw 0 1
to
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 seclabel,data=ordered,relatime,rw 0 1
centos quota
add a comment |
To avoid a long conversation explaining why I want to do this I will just cut straight to the chase.
To totally remove quotas can I simply
yum remove quota
And change
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 quota,seclabel,grpquota,usrquota,data=ordered,relatime,rw 0 1
to
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 seclabel,data=ordered,relatime,rw 0 1
centos quota
add a comment |
To avoid a long conversation explaining why I want to do this I will just cut straight to the chase.
To totally remove quotas can I simply
yum remove quota
And change
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 quota,seclabel,grpquota,usrquota,data=ordered,relatime,rw 0 1
to
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 seclabel,data=ordered,relatime,rw 0 1
centos quota
To avoid a long conversation explaining why I want to do this I will just cut straight to the chase.
To totally remove quotas can I simply
yum remove quota
And change
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 quota,seclabel,grpquota,usrquota,data=ordered,relatime,rw 0 1
to
UUID=ed9b61db-4055-4ecb-b0e0-bde888282ec7 / ext4 seclabel,data=ordered,relatime,rw 0 1
centos quota
centos quota
asked Mar 5 at 16:17
Ben EdwardsBen Edwards
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use quotaoff
to turn off filesystem quotas. Here is a link to the manpage for reference. The command you would want to execute would be the following:
quotaoff -a
This would turn off quotas for users and groups. To make sure this change is permanent you need to verify in your fstab
that the mounting options include noquota
. If it does there will be no quota system when the filesystem is mounted.
The command yum remove quota
would remove the quota package which is a tool that reports the quotas of all the filesystems.
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Usingquotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to runquotaon
. Remember to remount any filesystems that you edit the options infstab
.
– kemotep
Mar 5 at 23:37
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504533%2fcan-i-yum-remove-quota-centos-7%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use quotaoff
to turn off filesystem quotas. Here is a link to the manpage for reference. The command you would want to execute would be the following:
quotaoff -a
This would turn off quotas for users and groups. To make sure this change is permanent you need to verify in your fstab
that the mounting options include noquota
. If it does there will be no quota system when the filesystem is mounted.
The command yum remove quota
would remove the quota package which is a tool that reports the quotas of all the filesystems.
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Usingquotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to runquotaon
. Remember to remount any filesystems that you edit the options infstab
.
– kemotep
Mar 5 at 23:37
add a comment |
You can use quotaoff
to turn off filesystem quotas. Here is a link to the manpage for reference. The command you would want to execute would be the following:
quotaoff -a
This would turn off quotas for users and groups. To make sure this change is permanent you need to verify in your fstab
that the mounting options include noquota
. If it does there will be no quota system when the filesystem is mounted.
The command yum remove quota
would remove the quota package which is a tool that reports the quotas of all the filesystems.
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Usingquotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to runquotaon
. Remember to remount any filesystems that you edit the options infstab
.
– kemotep
Mar 5 at 23:37
add a comment |
You can use quotaoff
to turn off filesystem quotas. Here is a link to the manpage for reference. The command you would want to execute would be the following:
quotaoff -a
This would turn off quotas for users and groups. To make sure this change is permanent you need to verify in your fstab
that the mounting options include noquota
. If it does there will be no quota system when the filesystem is mounted.
The command yum remove quota
would remove the quota package which is a tool that reports the quotas of all the filesystems.
You can use quotaoff
to turn off filesystem quotas. Here is a link to the manpage for reference. The command you would want to execute would be the following:
quotaoff -a
This would turn off quotas for users and groups. To make sure this change is permanent you need to verify in your fstab
that the mounting options include noquota
. If it does there will be no quota system when the filesystem is mounted.
The command yum remove quota
would remove the quota package which is a tool that reports the quotas of all the filesystems.
edited Mar 5 at 17:00
answered Mar 5 at 16:51
kemotepkemotep
2,6983823
2,6983823
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Usingquotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to runquotaon
. Remember to remount any filesystems that you edit the options infstab
.
– kemotep
Mar 5 at 23:37
add a comment |
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Usingquotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to runquotaon
. Remember to remount any filesystems that you edit the options infstab
.
– kemotep
Mar 5 at 23:37
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
So I replace 'quota,seclabel,grpquota,usrquota' with 'noquota,seclabel'?
– Ben Edwards
Mar 5 at 22:52
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Using
quotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to run quotaon
. Remember to remount any filesystems that you edit the options in fstab
.– kemotep
Mar 5 at 23:37
From what I read, yes this should be the case. Here is a link to Red Hat documentation concerning managing disk quotas. Using
quotaoff
will disable them but keep in place the configuration so if you need to re-enable them you only need to run quotaon
. Remember to remount any filesystems that you edit the options in fstab
.– kemotep
Mar 5 at 23:37
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504533%2fcan-i-yum-remove-quota-centos-7%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown