mint 9 plymouth boot screen resolution

Questions about Grub, UEFI,the liveCD and the installer
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
basti

mint 9 plymouth boot screen resolution

Post by basti »

With the proprietary nvidia driver my boot resultion just looked crappy. Here's a short fix:

Open a terminal and install hwinfo:

Code: Select all

apt install v86d hwinfo
run

Code: Select all

sudo hwinfo --framebuffer
to detect possible resolutions.


edit grub settings:

Code: Select all

sudo gedit /etc/default/grub
replace

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
with

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1024x768-24,mtrr=3,scroll=ywrap"
(means resolution 1024x768 running in 24bits color depth)
same file edit this line too:

Code: Select all

#GRUB_GFXMODE=640x480
to

Code: Select all

GRUB_GFXMODE=1024x768
save the file and exit gedit.

In terminal again:

Code: Select all

sudo gedit /etc/initramfs-tools/modules
add in:

Code: Select all

uvesafb mode_option=1024x768-24 mtrr=3 scroll=ywrap
, save and exit.

terminal:
(enforce frame buffering)

Code: Select all

echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash
update grub settings:

Code: Select all

sudo update-grub2
regenerate initramfs

Code: Select all

sudo update-initramfs -u
Here's the German blog post http://oyox.de/index.php?/archives/113- ... ndern.html I got the information from.


best regards and have fun with mint 9 :)
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
beefstu

Re: mint 9 plymouth boot screen resolution

Post by beefstu »

You should also be able to do this using the startup manager which has been included in Mint 9
remoulder
Level 17
Level 17
Posts: 7621
Joined: Fri May 09, 2008 1:14 pm

Re: mint 9 plymouth boot screen resolution

Post by remoulder »

beefstu wrote:ou should also be able to do this using the startup manager
Problem is startup manager has still not been rewritten properly for grub2 and inserts the deprecated vga= line on the GRUB_CMDLINE_LINUX_DEFAULT line overwriting (currently) anything already there instead of using the GRUB_GFXMODE option. Having said that the solution posted above will probably break suspend/hibernate on laptops.
[Edit] your original post and add [SOLVED] once your question is resolved.

“The people are my God” stressing the factor determining man’s destiny lies within man not in anything outside man, and thereby defining man as the dominator and remoulder of the world.
Locked

Return to “Installation & Boot”