Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Black Screen after choosing graphical install or text instal

Ask for help with issues regarding the Installations of the Debian O/S.
Post Reply
Message
Author
asymptoticallyconfus
Posts: 2
Joined: 2017-03-11 19:38

Black Screen after choosing graphical install or text instal

#1 Post by asymptoticallyconfus »

Hi, I put debian-8.7.1-amd64-DVD-1.iso on usb using unetbootin for windows. It boots into the installer fine but when I choose any of the install options the screen goes back and nothing happens. I formatted the usb using Fat32. This https://www.pcspecialist.co.uk/notebook ... nceIII-17/ is my laptop. Any help would be greatly appreciated. I did search for issues with black screen but they all seem to be related to booting debian rather than installing.

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Black Screen after choosing graphical install or text in

#2 Post by GarryRicketson »

on usb using unetbootin for windows
This "unetbootin" does not work for Debian.

You can use the 'dd' command, it will work better

Code: Select all

man dd
Example only:

Code: Select all

dd if=/home/user/debian.iso  of=/dev/sdb  bs=4M; sync[/url]

You need to use the 'lsblk' command to determine the /dev/sdx , it may 'be sdb, sdc,..etc,
[code]$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 698.7G  0 disk
├─sda1   8:1    0  34.3G  0 part
├─sda2   8:2    0     1K  0 part
├─sda3   8:3    0  34.4G  0 part
├─sda4   8:4    0 628.1G  0 part /
└─sda5   8:5    0   1.9G  0 part [SWAP]
sr0     11:0    1  1024M  0 rom 
sdb      8:16   1  58.5G  0 disk
└─sdb1   8:17   1  58.5G  0 part
In this example above, the usb device is "sdb",
for more details on 'lsblk'

Code: Select all

man lsblk

Segfault
Posts: 993
Joined: 2005-09-24 12:24
Has thanked: 5 times
Been thanked: 17 times

Re: Black Screen after choosing graphical install or text in

#3 Post by Segfault »

7th gen Intel and nVidia NV130, I doubt Debian 8 will work on it out of box. Actually, nouveau does not support this card yet and no Linux ships with blob as default driver.

User avatar
stevepusser
Posts: 12930
Joined: 2009-10-06 05:53
Has thanked: 41 times
Been thanked: 71 times

Re: Black Screen after choosing graphical install or text in

#4 Post by stevepusser »

Except if all you have is Windows, how are you going to use "dd"? :(

In that situation, Rufus or Etcher work quite well.

If your machine is 2015 or newer vintage, there is also a chance that Jessie won't support the video well, if at all, out of the box. : (

Edit: OK, Kaby Lake graphics. If it's like my Skylake (they share a similar architecture), you can get to a GUI on a desktop that will work with the crippled graphics, like lxde or xfce, then upgrade what you need from jessie-backports: http://forums.debian.net/viewtopic.php?f=16&t=131611 If you depend on wi-fi for your connection, you will need a firmware package to get it to work, and there's a chance that the driver will only be in the kernel you are trying to upgrade to (catch-22!)

Once you have full 3D acceleration, you can add GNOME if that's the desktop you were really going for.

Your other option is to try the next upcoming Debian release, Stretch, which is currently in its final form and now just getting bugs squished.
MX Linux packager and developer

User avatar
phenest
Posts: 1702
Joined: 2010-03-09 09:38
Location: The Matrix

Re: Black Screen after choosing graphical install or text in

#5 Post by phenest »

asymptoticallyconfus wrote:It boots into the installer fine but when I choose any of the install options the screen goes back and nothing happens.
How long does it stay black for? I have a computer that does that, and then continues again after a couple of minutes. What happens if you simply wait for a few minutes?
ASRock H77 Pro4-M i7 3770K - 32GB RAM - Pioneer BDR-209D

asymptoticallyconfus
Posts: 2
Joined: 2017-03-11 19:38

Re: Black Screen after choosing graphical install or text in

#6 Post by asymptoticallyconfus »

stevepusser wrote:Except if all you have is Windows, how are you going to use "dd"? :(

In that situation, Rufus or Etcher work quite well.

If your machine is 2015 or newer vintage, there is also a chance that Jessie won't support the video well, if at all, out of the box. : (

Edit: OK, Kaby Lake graphics. If it's like my Skylake (they share a similar architecture), you can get to a GUI on a desktop that will work with the crippled graphics, like lxde or xfce, then upgrade what you need from jessie-backports: http://forums.debian.net/viewtopic.php?f=16&t=131611 If you depend on wi-fi for your connection, you will need a firmware package to get it to work, and there's a chance that the driver will only be in the kernel you are trying to upgrade to (catch-22!)

Once you have full 3D acceleration, you can add GNOME if that's the desktop you were really going for.

Your other option is to try the next upcoming Debian release, Stretch, which is currently in its final form and now just getting bugs squished.
Thanks for the info, I will try yours and phenests suggestions.

Post Reply