GRUB Ekranı boş geliyor

Aşağıdaki komutların çıktılarını paylaşın lütfen. Bir de update-grub komutunu yazınca çıktı olarak ne veriyor?

Kod:
cd /etc/default && cat grub

cd /boot/grub && cat grub.cfg
 
Son düzenleme:
Aşağıdaki komutların çıktılarını paylaşın lütfen. Bir de update-grub komutunu yazınca çıktı olarak ne veriyor?

Kod:
cd /etc/default/grub && cat grub

cd /boot/grub && cat grub.cfg
[CODE title="cd /etc/default/grub && cat grub"]bash: cd: /etc/default/grub: Not a directory
[/CODE]

[CODE title="cd /boot/grub && cat grub.cfg"]#
# 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 ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${initrdfail}" = 2 ]; then
set initrdfail=
elif [ "${initrdfail}" = 1 ]; then
set next_entry="${prev_entry}"
set prev_entry=
save_env prev_entry
if [ "${next_entry}" ]; then
set initrdfail=2
fi
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
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 initrdfail {
if [ -n "${have_grubenv}" ]; then if [ -n "${partuuid}" ]; then
if [ -z "${initrdfail}" ]; then
set initrdfail=1
if [ -n "${boot_once}" ]; then
set prev_entry="${default}"
save_env prev_entry
fi
fi
save_env initrdfail
fi; 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_gpt
insmod ext2
set root='hd0,gpt8'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
else
search --no-floppy --fs-uuid --set=root 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=tr_TR
insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_gpt
insmod ext2
set root='hd0,gpt8'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
else
search --no-floppy --fs-uuid --set=root 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
fi
insmod gfxmenu
loadfont ($root)/usr/share/grub/themes/sleek/DejaVuSans-48.pf2
loadfont ($root)/usr/share/grub/themes/sleek/DejaVuSans-Regular-14.pf2
loadfont ($root)/usr/share/grub/themes/sleek/DejaVuSans-Regular-16.pf2
loadfont ($root)/usr/share/grub/themes/sleek/terminus-14.pf2
loadfont ($root)/usr/share/grub/themes/sleek/terminus-16.pf2
insmod png
set theme=($root)/usr/share/grub/themes/sleek/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=3
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=3
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Pop OS GNU/Linux' --class pop --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-629f1f01-0b0c-47ce-94c8-2a3b27061ca1' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd0,gpt8'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
else
search --no-floppy --fs-uuid --set=root 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
fi
linux /boot/vmlinuz-5.11.0-7612-generic root=UUID=629f1f01-0b0c-47ce-94c8-2a3b27061ca1 ro
initrd /boot/initrd.img-5.11.0-7612-generic
}
submenu 'Advanced options for Pop OS GNU/Linux' $menuentry_id_option 'gnulinux-advanced-629f1f01-0b0c-47ce-94c8-2a3b27061ca1' {
menuentry 'Pop OS GNU/Linux, with Linux 5.11.0-7612-generic' --class pop --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.11.0-7612-generic-advanced-629f1f01-0b0c-47ce-94c8-2a3b27061ca1' {
recordfail
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd0,gpt8'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
else
search --no-floppy --fs-uuid --set=root 629f1f01-0b0c-47ce-94c8-2a3b27061ca1
fi
echo 'Loading Linux 5.11.0-7612-generic ...'
linux /boot/vmlinuz-5.11.0-7612-generic root=UUID=629f1f01-0b0c-47ce-94c8-2a3b27061ca1 ro
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-5.11.0-7612-generic
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/10_linux_zfs ###
### END /etc/grub.d/10_linux_zfs ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-1C08-EF2B' {
savedefault
insmod part_gpt
insmod fat
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 1C08-EF2B
else
search --no-floppy --fs-uuid --set=root 1C08-EF2B
fi
chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# 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/40_custom ###

### BEGIN /etc/grub.d/41_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/41_custom ###
kyronex@pop-os:/boot/grub$

[/CODE]
[CODE title="sudo updtae-grub"]Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/sleek/theme.txt
Found linux image: /boot/vmlinuz-5.11.0-7612-generic
Found initrd image: /boot/initrd.img-5.11.0-7612-generic
Found Windows Boot Manager on /dev/sda2@/efi/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for UEFI Firmware Settings
done
[/CODE]
 
İlk komutu yanlış girmişim şimdi düzelttim tekrar atarsanız sevinirim. Sorun muhtemelen dediğim gibi, her şey gri olduğu için hiçbir şey yok gibi görünüyor sizin için. Tema yükleyince bu sorunun çözülmesi gerekiyordu.

Herhangi bir yanlışlık yok gibi duruyor şu an.
 
İlk komutu yanlış girmişim şimdi düzelttim tekrar atarsanız sevinirim. Sorun muhtemelen dediğim gibi, her şey gri olduğu için hiçbir şey yok gibi görünüyor sizin için. Tema yükleyince bu sorunun çözülmesi gerekiyordu.

Herhangi bir yanlışlık yok gibi duruyor şu an.
Aslında tema da yüklü. Anlamadım.
Kod:
GRUB_DEFAULT=0
GRUB_TIMEOUT=3
GRUB_TIMEOUT_STYLE=menu
GRUB_DISTRIBUTOR="Pop OS"

# If you want to enable the save default function, uncomment the following
# line, and set GRUB_DEFAULT to saved.
GRUB_SAVEDEFAULT=true

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=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 'videoinfo'
GRUB_GFXMODE=auto

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper
# modes only.  Entries specified as foreground/background.
GRUB_COLOR_NORMAL="light-gray/black"
GRUB_COLOR_HIGHLIGHT="green/black"

GRUB_THEME="/usr/share/grub/themes/sleek/theme.txt"
kyronex@pop-os:/etc/default$
 
Uyarı! Bu konu 5 yıl önce açıldı.
Muhtemelen daha fazla tartışma gerekli değildir ki bu durumda yeni bir konu başlatmayı öneririz. Eğer yine de cevabınızın gerekli olduğunu düşünüyorsanız buna rağmen cevap verebilirsiniz.

Technopat Haberler

Geri
Yukarı