xfs directory quota doesn't work
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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
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
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♦
44.9k1164147
44.9k1164147
asked Aug 21 '15 at 8:54
simon_xiasimon_xia
1011
1011
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,00651216
1,00651216
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
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