LinuxFummler
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
Moin Moin, Da ich während des Bootvorgangs keinen Bootsplash haben wollte,habe ich angefangen mit "Grub-Customizer", Grub-Themes und Hintergrundbildern etc herum zu experimentieren. Als erstes habe ich die Einträge "quiet splash" gelöscht und durch "nosplash" ersetzt.
Keine Änderung im nachfolgenden Bootvorgang. Grub erscheint, Lubuntu bootet und kurz bevor der Desktop geladen wird, erscheint noch ein Rest der Bootmeldungen (siehe Screenshot)
http://i2.photobucket.com/albums/y1/Gedruese/img_4812_zps478eiguc.jpg Die Bootmeldungen hatte ich dann aufgegeben. Daraufhin habe ich dann angefangen mit Grub-Designs herum zu experimentieren. Per "Grub-Customizer" habe ich ein Hintergrundbild eingebunden, nennen wir es "grub.jpg" Alles wurde auch gut angezeigt. Jedoch wurde nach erneuter Designänderung auf das "Ubuntu-Mate"-Theme (siehe Screenshot)
http://i2.photobucket.com/albums/y1/Gedruese/img_4808_zpsuveltnf8.jpg Auch das "alte", inzwischen gelöschte, Hintergund bild in völlig falscher Auflösung, aussschnittweise dargestellt. In der "grub.conf" habe ich per "Grub-Customizer" die entsprechende noch vorhanden Zeile mit dem Eintrag für das Bild gelöscht.
GRUB_MENU_PICTURE=/user/LinuxFummler/Bilder/grub.jpg Jedoch erscheint jetzt nach dem Grubmenü während des Bootens immer noch ein schwarzer Splash, der sich bis zum oben angezeigten kurzen Anzeigen eines Teils der Bootmeldungen hält.
http://i2.photobucket.com/albums/y1/Gedruese/img_4811_zpsg9323b1s.jpg 1.) In der "grub.conf" findet sich kein Eintag mehr für ein Bild.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367 | #
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="${saved_entry}"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1024x768x24
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=de_DE
insmod gettext
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
insmod gfxmenu
insmod png
set theme=($root)/boot/grub/themes/ubuntu-mate/theme.txt
export theme
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
play 480 440 1
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux_proxy ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
### END /etc/grub.d/10_linux_proxy ###
### BEGIN /etc/grub.d/40_custom_proxy ###
menuentry "Lubuntu" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.10.0-21-generic
}
### END /etc/grub.d/40_custom_proxy ###
### BEGIN /etc/grub.d/42_os-prober_proxy ###
menuentry "Windows 10 (auf /dev/sda1)" --class windows --class os $menuentry_id_option 'osprober-chain-34DCCA43DCC9FF5C' {
savedefault
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 34DCCA43DCC9FF5C
else
search --no-floppy --fs-uuid --set=root 34DCCA43DCC9FF5C
fi
parttool ${root} hidden-
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/42_os-prober_proxy ###
### BEGIN /etc/grub.d/43_linux_proxy ###
submenu "Erweiterte Optionen für Ubuntu"{
menuentry "Ubuntu, mit Linux 4.10.0-22-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-22-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-22-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-22-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro nosplash noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-22-generic
}
menuentry "Ubuntu, with Linux 4.10.0-22-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-22-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-22-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-22-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-22-generic
}
menuentry "Ubuntu, mit Linux 4.10.0-21-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-21-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-21-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro nosplash noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-21-generic
}
menuentry "Ubuntu, with Linux 4.10.0-21-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-21-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-21-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-21-generic
}
menuentry "Ubuntu, mit Linux 4.10.0-19-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-19-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-19-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro nosplash noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-19-generic
}
menuentry "Ubuntu, with Linux 4.10.0-19-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-19-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-19-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-19-generic
}
}
### END /etc/grub.d/43_linux_proxy ###
### BEGIN /etc/grub.d/44_linux_xen ###
### END /etc/grub.d/44_linux_xen ###
### BEGIN /etc/grub.d/45_memtest86+_proxy ###
### END /etc/grub.d/45_memtest86+_proxy ###
### BEGIN /etc/grub.d/46_os-prober_proxy ###
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/46_os-prober_proxy ###
### BEGIN /etc/grub.d/47_memtest86+_proxy ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
knetbsd /boot/memtest86+.elf
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/47_memtest86+_proxy ###
### BEGIN /etc/grub.d/48_uefi-firmware ###
### END /etc/grub.d/48_uefi-firmware ###
### BEGIN /etc/grub.d/49_custom_proxy ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/49_custom_proxy ###
### BEGIN /etc/grub.d/50_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/50_custom ###
|
Wo ist also der Fehler zu suchen. 2.) Wie bekomme ich es hin, daß wie ich das von Linux gewohnt war, während des Starts ALLE Bootmeldungen zu sehen sind, bis zum Start des XServers? Danke für die Hilfe. Mfg LinuxFummler
|
tomtomtom
Supporter
Anmeldungsdatum: 22. August 2008
Beiträge: 55212
Wohnort: Berlin
|
Du brauchst für die Anzeige der Bootmeldungen weder Grub-Themes noch Grub-Customizer, der dafür bekannt ist, Probleme zu verursachen. Nur die Bootoptionen quiet splash entfernen und durch noplymouth ersetzen. Danach natürlich noch sudo update-grub oder sudo grub-mkconf -o /boot/grub/grub.cfg ausführen, um die Änderungen auch einzulesen, sonst ändert sich da natürlich gar nichts. 😉
|
LinuxFummler
(Themenstarter)
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
tomtomtom schrieb: Du brauchst für die Anzeige der Bootmeldungen weder Grub-Themes noch Grub-Customizer, der dafür bekannt ist, Probleme zu verursachen.
Danke für den Tip. Allerdings hat ein erneutes:
per Konsole keine Änderung gebracht. Der "noplymouth" Eintrag war schon vorhanden. UND es wird wie in den mitgesendeten Screenshots immer noch das Grub-Bootmenü mit dem schwarzen "Splash" bis zum Desktopstart angezeigt.
Es lohnt sich die Screenshots anzusehen 😉 Ich habe einen Fehler in der Konfiguration, den ich mit Grub-Customizer verursacht habe. Aber wie bekomme ich ihn weg?
(siehe mitgesendete grub.conf) Mfg
Danke
LinuxFummler
|
Lidux
Anmeldungsdatum: 18. April 2007
Beiträge: 16668
|
Hallo LinuxFummler, Deshalb nutzt man den "Grub Customizer" auch nicht ...... da der mehr Probleme verursacht als behebt. Bitte poste den Inhalt der grub.cfg hier in einem Codeblock (kein Bild) und markiere den wahrscheinlichen Fehler. Darin wird aber nicht herumeditiert, weil diese Datei nur das Endergebnis deiner Grubkonfiguration ist. Gruss Lidux
|
LinuxFummler
(Themenstarter)
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
Lidux schrieb: ...Bitte poste den Inhalt der grub.cfg hier in einem Codeblock (kein Bild) und markiere den wahrscheinlichen Fehler...
Moin Moin, Vielleicht habe ich dich nur mißverstanden, aber mein grub.conf ist oben als Codeblock vorhanden?!
Wenn ich wüßte wo der Fehler liegt, könnte ich ihn möglicherweise selbst beheben.
So bin ich aber nicht in der Lage "den Fehler zu markieren" Und..., natürlich bin ich selber Schuld, daß ich ein Programm genutzt habe..., und nicht die grub.conf gesichert und dann herumexperimentiert. Aber nun ist es zu spät. LG
LinuxFummler
|
bowman
Anmeldungsdatum: 17. Februar 2010
Beiträge: 7506
|
GRUB 2 wird über Skripte gesteuert, die bei sudo update-grub abgearbeitet werden. Wesentliche Einstellungen werden über die Datei /etc/default/grub gesteuert, die auch zur GRUB 2/Konfiguration dient. Deshalb ist der Inhalt dieser Datei relevant. Posten bitte. Der Grub-Customizer macht nichts anderes, nur eben unsauber und handwerklich schlecht, deshalb sollte man davon die Finger lassen.
|
LinuxFummler
(Themenstarter)
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
Moin Moin, Hier meine /etc/default/grub.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 | # If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT="saved"
#GRUB_HIDDEN_TIMEOUT="0"
GRUB_HIDDEN_TIMEOUT_QUIET="true"
GRUB_TIMEOUT="10"
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL="console"
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE="1024x768x24"
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID="true"
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
GRUB_INIT_TUNE="480 440 1"
export GRUB_COLOR_NORMAL="light-gray/black"
export GRUB_COLOR_HIGHLIGHT="red/white"
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_SAVEDEFAULT="true"
GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
GRUB_THEME="/boot/grub/themes/ubuntu-mate/theme.txt"
|
Und hier nochmals die /boot/grub/grub.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367 | #
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="${saved_entry}"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1024x768x24
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=de_DE
insmod gettext
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
insmod gfxmenu
insmod png
set theme=($root)/boot/grub/themes/ubuntu-mate/theme.txt
export theme
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
play 480 440 1
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux_proxy ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
### END /etc/grub.d/10_linux_proxy ###
### BEGIN /etc/grub.d/40_custom_proxy ###
menuentry "Lubuntu" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.10.0-21-generic
}
### END /etc/grub.d/40_custom_proxy ###
### BEGIN /etc/grub.d/42_os-prober_proxy ###
menuentry "Windows 10 (auf /dev/sda1)" --class windows --class os $menuentry_id_option 'osprober-chain-34DCCA43DCC9FF5C' {
savedefault
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 34DCCA43DCC9FF5C
else
search --no-floppy --fs-uuid --set=root 34DCCA43DCC9FF5C
fi
parttool ${root} hidden-
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/42_os-prober_proxy ###
### BEGIN /etc/grub.d/43_linux_proxy ###
submenu "Erweiterte Optionen für Ubuntu"{
menuentry "Ubuntu, mit Linux 4.10.0-22-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-22-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-22-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-22-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-22-generic
}
menuentry "Ubuntu, with Linux 4.10.0-22-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-22-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-22-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-22-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-22-generic
}
menuentry "Ubuntu, mit Linux 4.10.0-21-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-21-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-21-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-21-generic
}
menuentry "Ubuntu, with Linux 4.10.0-21-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-21-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-21-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-21-generic
}
menuentry "Ubuntu, mit Linux 4.10.0-19-generic" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-advanced-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-19-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-19-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro noplymouth
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-19-generic
}
menuentry "Ubuntu, with Linux 4.10.0-19-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-recovery-92a8dfbe-9f43-475a-9446-63612721a6cc' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
echo 'Linux 4.10.0-19-generic wird geladen …'
linux /boot/vmlinuz-4.10.0-19-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro recovery nomodeset
echo 'Initiale Ramdisk wird geladen …'
initrd /boot/initrd.img-4.10.0-19-generic
}
}
### END /etc/grub.d/43_linux_proxy ###
### BEGIN /etc/grub.d/44_linux_xen ###
### END /etc/grub.d/44_linux_xen ###
### BEGIN /etc/grub.d/45_memtest86+_proxy ###
### END /etc/grub.d/45_memtest86+_proxy ###
### BEGIN /etc/grub.d/46_os-prober_proxy ###
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/46_os-prober_proxy ###
### BEGIN /etc/grub.d/47_memtest86+_proxy ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
knetbsd /boot/memtest86+.elf
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 92a8dfbe-9f43-475a-9446-63612721a6cc
else
search --no-floppy --fs-uuid --set=root 92a8dfbe-9f43-475a-9446-63612721a6cc
fi
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/47_memtest86+_proxy ###
### BEGIN /etc/grub.d/48_uefi-firmware ###
### END /etc/grub.d/48_uefi-firmware ###
### BEGIN /etc/grub.d/49_custom_proxy ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/49_custom_proxy ###
### BEGIN /etc/grub.d/50_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/50_custom ###
|
Seufz,
Ich kann in beiden Dateien keinen Hinweis auf den Fehler finden.
Irgendwie erscheint mir das zu hoch 😉 LG
LinuxFummler
|
Lidux
Anmeldungsdatum: 18. April 2007
Beiträge: 16668
|
Hallo LinuxFummler, Hier ist wahrscheinlich etwas nicht richtig: GRUB_CMDLINE_LINUX_DEFAULT=""
................
GRUB_CMDLINE_LINUX_DEFAULT="noplymouth" Gruss Lidux
|
apt-ghetto
Anmeldungsdatum: 3. Juni 2014
Beiträge: 2943
|
|
LinuxFummler
(Themenstarter)
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
Moin Moin, | gedruese@gedruese-mobil:~$ cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro quiet splash vt.handoff=7
gedruese@gedruese-mobil:~$
|
...sagt mir jetzt garnichts... Mfg
LinuxFummler
|
apt-ghetto
Anmeldungsdatum: 3. Juni 2014
Beiträge: 2943
|
LinuxFummler schrieb: Moin Moin, gedruese@gedruese-mobil:~$ cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-4.10.0-21-generic root=UUID=92a8dfbe-9f43-475a-9446-63612721a6cc ro quiet splash vt.handoff=7
gedruese@gedruese-mobil:~$ ...sagt mir jetzt garnichts...
Als erstes empfehle ich dir eine Datensicherung deiner persönlichen Daten (nicht die Systemdaten). Das von mir gelb markierte sind Bootoptionen, die ich genau einmal in deiner grub.cfg gesehen habe. Der Eintrag wird vom Skript 40_custom_proxy erzeugt. Und dieses Skript gehört nicht zur Standardinstallation. Ich gehe davon aus, dass das Skript Einträge deiner /etc/default/grub , die sowieso auch verbastelt aussieht, gar nicht erst beachtet. Am einfachsten wäre wohl eine komplette Neuinstallation des Systems (wer weiss schon, was da sonst noch alles verbastelt ist?). Falls du allerdings immer noch etwas experimentierfreudig bist: GRUB_2 neu installieren (und falls du mutig bist, machst du sowas ohne vorherige Datensicherung)
|
bowman
Anmeldungsdatum: 17. Februar 2010
Beiträge: 7506
|
11 GRUB_CMDLINE_LINUX_DEFAULT=""
38 GRUB_CMDLINE_LINUX_DEFAULT=""
40 GRUB_CMDLINE_LINUX_DEFAULT="noplymouth" Deinem Forum-Namen scheinst du Ehre machen zu wollen. 😈 fummeln: sich unsachgemäß an etwas zu schaffen machen. Dieselbe Befehlzeile 3 mal ins Script zu schreiben. 🙄 Kein Wundern, dass das Script anscheinend ignoriert wird, wenn mehrfache und widersprüchliche Befehle erfolgen. Die Befehlszeile gehört in Zeile 11 und sonst nirgendwo sonst hin. Dort wird dann noplymouth eingetragen und fertig. Da hast du in der Konfig-Datei ganz schön herum gewütet, ohne elementare Regeln zu beachten. Befehlzeilen gibt es jeweils nur eine für eine Aktion. Die Befehlszeilen bleiben dort, wo sie hingehören. Wenn du etwas änderst, dann solltest du das dokumentieren. Z.B. indem du die Original-Zeile auskommentierst und darunter die von dir geänderte Befehlszeile setzt. Beispiel:
#GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX_DEFAULT="noplymouth"
Dann können Änderungen nachverfolgt und auf einfache Weise wieder rückgängig gemacht werden.
GRUB_CMDLINE_LINUX_DEFAULT=""
#GRUB_CMDLINE_LINUX_DEFAULT="noplymouth" Dies zum Geleit, wenn du das nächste Mal die Konfiguration änderst. Sinnvoll kann es auch sein, den Inhalt der Original /etc/default/grub zu speichern, bevor man sie verändert. Kann Neuinstallationen verhindern. ☺
|
LinuxFummler
(Themenstarter)
Anmeldungsdatum: 18. April 2017
Beiträge: 10
|
|