how to disable 'scanning btrfs filesystem' at system startup
After upgrading from Ubuntu 12.04 to Ubuntu 14.04, I get a message "scanning for btrfs file systems
" at starting-up. I don't have any BTRFS filesystem. It delays the booting for about 15 seconds.
I tried to :
- blacklist the brtfs module in
/etc/modprobe.d
- remove
btrfs-tools
- renamed the executable
/sbin/btrfs
to p.e/sbin/btrfs.save
Now i get a blank screen for about 15 seconds until the splash screen appears.
14.04 startup btrfs scanning
add a comment |
After upgrading from Ubuntu 12.04 to Ubuntu 14.04, I get a message "scanning for btrfs file systems
" at starting-up. I don't have any BTRFS filesystem. It delays the booting for about 15 seconds.
I tried to :
- blacklist the brtfs module in
/etc/modprobe.d
- remove
btrfs-tools
- renamed the executable
/sbin/btrfs
to p.e/sbin/btrfs.save
Now i get a blank screen for about 15 seconds until the splash screen appears.
14.04 startup btrfs scanning
add a comment |
After upgrading from Ubuntu 12.04 to Ubuntu 14.04, I get a message "scanning for btrfs file systems
" at starting-up. I don't have any BTRFS filesystem. It delays the booting for about 15 seconds.
I tried to :
- blacklist the brtfs module in
/etc/modprobe.d
- remove
btrfs-tools
- renamed the executable
/sbin/btrfs
to p.e/sbin/btrfs.save
Now i get a blank screen for about 15 seconds until the splash screen appears.
14.04 startup btrfs scanning
After upgrading from Ubuntu 12.04 to Ubuntu 14.04, I get a message "scanning for btrfs file systems
" at starting-up. I don't have any BTRFS filesystem. It delays the booting for about 15 seconds.
I tried to :
- blacklist the brtfs module in
/etc/modprobe.d
- remove
btrfs-tools
- renamed the executable
/sbin/btrfs
to p.e/sbin/btrfs.save
Now i get a blank screen for about 15 seconds until the splash screen appears.
14.04 startup btrfs scanning
14.04 startup btrfs scanning
edited Jul 5 '14 at 20:45
Nischay
1,68421422
1,68421422
asked Jul 5 '14 at 19:58
user68480user68480
1613
1613
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Btrfs isn’t too much stable to be used as deafult file-system. Most Linux distributions, probable all, are still using ext4 as primary file-system. So, you can completely remove it from your computer. Try the given command:
sudo apt-get purge btrfs-tools
This command will remove btrfs-tools from your computer. You may need to wait some minutes to complete the process. Your initramfs should be updated automatically but if not happen, do it by this command:
sudo update-initramfs -ukall
Then make a grub update:
sudo update-grub
All is well. Now make a restart. Hope your Ubuntu will start successfully this time.
Reference: http://www.ugcoder.com/disable-scanning-for-btrfs-file-systems-in-ubuntu/
Let me know if you have some questions still.
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
add a comment |
On my system it is not the btrfs-scan which is causing the system to hang at boot. Instead there is a background-process trying to figure out where to find the swap-partition. My system has a SSD and plenty of RAM so it has no swap. This causes the background-process which is looking for a swap-partition to run into the void.
To change this, you can do the following:
In the file
/etc/initramfs-tools/conf.d/resume
change the statementRESUME=...
intoRESUME=none
After this update initramfs:
sudo update-initramfs -ukall
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%2f492108%2fhow-to-disable-scanning-btrfs-filesystem-at-system-startup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Btrfs isn’t too much stable to be used as deafult file-system. Most Linux distributions, probable all, are still using ext4 as primary file-system. So, you can completely remove it from your computer. Try the given command:
sudo apt-get purge btrfs-tools
This command will remove btrfs-tools from your computer. You may need to wait some minutes to complete the process. Your initramfs should be updated automatically but if not happen, do it by this command:
sudo update-initramfs -ukall
Then make a grub update:
sudo update-grub
All is well. Now make a restart. Hope your Ubuntu will start successfully this time.
Reference: http://www.ugcoder.com/disable-scanning-for-btrfs-file-systems-in-ubuntu/
Let me know if you have some questions still.
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
add a comment |
Btrfs isn’t too much stable to be used as deafult file-system. Most Linux distributions, probable all, are still using ext4 as primary file-system. So, you can completely remove it from your computer. Try the given command:
sudo apt-get purge btrfs-tools
This command will remove btrfs-tools from your computer. You may need to wait some minutes to complete the process. Your initramfs should be updated automatically but if not happen, do it by this command:
sudo update-initramfs -ukall
Then make a grub update:
sudo update-grub
All is well. Now make a restart. Hope your Ubuntu will start successfully this time.
Reference: http://www.ugcoder.com/disable-scanning-for-btrfs-file-systems-in-ubuntu/
Let me know if you have some questions still.
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
add a comment |
Btrfs isn’t too much stable to be used as deafult file-system. Most Linux distributions, probable all, are still using ext4 as primary file-system. So, you can completely remove it from your computer. Try the given command:
sudo apt-get purge btrfs-tools
This command will remove btrfs-tools from your computer. You may need to wait some minutes to complete the process. Your initramfs should be updated automatically but if not happen, do it by this command:
sudo update-initramfs -ukall
Then make a grub update:
sudo update-grub
All is well. Now make a restart. Hope your Ubuntu will start successfully this time.
Reference: http://www.ugcoder.com/disable-scanning-for-btrfs-file-systems-in-ubuntu/
Let me know if you have some questions still.
Btrfs isn’t too much stable to be used as deafult file-system. Most Linux distributions, probable all, are still using ext4 as primary file-system. So, you can completely remove it from your computer. Try the given command:
sudo apt-get purge btrfs-tools
This command will remove btrfs-tools from your computer. You may need to wait some minutes to complete the process. Your initramfs should be updated automatically but if not happen, do it by this command:
sudo update-initramfs -ukall
Then make a grub update:
sudo update-grub
All is well. Now make a restart. Hope your Ubuntu will start successfully this time.
Reference: http://www.ugcoder.com/disable-scanning-for-btrfs-file-systems-in-ubuntu/
Let me know if you have some questions still.
edited Nov 15 '15 at 15:38
answered Apr 8 '15 at 10:14
Md. Maksudur Rahman KhanMd. Maksudur Rahman Khan
469
469
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
add a comment |
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
Could you please include the essential parts of the answer here, and provide the link as a reference.
– Michael Lindman
Apr 8 '15 at 10:23
add a comment |
On my system it is not the btrfs-scan which is causing the system to hang at boot. Instead there is a background-process trying to figure out where to find the swap-partition. My system has a SSD and plenty of RAM so it has no swap. This causes the background-process which is looking for a swap-partition to run into the void.
To change this, you can do the following:
In the file
/etc/initramfs-tools/conf.d/resume
change the statementRESUME=...
intoRESUME=none
After this update initramfs:
sudo update-initramfs -ukall
add a comment |
On my system it is not the btrfs-scan which is causing the system to hang at boot. Instead there is a background-process trying to figure out where to find the swap-partition. My system has a SSD and plenty of RAM so it has no swap. This causes the background-process which is looking for a swap-partition to run into the void.
To change this, you can do the following:
In the file
/etc/initramfs-tools/conf.d/resume
change the statementRESUME=...
intoRESUME=none
After this update initramfs:
sudo update-initramfs -ukall
add a comment |
On my system it is not the btrfs-scan which is causing the system to hang at boot. Instead there is a background-process trying to figure out where to find the swap-partition. My system has a SSD and plenty of RAM so it has no swap. This causes the background-process which is looking for a swap-partition to run into the void.
To change this, you can do the following:
In the file
/etc/initramfs-tools/conf.d/resume
change the statementRESUME=...
intoRESUME=none
After this update initramfs:
sudo update-initramfs -ukall
On my system it is not the btrfs-scan which is causing the system to hang at boot. Instead there is a background-process trying to figure out where to find the swap-partition. My system has a SSD and plenty of RAM so it has no swap. This causes the background-process which is looking for a swap-partition to run into the void.
To change this, you can do the following:
In the file
/etc/initramfs-tools/conf.d/resume
change the statementRESUME=...
intoRESUME=none
After this update initramfs:
sudo update-initramfs -ukall
answered Jan 13 at 14:32
MichaelMichael
1
1
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%2f492108%2fhow-to-disable-scanning-btrfs-filesystem-at-system-startup%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