I installed debian without problems. I chose xfce as GUI. And i have internet connection. I restarted when the installation was complete. But the login screen does not appear. Screen is completely black. There is only one flashing dash. I looked for errors using this command:
less /var/log/Xorg.0.log
And i got the below errors:
EE open /dev/dri/card0: No such file or directory
EE unable to find a valid framebuffer device
EE Screen 0 deleted because of no matching config section
EE Cannot run in framebuffer mode. Please specify busIDs for all framebuffer devices.
What should i do, can you help me?
I have Intel uhd graphics
Edit1: I downloaded xserver-org-core and reinstalled debian. but nothing has changed.
EDIT2: I downloaded debian from here. I also downloaded the firmware from here.
I copied these files from the firmware.zip file to the firmware folder inside the usb.
Files:
firmware-intel-sound_20190114-2_all.deb
firmware-intelwimax_20190114-2_all.deb
firmware-iwlwifi_20190114-2_all.deb
firmware-linux-free_3.4_all.deb
firmware-misc-nonfree_20190114-2_all.deb
firmware-realtek_20190114-2_all.deb
intel-microcode_3.20210216.1~deb10u1_amd64.deb
In addition to these, I added the file I downloaded from this site.
CPU = intel i3 1005g1
GPU = intel uhd graphics 10th generation
EDIT3: I added "deb http://ftp.de.debian.org/debian buster main" to /etc/apt/sources.list, what should I do next? I ran sudo apt-get update and rebooted but still nothing changed.
EDIT4: What else should I download besides the above firmware?
EDIT5:
sources.list contents
deb http://ftp.de.debian.org/debian buster main
deb http://ftp.de.debian.org/debian buster main non-free
deb http://deb.debian.org/debian/ bustermain non-free contrib
deb-src http://deb.debian.org/debian/ bustermain non-free contrib
deb http://security.debian.org/debian-security buster/updates main contrib non-free
deb-src http://security.debian.org/debian-security buster/updates main contrib non-free
deb http://deb.debian.org/debian/ buster-updates main contrib non-free
deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free
dmesg
output to see which firmware files you require, and fetch the necessary firmware files yourself from tthe linux-firmware repository. Depending on the exact CPU model, you might even need a newer kernel than Debian 10 has. – telcoM Aug 10 '21 at 10:41/etc/apt/sources.list
line you added so that it will saydeb http://ftp.de.debian.org/debian buster main non-free
. Then runsudo apt-get update
again and now packages likefirmware-misc-nonfree
should be installable with justsudo apt install firmware-misc-nonfree
. – telcoM Aug 10 '21 at 13:18i915
kernel module version may be too old to support the iGPU in that CPU. I recommend installing Debian 11 instead, as installing a newer kernel from a Debian backports repository is a fairly tricky for a new user. Debian 11 will be the new stable release of Debian after 2021-08-14. But if you want to see the errors, rundmesg
as root to view the kernel's message buffer. If there are no messages mentioningi915
at all, then the kernel is too old. – telcoM Aug 12 '21 at 08:42