Does the order in which devices are listed in fstab matter?












1















All the information I find about the fstab file shows that the units are listed chronologically.



sda1
sda2
sdb1
etc...


My fstab file is listed as follows:



sda2 (root)
sda1 (efi)
sda3 (swap)


Computer works, but starts a little slow, it takes a long time to connect sda2.



Therefore, I wonder how the devices are listed in the fstab file
has some significance










share|improve this question




















  • 1





    You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

    – Melebius
    Mar 14 at 6:39






  • 2





    Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

    – PerlDuck
    Mar 14 at 12:15
















1















All the information I find about the fstab file shows that the units are listed chronologically.



sda1
sda2
sdb1
etc...


My fstab file is listed as follows:



sda2 (root)
sda1 (efi)
sda3 (swap)


Computer works, but starts a little slow, it takes a long time to connect sda2.



Therefore, I wonder how the devices are listed in the fstab file
has some significance










share|improve this question




















  • 1





    You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

    – Melebius
    Mar 14 at 6:39






  • 2





    Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

    – PerlDuck
    Mar 14 at 12:15














1












1








1








All the information I find about the fstab file shows that the units are listed chronologically.



sda1
sda2
sdb1
etc...


My fstab file is listed as follows:



sda2 (root)
sda1 (efi)
sda3 (swap)


Computer works, but starts a little slow, it takes a long time to connect sda2.



Therefore, I wonder how the devices are listed in the fstab file
has some significance










share|improve this question
















All the information I find about the fstab file shows that the units are listed chronologically.



sda1
sda2
sdb1
etc...


My fstab file is listed as follows:



sda2 (root)
sda1 (efi)
sda3 (swap)


Computer works, but starts a little slow, it takes a long time to connect sda2.



Therefore, I wonder how the devices are listed in the fstab file
has some significance







mount fstab






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 14 at 10:36









Community

1




1










asked Mar 14 at 6:27









Skalman65Skalman65

82




82








  • 1





    You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

    – Melebius
    Mar 14 at 6:39






  • 2





    Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

    – PerlDuck
    Mar 14 at 12:15














  • 1





    You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

    – Melebius
    Mar 14 at 6:39






  • 2





    Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

    – PerlDuck
    Mar 14 at 12:15








1




1





You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

– Melebius
Mar 14 at 6:39





You probably mean alphabetically rather than chronologically… If your root partition is slow to mount, there might be a problem with the filesystem but you provided too little information.

– Melebius
Mar 14 at 6:39




2




2





Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

– PerlDuck
Mar 14 at 12:15





Possible duplicate of Does order of mount operations matter when mounting into an existing mountpoint?

– PerlDuck
Mar 14 at 12:15










1 Answer
1






active

oldest

votes


















2














From man fstab (Lubuntu 19.04):




fstab - static information about the filesystems

The file fstab contains descriptive information about the filesystems the system can
mount. fstab is only read by programs, and not written; it is the duty of the system
administrator to properly create and maintain this file. The order of records in fstab is
important because fsck(8), mount(8), and umount(8) sequentially iterate through fstab
doing their thing.



If you had a separate /home (or other directory) partition, it'd be mounted on-top of /, so of course / should be listed first. This can be taken advantage of, though usually not with default fstab mounts.






share|improve this answer

























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    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: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    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%2faskubuntu.com%2fquestions%2f1125517%2fdoes-the-order-in-which-devices-are-listed-in-fstab-matter%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









    2














    From man fstab (Lubuntu 19.04):




    fstab - static information about the filesystems

    The file fstab contains descriptive information about the filesystems the system can
    mount. fstab is only read by programs, and not written; it is the duty of the system
    administrator to properly create and maintain this file. The order of records in fstab is
    important because fsck(8), mount(8), and umount(8) sequentially iterate through fstab
    doing their thing.



    If you had a separate /home (or other directory) partition, it'd be mounted on-top of /, so of course / should be listed first. This can be taken advantage of, though usually not with default fstab mounts.






    share|improve this answer






























      2














      From man fstab (Lubuntu 19.04):




      fstab - static information about the filesystems

      The file fstab contains descriptive information about the filesystems the system can
      mount. fstab is only read by programs, and not written; it is the duty of the system
      administrator to properly create and maintain this file. The order of records in fstab is
      important because fsck(8), mount(8), and umount(8) sequentially iterate through fstab
      doing their thing.



      If you had a separate /home (or other directory) partition, it'd be mounted on-top of /, so of course / should be listed first. This can be taken advantage of, though usually not with default fstab mounts.






      share|improve this answer




























        2












        2








        2







        From man fstab (Lubuntu 19.04):




        fstab - static information about the filesystems

        The file fstab contains descriptive information about the filesystems the system can
        mount. fstab is only read by programs, and not written; it is the duty of the system
        administrator to properly create and maintain this file. The order of records in fstab is
        important because fsck(8), mount(8), and umount(8) sequentially iterate through fstab
        doing their thing.



        If you had a separate /home (or other directory) partition, it'd be mounted on-top of /, so of course / should be listed first. This can be taken advantage of, though usually not with default fstab mounts.






        share|improve this answer















        From man fstab (Lubuntu 19.04):




        fstab - static information about the filesystems

        The file fstab contains descriptive information about the filesystems the system can
        mount. fstab is only read by programs, and not written; it is the duty of the system
        administrator to properly create and maintain this file. The order of records in fstab is
        important because fsck(8), mount(8), and umount(8) sequentially iterate through fstab
        doing their thing.



        If you had a separate /home (or other directory) partition, it'd be mounted on-top of /, so of course / should be listed first. This can be taken advantage of, though usually not with default fstab mounts.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 14 at 6:56









        Community

        1




        1










        answered Mar 14 at 6:36









        guivercguiverc

        4,99121623




        4,99121623






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • 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%2faskubuntu.com%2fquestions%2f1125517%2fdoes-the-order-in-which-devices-are-listed-in-fstab-matter%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







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局