xfs directory quota doesn't work2019 Community Moderator ElectionDisk quota exceeded; truncate not bringing quota back downxfs quota not reliableQuota utilitiesXFS increase sizeQuota cannot impose its rules!Why Labelling an XFS device doesn't accept spacesHow do I set up user quota for /var/www?xfs fllesystem remount doesn't work when modify quota configuresetting a quota on zfs doesn't workCentOS7 QUOTA xfs
Can Mathematica be used to create an Artistic 3D extrusion from a 2D image and wrap a line pattern around it?
Can a bounded number sequence be strictly ascending?
Leftbar without indentation
Why does Captain Marvel assume the people on this planet know this?
Accountant/ lawyer will not return my call
How do I express some one as a black person?
Do I really need to have a scientific explanation for my premise?
Intuition behind counterexample of Euler's sum of powers conjecture
How do you like my writing?
How can I ensure my trip to the UK will not have to be cancelled because of Brexit?
How did Alan Turing break the enigma code using the hint given by the lady in the bar?
Why was Goose renamed from Chewie for the Captain Marvel film?
PTIJ: where are Tzafra and Urta located?
GPLv2 - licensing for commercial use
Is Gradient Descent central to every optimizer?
Try Catch Block Affecting a Variable in an Enclosing Scope
Why does the negative sign arise in this thermodynamic relation?
Set and print content of environment variable in cmd.exe subshell?
Do items de-spawn in Diablo?
What's the "normal" opposite of flautando?
How to create a hard link to an inode (ext4)?
Accepted offer letter, position changed
Virginia employer terminated employee and wants signing bonus returned
Meaning of ちはース as an exclamation
xfs directory quota doesn't work
2019 Community Moderator ElectionDisk quota exceeded; truncate not bringing quota back downxfs quota not reliableQuota utilitiesXFS increase sizeQuota cannot impose its rules!Why Labelling an XFS device doesn't accept spacesHow do I set up user quota for /var/www?xfs fllesystem remount doesn't work when modify quota configuresetting a quota on zfs doesn't workCentOS7 QUOTA xfs
I have two tasks and I want to run them in different directory and limit the directory's size. I use xfs's project quota to achieve this.
I follow the steps from here:https://solidlinux.wordpress.com/2012/12/09/xfs-quota-managament/
here is detail of my two config files
/etc/projects:
11:/home/xiameng.xm/xfs_dir/task1
12:/home/xiameng.xm/xfs_dir/task2
/etc/projid:
task1:11
task2:12
and here is my step:
touch test_xfs
dd if=/dev/zero of=test_xfs bs=100M count=1
mkfs.xfs test_xfs
mkdir xfs_dir
mount test_xfs ./xfs_dir -o pquota,loop
xfs_quota -xc 'project –s task1' /home/xiameng.xm/xfs_dir
xfs_quota -xc 'project –s task2' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=2m task1' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=10m task2' /home/xiameng.xm/xfs_dir
here is the output of xfs_quota -x -c 'report /home/xiameng.xm/xfs_dir'
Project quota on /home/xiameng.xm/xfs_dir (/dev/loop1)
Blocks
Project ID Used Soft Hard Warn/Grace
---------- --------------------------------------------------
task1 0 0 2048 00 [--------]
task2 0 0 10240 00 [--------]
the question is no mater how large I create a file in ./xfs_dir/task1 or ./xfs_dir/task2, it succeeds!
The quota limit doesn't work!
directory xfs quota
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have two tasks and I want to run them in different directory and limit the directory's size. I use xfs's project quota to achieve this.
I follow the steps from here:https://solidlinux.wordpress.com/2012/12/09/xfs-quota-managament/
here is detail of my two config files
/etc/projects:
11:/home/xiameng.xm/xfs_dir/task1
12:/home/xiameng.xm/xfs_dir/task2
/etc/projid:
task1:11
task2:12
and here is my step:
touch test_xfs
dd if=/dev/zero of=test_xfs bs=100M count=1
mkfs.xfs test_xfs
mkdir xfs_dir
mount test_xfs ./xfs_dir -o pquota,loop
xfs_quota -xc 'project –s task1' /home/xiameng.xm/xfs_dir
xfs_quota -xc 'project –s task2' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=2m task1' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=10m task2' /home/xiameng.xm/xfs_dir
here is the output of xfs_quota -x -c 'report /home/xiameng.xm/xfs_dir'
Project quota on /home/xiameng.xm/xfs_dir (/dev/loop1)
Blocks
Project ID Used Soft Hard Warn/Grace
---------- --------------------------------------------------
task1 0 0 2048 00 [--------]
task2 0 0 10240 00 [--------]
the question is no mater how large I create a file in ./xfs_dir/task1 or ./xfs_dir/task2, it succeeds!
The quota limit doesn't work!
directory xfs quota
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13
add a comment |
I have two tasks and I want to run them in different directory and limit the directory's size. I use xfs's project quota to achieve this.
I follow the steps from here:https://solidlinux.wordpress.com/2012/12/09/xfs-quota-managament/
here is detail of my two config files
/etc/projects:
11:/home/xiameng.xm/xfs_dir/task1
12:/home/xiameng.xm/xfs_dir/task2
/etc/projid:
task1:11
task2:12
and here is my step:
touch test_xfs
dd if=/dev/zero of=test_xfs bs=100M count=1
mkfs.xfs test_xfs
mkdir xfs_dir
mount test_xfs ./xfs_dir -o pquota,loop
xfs_quota -xc 'project –s task1' /home/xiameng.xm/xfs_dir
xfs_quota -xc 'project –s task2' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=2m task1' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=10m task2' /home/xiameng.xm/xfs_dir
here is the output of xfs_quota -x -c 'report /home/xiameng.xm/xfs_dir'
Project quota on /home/xiameng.xm/xfs_dir (/dev/loop1)
Blocks
Project ID Used Soft Hard Warn/Grace
---------- --------------------------------------------------
task1 0 0 2048 00 [--------]
task2 0 0 10240 00 [--------]
the question is no mater how large I create a file in ./xfs_dir/task1 or ./xfs_dir/task2, it succeeds!
The quota limit doesn't work!
directory xfs quota
I have two tasks and I want to run them in different directory and limit the directory's size. I use xfs's project quota to achieve this.
I follow the steps from here:https://solidlinux.wordpress.com/2012/12/09/xfs-quota-managament/
here is detail of my two config files
/etc/projects:
11:/home/xiameng.xm/xfs_dir/task1
12:/home/xiameng.xm/xfs_dir/task2
/etc/projid:
task1:11
task2:12
and here is my step:
touch test_xfs
dd if=/dev/zero of=test_xfs bs=100M count=1
mkfs.xfs test_xfs
mkdir xfs_dir
mount test_xfs ./xfs_dir -o pquota,loop
xfs_quota -xc 'project –s task1' /home/xiameng.xm/xfs_dir
xfs_quota -xc 'project –s task2' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=2m task1' /home/xiameng.xm/xfs_dir
xfs_quota -x -c 'limit -p bhard=10m task2' /home/xiameng.xm/xfs_dir
here is the output of xfs_quota -x -c 'report /home/xiameng.xm/xfs_dir'
Project quota on /home/xiameng.xm/xfs_dir (/dev/loop1)
Blocks
Project ID Used Soft Hard Warn/Grace
---------- --------------------------------------------------
task1 0 0 2048 00 [--------]
task2 0 0 10240 00 [--------]
the question is no mater how large I create a file in ./xfs_dir/task1 or ./xfs_dir/task2, it succeeds!
The quota limit doesn't work!
directory xfs quota
directory xfs quota
edited Sep 9 '16 at 2:33
Jeff Schaller
43.3k1159139
43.3k1159139
asked Aug 21 '15 at 8:54
simon_xiasimon_xia
1011
1011
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13
add a comment |
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13
add a comment |
1 Answer
1
active
oldest
votes
We ran into the identical issue. The problem was that we failed to initialize the mount point with the project using:
xfs_quota -x -c 'project -s yourProjectName' yourMountPoint
As soon as we did this, the xfs_quota report successfully reported the Used space under the project path.
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%2f224606%2fxfs-directory-quota-doesnt-work%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
We ran into the identical issue. The problem was that we failed to initialize the mount point with the project using:
xfs_quota -x -c 'project -s yourProjectName' yourMountPoint
As soon as we did this, the xfs_quota report successfully reported the Used space under the project path.
add a comment |
We ran into the identical issue. The problem was that we failed to initialize the mount point with the project using:
xfs_quota -x -c 'project -s yourProjectName' yourMountPoint
As soon as we did this, the xfs_quota report successfully reported the Used space under the project path.
add a comment |
We ran into the identical issue. The problem was that we failed to initialize the mount point with the project using:
xfs_quota -x -c 'project -s yourProjectName' yourMountPoint
As soon as we did this, the xfs_quota report successfully reported the Used space under the project path.
We ran into the identical issue. The problem was that we failed to initialize the mount point with the project using:
xfs_quota -x -c 'project -s yourProjectName' yourMountPoint
As soon as we did this, the xfs_quota report successfully reported the Used space under the project path.
edited Feb 19 '18 at 21:07
Pierre.Vriens
1,00051115
1,00051115
answered Feb 19 '18 at 20:12
Gregg LeichtmanGregg Leichtman
1
1
add a comment |
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%2f224606%2fxfs-directory-quota-doesnt-work%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
-directory, quota, xfs
If I understand your commands correctly, you set quotas of 2 megabytes and 10 megabytes on a filesystem with a capacity of only 1 megabyte. How large are the files that you are able to create in the filesystem?
– Mark Plotnick
Aug 21 '15 at 9:05
@MarkPlotnick but no matter how large the file in ./task1 , the used is always 0
– simon_xia
Aug 21 '15 at 9:13