not syncing vfs unable to mount root fs on unknown-block(0 0)
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I had a windows10 and Manjaro on my laptop and everything was Ok.
last day I've installed Kali Linux in another partition. It has installed correctly and it works fine.
But the problem is when I want to boot my Manjaro. I select Manjaro on the grub menu but this is the screen I see.
And this is the Error:
not syncing vfs unable to mount root fs on unknown-block(0 0)
How can I fix the problem?
linux kali-linux grub2 grub manjaro
add a comment |Â
up vote
0
down vote
favorite
I had a windows10 and Manjaro on my laptop and everything was Ok.
last day I've installed Kali Linux in another partition. It has installed correctly and it works fine.
But the problem is when I want to boot my Manjaro. I select Manjaro on the grub menu but this is the screen I see.
And this is the Error:
not syncing vfs unable to mount root fs on unknown-block(0 0)
How can I fix the problem?
linux kali-linux grub2 grub manjaro
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I had a windows10 and Manjaro on my laptop and everything was Ok.
last day I've installed Kali Linux in another partition. It has installed correctly and it works fine.
But the problem is when I want to boot my Manjaro. I select Manjaro on the grub menu but this is the screen I see.
And this is the Error:
not syncing vfs unable to mount root fs on unknown-block(0 0)
How can I fix the problem?
linux kali-linux grub2 grub manjaro
I had a windows10 and Manjaro on my laptop and everything was Ok.
last day I've installed Kali Linux in another partition. It has installed correctly and it works fine.
But the problem is when I want to boot my Manjaro. I select Manjaro on the grub menu but this is the screen I see.
And this is the Error:
not syncing vfs unable to mount root fs on unknown-block(0 0)
How can I fix the problem?
linux kali-linux grub2 grub manjaro
asked Jan 3 at 22:28
Milad Heydari
11
11
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
VFS: unable to mount root fs on unknown-block(0 0)
means the kernel was unable to mount the root filesystem. There are two common causes for this:
The kernel doesn't support the filesystem on the device. If you compiled your own kernel, this is usually because you specified the filesystem driver should be built as a module rather than a native part of the kernel; if you're using the distro's kernel, this is usually because you picked an exotic format for your root filesystem. In either case, don't do that.
The name of the root device passed to the kernel is wrong. This one can be tricky to fix: the best method I've found is to modify the kernel command line from the bootloader, making educated guesses about what the
root=
parameter should look like until I find something that works.
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. withlsblk
orblkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on thelinux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, runsudo update-grub
.
â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install theos-prober
packager and runupdate-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.
â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
VFS: unable to mount root fs on unknown-block(0 0)
means the kernel was unable to mount the root filesystem. There are two common causes for this:
The kernel doesn't support the filesystem on the device. If you compiled your own kernel, this is usually because you specified the filesystem driver should be built as a module rather than a native part of the kernel; if you're using the distro's kernel, this is usually because you picked an exotic format for your root filesystem. In either case, don't do that.
The name of the root device passed to the kernel is wrong. This one can be tricky to fix: the best method I've found is to modify the kernel command line from the bootloader, making educated guesses about what the
root=
parameter should look like until I find something that works.
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. withlsblk
orblkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on thelinux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, runsudo update-grub
.
â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install theos-prober
packager and runupdate-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.
â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
add a comment |Â
up vote
2
down vote
VFS: unable to mount root fs on unknown-block(0 0)
means the kernel was unable to mount the root filesystem. There are two common causes for this:
The kernel doesn't support the filesystem on the device. If you compiled your own kernel, this is usually because you specified the filesystem driver should be built as a module rather than a native part of the kernel; if you're using the distro's kernel, this is usually because you picked an exotic format for your root filesystem. In either case, don't do that.
The name of the root device passed to the kernel is wrong. This one can be tricky to fix: the best method I've found is to modify the kernel command line from the bootloader, making educated guesses about what the
root=
parameter should look like until I find something that works.
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. withlsblk
orblkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on thelinux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, runsudo update-grub
.
â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install theos-prober
packager and runupdate-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.
â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
add a comment |Â
up vote
2
down vote
up vote
2
down vote
VFS: unable to mount root fs on unknown-block(0 0)
means the kernel was unable to mount the root filesystem. There are two common causes for this:
The kernel doesn't support the filesystem on the device. If you compiled your own kernel, this is usually because you specified the filesystem driver should be built as a module rather than a native part of the kernel; if you're using the distro's kernel, this is usually because you picked an exotic format for your root filesystem. In either case, don't do that.
The name of the root device passed to the kernel is wrong. This one can be tricky to fix: the best method I've found is to modify the kernel command line from the bootloader, making educated guesses about what the
root=
parameter should look like until I find something that works.
VFS: unable to mount root fs on unknown-block(0 0)
means the kernel was unable to mount the root filesystem. There are two common causes for this:
The kernel doesn't support the filesystem on the device. If you compiled your own kernel, this is usually because you specified the filesystem driver should be built as a module rather than a native part of the kernel; if you're using the distro's kernel, this is usually because you picked an exotic format for your root filesystem. In either case, don't do that.
The name of the root device passed to the kernel is wrong. This one can be tricky to fix: the best method I've found is to modify the kernel command line from the bootloader, making educated guesses about what the
root=
parameter should look like until I find something that works.
answered Jan 3 at 23:38
Mark
1,87111324
1,87111324
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. withlsblk
orblkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on thelinux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, runsudo update-grub
.
â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install theos-prober
packager and runupdate-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.
â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
add a comment |Â
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. withlsblk
orblkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on thelinux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, runsudo update-grub
.
â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install theos-prober
packager and runupdate-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.
â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
thanks for the responding. but I don't know what to do now. I had Manjaro and everything was ok but after installing Kali the grub screen has changed and when I want to boot Manjaro I get the error. But It is ok for Kali. @Mark
â Milad Heydari
Jan 3 at 23:48
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. with
lsblk
or blkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on the linux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, run sudo update-grub
.â cas
Jan 4 at 2:13
kali has messed with your grub.cfg, and now the root= option for manjaro doesn't point to the majjaro root fs. easiest way to fix is to boot kali, list all the partitions (e.g. with
lsblk
or blkid
), write the device names that have a filesystem (e.g. ext4, xfs) except those that you know are used by kali on a notepad and then reboot into grub. edit the manjaro entry and change the root= option on the linux
line to one of the partitions. if that partition doesn't work, reboot and try again with another until you find it. when you boot manjaro, run sudo update-grub
.â cas
Jan 4 at 2:13
if it's not already installed in manjaro, you should install the
os-prober
packager and run update-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.â cas
Jan 4 at 2:14
if it's not already installed in manjaro, you should install the
os-prober
packager and run update-grub
again. this should allow update-grub to detect the kali partition and create a boot entry for it.â cas
Jan 4 at 2:14
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
ps: see unix.stackexchange.com/questions/399626/â¦
â cas
Jan 4 at 2:16
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f414655%2fnot-syncing-vfs-unable-to-mount-root-fs-on-unknown-block0-0%23new-answer', 'question_page');
);
Post as a guest
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
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
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