Debian booting to black screen
Clash Royale CLAN TAG#URR8PPP
I just finished upgrading to Jessie from Wheezy, and after a reboot, my system ran grub, goes through some checks and stuff after loading the kernel. It then says:
Welcome Debian 8 servername Tty1 Login:
But the screen goes black before I can do anything. I can enter recovery mode, and have been trying some things.
I ran
apt-get update
andupgrade
and it shows no new downloadsI have tried running grub with
nomodeset
Drivers installed on my GPU are
gflrx
In journalctl -xb
I see this error:
Failed at step EXEC spawning /bin/plymouth
This guide says to modify my fstab
file, but I only have three devices in there: /
, usr
, and swap
. None of those correspond to a CD drive.
I can also run as sysvinit which looks like it's running fine, then gets to apache2 and the screen goes black.
What should I do?
debian fstab
add a comment |
I just finished upgrading to Jessie from Wheezy, and after a reboot, my system ran grub, goes through some checks and stuff after loading the kernel. It then says:
Welcome Debian 8 servername Tty1 Login:
But the screen goes black before I can do anything. I can enter recovery mode, and have been trying some things.
I ran
apt-get update
andupgrade
and it shows no new downloadsI have tried running grub with
nomodeset
Drivers installed on my GPU are
gflrx
In journalctl -xb
I see this error:
Failed at step EXEC spawning /bin/plymouth
This guide says to modify my fstab
file, but I only have three devices in there: /
, usr
, and swap
. None of those correspond to a CD drive.
I can also run as sysvinit which looks like it's running fine, then gets to apache2 and the screen goes black.
What should I do?
debian fstab
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17
add a comment |
I just finished upgrading to Jessie from Wheezy, and after a reboot, my system ran grub, goes through some checks and stuff after loading the kernel. It then says:
Welcome Debian 8 servername Tty1 Login:
But the screen goes black before I can do anything. I can enter recovery mode, and have been trying some things.
I ran
apt-get update
andupgrade
and it shows no new downloadsI have tried running grub with
nomodeset
Drivers installed on my GPU are
gflrx
In journalctl -xb
I see this error:
Failed at step EXEC spawning /bin/plymouth
This guide says to modify my fstab
file, but I only have three devices in there: /
, usr
, and swap
. None of those correspond to a CD drive.
I can also run as sysvinit which looks like it's running fine, then gets to apache2 and the screen goes black.
What should I do?
debian fstab
I just finished upgrading to Jessie from Wheezy, and after a reboot, my system ran grub, goes through some checks and stuff after loading the kernel. It then says:
Welcome Debian 8 servername Tty1 Login:
But the screen goes black before I can do anything. I can enter recovery mode, and have been trying some things.
I ran
apt-get update
andupgrade
and it shows no new downloadsI have tried running grub with
nomodeset
Drivers installed on my GPU are
gflrx
In journalctl -xb
I see this error:
Failed at step EXEC spawning /bin/plymouth
This guide says to modify my fstab
file, but I only have three devices in there: /
, usr
, and swap
. None of those correspond to a CD drive.
I can also run as sysvinit which looks like it's running fine, then gets to apache2 and the screen goes black.
What should I do?
debian fstab
debian fstab
edited Apr 13 '17 at 12:36
Community♦
1
1
asked Apr 3 '15 at 16:13
bforcerbforcer
113
113
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17
add a comment |
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17
add a comment |
1 Answer
1
active
oldest
votes
Not quite a solution, but temporary workaround which enabled me to reach the login screen:
- in GRUB, open command line and check which modules are loaded with
lsmod
- load the normal module (strangely enough, for me it worked after i had tried to load with both
insmod (hd0,5)/boot/grub/normal.mod
andinsmod normal
) - return to normal grub module with
normal
and select the OS you wish to load - overwrite GRUB settings
Haven't managed to locate the root cause of this issue though but it vaguely hints that something messes up GRUB.
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%2f194245%2fdebian-booting-to-black-screen%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
Not quite a solution, but temporary workaround which enabled me to reach the login screen:
- in GRUB, open command line and check which modules are loaded with
lsmod
- load the normal module (strangely enough, for me it worked after i had tried to load with both
insmod (hd0,5)/boot/grub/normal.mod
andinsmod normal
) - return to normal grub module with
normal
and select the OS you wish to load - overwrite GRUB settings
Haven't managed to locate the root cause of this issue though but it vaguely hints that something messes up GRUB.
add a comment |
Not quite a solution, but temporary workaround which enabled me to reach the login screen:
- in GRUB, open command line and check which modules are loaded with
lsmod
- load the normal module (strangely enough, for me it worked after i had tried to load with both
insmod (hd0,5)/boot/grub/normal.mod
andinsmod normal
) - return to normal grub module with
normal
and select the OS you wish to load - overwrite GRUB settings
Haven't managed to locate the root cause of this issue though but it vaguely hints that something messes up GRUB.
add a comment |
Not quite a solution, but temporary workaround which enabled me to reach the login screen:
- in GRUB, open command line and check which modules are loaded with
lsmod
- load the normal module (strangely enough, for me it worked after i had tried to load with both
insmod (hd0,5)/boot/grub/normal.mod
andinsmod normal
) - return to normal grub module with
normal
and select the OS you wish to load - overwrite GRUB settings
Haven't managed to locate the root cause of this issue though but it vaguely hints that something messes up GRUB.
Not quite a solution, but temporary workaround which enabled me to reach the login screen:
- in GRUB, open command line and check which modules are loaded with
lsmod
- load the normal module (strangely enough, for me it worked after i had tried to load with both
insmod (hd0,5)/boot/grub/normal.mod
andinsmod normal
) - return to normal grub module with
normal
and select the OS you wish to load - overwrite GRUB settings
Haven't managed to locate the root cause of this issue though but it vaguely hints that something messes up GRUB.
answered Apr 15 '17 at 13:20
paranaparana
112
112
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%2f194245%2fdebian-booting-to-black-screen%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
Do you have Plymouth installed? wiki.debian.org/plymouth
– Emmanuel Rosa
Apr 15 '17 at 18:17