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










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!










share|improve this question
















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















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!










share|improve this question
















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













0












0








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!










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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










1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer
























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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.






    share|improve this answer





























      0














      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.






      share|improve this answer



























        0












        0








        0







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        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



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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

            Popular posts from this blog

            Creating 100m^2 grid automatically using QGIS?Creating grid constrained within polygon in QGIS?Createing polygon layer from point data using QGIS?Creating vector grid using QGIS?Creating grid polygons from coordinates using R or PythonCreating grid from spatio temporal point data?Creating fields in attributes table using other layers using QGISCreate .shp vector grid in QGISQGIS Creating 4km point grid within polygonsCreate a vector grid over a raster layerVector Grid Creates just one grid

            What is this called? Old film camera viewer?What makes a good film camera?What to do with an old film camera?What should one look for when buying a used film camera?What is the value and age of this pre-1967 Ricoh 35 mm camera?DSLR recommendation, question about old Canon 35mm film Camera & lensesCan anyone identify the silver rangefinder-style camera in this advertisement?What kind of a Polaroid 600-camera is this?Will an old film camera still work even when not used in a very long time?What is this camera / Can I develop the film?How to fit an action camera into antique (bellows) housing?What to check when buying used and old film bodies?

            Why is this plane circling around the Lucknow airport every day?Why do aircraft on Flight Radar 24 jump around randomly sometimes?What airport has this walkway over a taxiway?How does Chicago O'Hare's tower sequence aircraft at peak capacity?Which airport is featured in this Delta commercial?After a crash, for how long is the airport closed?Can a passenger plane stand still in the air, or hover at a fixed location above a ground?What are those trucks towing around, and why?What is this airport outside of Cairo, Egypt?Which US airport has the lowest circling MDH?What is this airport video?