Does the order in which devices are listed in fstab matter?
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
add a comment |
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
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
add a comment |
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
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
mount fstab
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
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%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
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.
add a comment |
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.
add a comment |
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.
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.
edited Mar 14 at 6:56
Community♦
1
1
answered Mar 14 at 6:36
guivercguiverc
4,99121623
4,99121623
add a comment |
add a comment |
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.
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%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
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
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