Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 9375  / 3 Years ago, wed, may 12, 2021, 6:37:21

I get “signal out of range” displayed on screen after boot up from fresh Ubuntu installation, if flashes grup in corner for half a sec then it goes to “No Input Signal”, anyone got a clue how to get the grub to load in diffrent resolution with out have access to the file system?



if not i guess my only option is to boot from the cd and edit som files to get grub to load in diffrent resolution?



as it is now i cant get access to grub menu, and i cant get access to login screen, all will give me “No Input Signal”, anyone worked around this?


More From » 11.04

 Answers
2

Boot from the live cd and open a terminal. Assuming your root is on /dev/sda1, then do this:



sudo -s
mount -t ext4 /dev/sda1 /mnt
gedit /mnt/etc/default/grub
for f in sys proc dev ; do mount --bind /$f /mnt/$f ; done
chroot /mnt
update-grub


When the editor comes up, uncomment ( remove the '#' ) this line and save and exit:



#GRUB_TERMINAL=console


After the update-grub, reboot and you should be good.


[#44247] Thursday, May 13, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
vigorousom

Total Points: 394
Total Questions: 96
Total Answers: 110

Location: Pitcairn Islands
Member since Fri, Oct 15, 2021
3 Years ago
;