this post was submitted on 10 Nov 2024
30 points (96.9% liked)
Linux
48153 readers
590 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
My bet is it tries to default to mode that your display doesn’t like, probably because of some wrong info in monitor’s EDID downloaded from the connector, but that’s just my guess.
Before booting, use key e on grub menu, locate line where there is initrd to pass boot parameters. You can force modes using video= parameter, and you can also replace/modify your EDID. Refer to section # Forcing modes and EDID on this page: https://wiki.archlinux.org/title/Kernel_mode_setting
These changes can also be achieved permanently by editing /etc/default/grub and regenerating its configuration, in case you use grub.
Easiest would be to have separate extra monitor temporarily or another computer to connect over SSH, but if those low “safe” graphics modes work, that can probably do also.
Yeah that sounds promising. I have read the wiki page and I tried a few boot commands I followed this guide Here is what I have added to the boot manager screen:
(without additions)
GRUB version 2.12 load_video set gfxpayload=keep insmod gzio linux (sroot) /vmlinuz-6.11.6-300.fc41.x86_64 root=UUID=5еа3757а-72ac-492-9832-50b00b68f405 ro rootflags=subvol=root rhgb
quiet amdgpu.si_support=1 amdgpu.cik_support=1 initrd (sroot) /initramfs-6.11.6-300.fc41.x86_64.1mg stuned_initrd Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctri-x or F10 to boot, Ctri-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu.
(with additions)
GRUB version 2.12 load_video set gfxpayload=keep insmod gzio linux (sroot) /vmlinuz-6.11.6-300.fc41.x86_64 root=UUID=5еа3757а-72ac-492-9832-50b00b68f405 ro rootflags=subvol=root rhgb
quiet amdgpu.si_support=1 amdgpu.cik_support=1 video=LVDS-1:d video=VGA-1:e drm_kms_helper.edid_firmware=edid/1920x1080.bin initrd (sroot) /initramfs-6.11.6-300.fc41.x86_64.1mg stuned_initrd Minimum Emacs-like screen editing is supported. TAB lists completions. Press Ctri-x or F10 to boot, Ctri-c or F2 for a command-line or ESC to discard edits and return to the GRUB menu.
It didn't work but I think it might be because I am doing something wrong here.