Linux Mint Debian quits on boot
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I just upgraded Linux Mint Debian Edition with the up7 package.
The update manager failed initially (can't remember where...) so I ran sudo apt update, sudo apt dist-upgrade, sudo apt upgrade and sudo dpkg --configure -a.
Situation now: when I reboot and select the new kernel (3.10-2-amd64) from the grub menu, the following happens:
- This:
early console in decompress_kernel
Decompressing kernel... Parsing ELF ... done.
Booting the kernel.
[<...> Could not configure common clock.
Linux Mint splash screen appears.
The NVIDIA Screen appears.
I get this error message:
FAIL: startpar: service(s) returned failure: plymouth ... failed!
- The system quits.
Sometimes the first message will be shown twice with a login prompt in between, after which the system will quit.
Any ideas? I will be happy to boot into the old kernel and provide any output!
linux debian kernel linux-mint boot
add a comment |
I just upgraded Linux Mint Debian Edition with the up7 package.
The update manager failed initially (can't remember where...) so I ran sudo apt update, sudo apt dist-upgrade, sudo apt upgrade and sudo dpkg --configure -a.
Situation now: when I reboot and select the new kernel (3.10-2-amd64) from the grub menu, the following happens:
- This:
early console in decompress_kernel
Decompressing kernel... Parsing ELF ... done.
Booting the kernel.
[<...> Could not configure common clock.
Linux Mint splash screen appears.
The NVIDIA Screen appears.
I get this error message:
FAIL: startpar: service(s) returned failure: plymouth ... failed!
- The system quits.
Sometimes the first message will be shown twice with a login prompt in between, after which the system will quit.
Any ideas? I will be happy to boot into the old kernel and provide any output!
linux debian kernel linux-mint boot
add a comment |
I just upgraded Linux Mint Debian Edition with the up7 package.
The update manager failed initially (can't remember where...) so I ran sudo apt update, sudo apt dist-upgrade, sudo apt upgrade and sudo dpkg --configure -a.
Situation now: when I reboot and select the new kernel (3.10-2-amd64) from the grub menu, the following happens:
- This:
early console in decompress_kernel
Decompressing kernel... Parsing ELF ... done.
Booting the kernel.
[<...> Could not configure common clock.
Linux Mint splash screen appears.
The NVIDIA Screen appears.
I get this error message:
FAIL: startpar: service(s) returned failure: plymouth ... failed!
- The system quits.
Sometimes the first message will be shown twice with a login prompt in between, after which the system will quit.
Any ideas? I will be happy to boot into the old kernel and provide any output!
linux debian kernel linux-mint boot
I just upgraded Linux Mint Debian Edition with the up7 package.
The update manager failed initially (can't remember where...) so I ran sudo apt update, sudo apt dist-upgrade, sudo apt upgrade and sudo dpkg --configure -a.
Situation now: when I reboot and select the new kernel (3.10-2-amd64) from the grub menu, the following happens:
- This:
early console in decompress_kernel
Decompressing kernel... Parsing ELF ... done.
Booting the kernel.
[<...> Could not configure common clock.
Linux Mint splash screen appears.
The NVIDIA Screen appears.
I get this error message:
FAIL: startpar: service(s) returned failure: plymouth ... failed!
- The system quits.
Sometimes the first message will be shown twice with a login prompt in between, after which the system will quit.
Any ideas? I will be happy to boot into the old kernel and provide any output!
linux debian kernel linux-mint boot
linux debian kernel linux-mint boot
asked Sep 25 '13 at 9:25
trolle3000trolle3000
11326
11326
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Does sudo apt-get -f install help? Also have a look at the LMDE updates forum they seem to have screwed up with UP7, a lot of people are reporting problems. I am currently updating myself we'll see how it goes.
A common source of problems is the nvidia proprietary driver. This is compiled against your current kernel and can cause problems if the kernel changes. The normal recommendation is to remove it, then upgrade, then reinstall it.
Since you've already upgraded, I would try disabling the nvidia driver and switching to the open source nouveau. If that lets you boot, you can then reinstall the nvidia driver for your new kernel. Try these steps (adapted from here, I recommend you read that)
1.Boot into the old kernel, switch to a tty (CtrlAltF1) and log in.
Stop the mdm service and edit your
/etc/X11/xorg.confto usenouveau. Depending on your setup you might not be using thexorg.confbut/etc/X11/xorg.conf.d/20-nvidia.conf. If so, deleteand create a
/etc/X11/xorg.conf.d/20-nvidia.conf/etc/X11/xorg.conf.d/20-nouveau.confwith these contents:
Section "Device"
Identifier "Nvidia card"
Driver "nouveau"
EndSection
Un-blacklist
nouveau. Find where you have blacklisted it (which you have almost certainly done) and comment out the appropriate line:
$ grep nouv /etc/modprobe.d/*
/etc/modprobe.d/nvidia-kernel-common.conf:blacklist nouveau
So, on my system, I have it blacklisted in
/etc/modprobe.d/nvidia-kernel-common.confso I had to change that line to:
#blacklist nouveau
Reboot. If that solves things and you can now boot normally, reinstall the nvidia driver for the new kernel:
sudo apt-get install nvidia-kernel-dkms linux-headers
nvidia-settings nvidia-xconfig
sudo nvidia-xconfig
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
|
show 2 more comments
I don't know Mint but I had similar issue with Fedora 18 and 19 and nvidia.
My solution may help you get answers;
In my case turned out that the akmod-nvidia driver is not compatible with kernels newer than 3.9. (So 3.10 and 3.11)
I had to download the latest NVidia driver from NVidia (325.15), patch it and then install it.
The downside is that you'll have to rebuild the driver after a kernel update until the driver package is updated in the repo.
Here's a link to the description about patching the driver. (See Troubleshooting)
add a comment |
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
});
}
});
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%2funix.stackexchange.com%2fquestions%2f92278%2flinux-mint-debian-quits-on-boot%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
Does sudo apt-get -f install help? Also have a look at the LMDE updates forum they seem to have screwed up with UP7, a lot of people are reporting problems. I am currently updating myself we'll see how it goes.
A common source of problems is the nvidia proprietary driver. This is compiled against your current kernel and can cause problems if the kernel changes. The normal recommendation is to remove it, then upgrade, then reinstall it.
Since you've already upgraded, I would try disabling the nvidia driver and switching to the open source nouveau. If that lets you boot, you can then reinstall the nvidia driver for your new kernel. Try these steps (adapted from here, I recommend you read that)
1.Boot into the old kernel, switch to a tty (CtrlAltF1) and log in.
Stop the mdm service and edit your
/etc/X11/xorg.confto usenouveau. Depending on your setup you might not be using thexorg.confbut/etc/X11/xorg.conf.d/20-nvidia.conf. If so, deleteand create a
/etc/X11/xorg.conf.d/20-nvidia.conf/etc/X11/xorg.conf.d/20-nouveau.confwith these contents:
Section "Device"
Identifier "Nvidia card"
Driver "nouveau"
EndSection
Un-blacklist
nouveau. Find where you have blacklisted it (which you have almost certainly done) and comment out the appropriate line:
$ grep nouv /etc/modprobe.d/*
/etc/modprobe.d/nvidia-kernel-common.conf:blacklist nouveau
So, on my system, I have it blacklisted in
/etc/modprobe.d/nvidia-kernel-common.confso I had to change that line to:
#blacklist nouveau
Reboot. If that solves things and you can now boot normally, reinstall the nvidia driver for the new kernel:
sudo apt-get install nvidia-kernel-dkms linux-headers
nvidia-settings nvidia-xconfig
sudo nvidia-xconfig
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
|
show 2 more comments
Does sudo apt-get -f install help? Also have a look at the LMDE updates forum they seem to have screwed up with UP7, a lot of people are reporting problems. I am currently updating myself we'll see how it goes.
A common source of problems is the nvidia proprietary driver. This is compiled against your current kernel and can cause problems if the kernel changes. The normal recommendation is to remove it, then upgrade, then reinstall it.
Since you've already upgraded, I would try disabling the nvidia driver and switching to the open source nouveau. If that lets you boot, you can then reinstall the nvidia driver for your new kernel. Try these steps (adapted from here, I recommend you read that)
1.Boot into the old kernel, switch to a tty (CtrlAltF1) and log in.
Stop the mdm service and edit your
/etc/X11/xorg.confto usenouveau. Depending on your setup you might not be using thexorg.confbut/etc/X11/xorg.conf.d/20-nvidia.conf. If so, deleteand create a
/etc/X11/xorg.conf.d/20-nvidia.conf/etc/X11/xorg.conf.d/20-nouveau.confwith these contents:
Section "Device"
Identifier "Nvidia card"
Driver "nouveau"
EndSection
Un-blacklist
nouveau. Find where you have blacklisted it (which you have almost certainly done) and comment out the appropriate line:
$ grep nouv /etc/modprobe.d/*
/etc/modprobe.d/nvidia-kernel-common.conf:blacklist nouveau
So, on my system, I have it blacklisted in
/etc/modprobe.d/nvidia-kernel-common.confso I had to change that line to:
#blacklist nouveau
Reboot. If that solves things and you can now boot normally, reinstall the nvidia driver for the new kernel:
sudo apt-get install nvidia-kernel-dkms linux-headers
nvidia-settings nvidia-xconfig
sudo nvidia-xconfig
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
|
show 2 more comments
Does sudo apt-get -f install help? Also have a look at the LMDE updates forum they seem to have screwed up with UP7, a lot of people are reporting problems. I am currently updating myself we'll see how it goes.
A common source of problems is the nvidia proprietary driver. This is compiled against your current kernel and can cause problems if the kernel changes. The normal recommendation is to remove it, then upgrade, then reinstall it.
Since you've already upgraded, I would try disabling the nvidia driver and switching to the open source nouveau. If that lets you boot, you can then reinstall the nvidia driver for your new kernel. Try these steps (adapted from here, I recommend you read that)
1.Boot into the old kernel, switch to a tty (CtrlAltF1) and log in.
Stop the mdm service and edit your
/etc/X11/xorg.confto usenouveau. Depending on your setup you might not be using thexorg.confbut/etc/X11/xorg.conf.d/20-nvidia.conf. If so, deleteand create a
/etc/X11/xorg.conf.d/20-nvidia.conf/etc/X11/xorg.conf.d/20-nouveau.confwith these contents:
Section "Device"
Identifier "Nvidia card"
Driver "nouveau"
EndSection
Un-blacklist
nouveau. Find where you have blacklisted it (which you have almost certainly done) and comment out the appropriate line:
$ grep nouv /etc/modprobe.d/*
/etc/modprobe.d/nvidia-kernel-common.conf:blacklist nouveau
So, on my system, I have it blacklisted in
/etc/modprobe.d/nvidia-kernel-common.confso I had to change that line to:
#blacklist nouveau
Reboot. If that solves things and you can now boot normally, reinstall the nvidia driver for the new kernel:
sudo apt-get install nvidia-kernel-dkms linux-headers
nvidia-settings nvidia-xconfig
sudo nvidia-xconfig
Does sudo apt-get -f install help? Also have a look at the LMDE updates forum they seem to have screwed up with UP7, a lot of people are reporting problems. I am currently updating myself we'll see how it goes.
A common source of problems is the nvidia proprietary driver. This is compiled against your current kernel and can cause problems if the kernel changes. The normal recommendation is to remove it, then upgrade, then reinstall it.
Since you've already upgraded, I would try disabling the nvidia driver and switching to the open source nouveau. If that lets you boot, you can then reinstall the nvidia driver for your new kernel. Try these steps (adapted from here, I recommend you read that)
1.Boot into the old kernel, switch to a tty (CtrlAltF1) and log in.
Stop the mdm service and edit your
/etc/X11/xorg.confto usenouveau. Depending on your setup you might not be using thexorg.confbut/etc/X11/xorg.conf.d/20-nvidia.conf. If so, deleteand create a
/etc/X11/xorg.conf.d/20-nvidia.conf/etc/X11/xorg.conf.d/20-nouveau.confwith these contents:
Section "Device"
Identifier "Nvidia card"
Driver "nouveau"
EndSection
Un-blacklist
nouveau. Find where you have blacklisted it (which you have almost certainly done) and comment out the appropriate line:
$ grep nouv /etc/modprobe.d/*
/etc/modprobe.d/nvidia-kernel-common.conf:blacklist nouveau
So, on my system, I have it blacklisted in
/etc/modprobe.d/nvidia-kernel-common.confso I had to change that line to:
#blacklist nouveau
Reboot. If that solves things and you can now boot normally, reinstall the nvidia driver for the new kernel:
sudo apt-get install nvidia-kernel-dkms linux-headers
nvidia-settings nvidia-xconfig
sudo nvidia-xconfig
edited Sep 26 '13 at 16:59
answered Sep 25 '13 at 14:05
terdon♦terdon
133k33268448
133k33268448
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
|
show 2 more comments
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
Wow, there are many people reporting problems with UP7!
– trolle3000
Sep 25 '13 at 14:42
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
I think I'll check the UP forum and see if any solution appears that does not involve switching back and forth between Noveau and NVIDIA. If that really is the solution, I'd rather do a re-install. Appreciate the answer nonetheless!
– trolle3000
Sep 25 '13 at 14:43
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 this is not that complex actually. Just switch to nouveau once so you can boot and then reinstall the nvidia driver. You don't need to "switch back and forth" you only need to do this once.
– terdon♦
Sep 25 '13 at 14:44
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
@trolle3000 wow, I updated and had quite a bit of trouble. All sorted out now. Did you manage to boot on the nouveau driver?
– terdon♦
Sep 26 '13 at 1:40
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
haven't tried it yet;-) Did it work on your machine?
– trolle3000
Sep 26 '13 at 16:55
|
show 2 more comments
I don't know Mint but I had similar issue with Fedora 18 and 19 and nvidia.
My solution may help you get answers;
In my case turned out that the akmod-nvidia driver is not compatible with kernels newer than 3.9. (So 3.10 and 3.11)
I had to download the latest NVidia driver from NVidia (325.15), patch it and then install it.
The downside is that you'll have to rebuild the driver after a kernel update until the driver package is updated in the repo.
Here's a link to the description about patching the driver. (See Troubleshooting)
add a comment |
I don't know Mint but I had similar issue with Fedora 18 and 19 and nvidia.
My solution may help you get answers;
In my case turned out that the akmod-nvidia driver is not compatible with kernels newer than 3.9. (So 3.10 and 3.11)
I had to download the latest NVidia driver from NVidia (325.15), patch it and then install it.
The downside is that you'll have to rebuild the driver after a kernel update until the driver package is updated in the repo.
Here's a link to the description about patching the driver. (See Troubleshooting)
add a comment |
I don't know Mint but I had similar issue with Fedora 18 and 19 and nvidia.
My solution may help you get answers;
In my case turned out that the akmod-nvidia driver is not compatible with kernels newer than 3.9. (So 3.10 and 3.11)
I had to download the latest NVidia driver from NVidia (325.15), patch it and then install it.
The downside is that you'll have to rebuild the driver after a kernel update until the driver package is updated in the repo.
Here's a link to the description about patching the driver. (See Troubleshooting)
I don't know Mint but I had similar issue with Fedora 18 and 19 and nvidia.
My solution may help you get answers;
In my case turned out that the akmod-nvidia driver is not compatible with kernels newer than 3.9. (So 3.10 and 3.11)
I had to download the latest NVidia driver from NVidia (325.15), patch it and then install it.
The downside is that you'll have to rebuild the driver after a kernel update until the driver package is updated in the repo.
Here's a link to the description about patching the driver. (See Troubleshooting)
edited 2 hours ago
Rui F Ribeiro
41.9k1483142
41.9k1483142
answered Sep 25 '13 at 15:09
falcofalco
337
337
add a comment |
add a comment |
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.
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%2funix.stackexchange.com%2fquestions%2f92278%2flinux-mint-debian-quits-on-boot%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