Gentoo Archives: gentoo-user

From: Peter Humphrey <peter@××××××××××××.uk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Grub2 and softlevels [SOLVED]
Date: Tue, 28 Jan 2014 09:25:17
Message-Id: 21736469.aX5pLonfk6@wstn
In Reply to: Re: [gentoo-user] Grub2 and softlevels by Peter Humphrey
1 On Monday 27 Jan 2014 16:04:44 I wrote:
2 > On Sunday 26 Jan 2014 21:42:54 Peter Humphrey wrote:
3 > > On Sunday 26 Jan 2014 21:28:55 I wrote:
4 > > > On Sunday 26 Jan 2014 20:13:58 Neil Bothwick wrote:
5 > > > > Uncomment this line in /etc/default/grub
6 > > > >
7 > > > > #GRUB_TERMINAL=console
8 > > >
9 > > > Thanks, but I'm using a manually written grub.cfg, so I need to find out
10 > > > what that definition translates to. I'm searching now...
11 > >
12 > > It was easier than I expected (I hope). I just had to add two lines to
13 > >
14 > > grub.cfg:
15 > > terminal_input console
16 > > terminal_output console
17 > >
18 > > Mike G had suggested gfxterm for terminal_output, so I just changed it and
19 > > added terminal_input. I'll test it next time I boot.
20 >
21 > Nope. Now I'm back to @ signs in place of the border, with the text still at
22 > the original size needing a magnifying glass (well, I do these days).
23
24 I had to remove the line "insmod all_video" from grub.cfg as well. Now I get the
25 good old-fashioned 80x24 line VGA console and I can read the list of boot images.
26
27 For posterity, here's my /boot/grub/grub.cfg:
28
29 root=(hd0,msdos1)
30 timeout=10
31 default=0
32 fallback=3
33 color_normal=white/blue
34 color_highlight=black/light-gray
35 background_image /grub/splash.xpm.gz
36
37 menuentry "Gentoo Linux 3.10.25" {
38 linux /boot/kernel-x86_64-3.10.25-gentoo root=/dev/md5 net.ifnames=0
39 }
40 menuentry "Gentoo Linux 3.10.25, no X" {
41 linux /boot/kernel-x86_64-3.10.25-gentoo root=/dev/md5 softlevel=no-x net.ifnames=0
42 }
43 menuentry "Gentoo Linux 3.10.25, no network" {
44 linux /boot/kernel-x86_64-3.10.25-gentoo root=/dev/md5 softlevel=no-net net.ifnames=0
45 }
46 menuentry "Gentoo Linux 3.10.17" {
47 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5 net.ifnames=0
48 }
49 menuentry "Gentoo Linux 3.10.17, no X" {
50 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5 softlevel=no-x net.ifnames=0
51 }
52 menuentry "Gentoo Linux 3.10.17, no network" {
53 linux /boot/kernel-x86_64-3.10.17-gentoo root=/dev/md5 softlevel=no-net net.ifnames=0
54 }
55 menuentry "Memtest86+" {
56 linux16 /boot/memtest86plus/memtest86+-4.20.bin
57 }
58 menuentry "Rescue System 3.10.7-r1" {
59 linux /boot/kernel-x86_64-3.10.7-r1-gentoo-rescue root=/dev/sda8 net.ifnames=0
60 }
61 ------------------------------------------------
62
63 --
64 Regards
65 Peter