LINUX.ORG.RU

Grub - Linux mint 22 Cinnamon

 


0

1

Господа, доброго вам дня. Прошу помощи. Кто подскажет по вопросу. При загрузки Linux Mint 22 Cinnamon, на мониторе не видно загрузчик Grub? Сам grub точно запускается, меняю время загрузки, оно меняется. Grub Customizer видит все оси, но при загрузке, тупо тёмный экран. Кто нибудь сталкивался с такой проблемой? С 21 версией таких проблем не было.

При загрузки Linux Mint 22 Cinnamon, на мониторе не видно загрузчик Grub?

А как вы хотели увидеть Груб? Это код в загрузочной области диска.
Может вы имеете ввиду меню выбора вариантов загрузки? Не знаю как на Минте-22, но некоторые дистрибутивы по умолчанию не выводят меню загрузки (нужно нажать клавишу для вывода на экран, например Esc). Это настраивается в конфиге груба

sigurd ★★★★★
()

Linux Mint…

По умолчанию, если одна система, то никогда не показывал меню.

В конфиге груба настрой так, как тебе нужно.

Ниже брякнули про «shadow». Это чушь собачья. Если в самом конфиге, то «timeout_style=menu».

andytux ★★★★★
()
Ответ на: комментарий от pavel_l

Во-первых. update-grub - именно так называется скрипт обновления конфига груба.

Во-вторых. Проще. grub-mkconfig нужно указать правильный файл конфига груба. update-grub - запуск grub-mkconfig с правильным файлом конфига груба.

andytux ★★★★★
()
Ответ на: комментарий от Vsevolod-linuxoid
# 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="0"
GRUB_TIMEOUT_STYLE="hidden"
GRUB_TIMEOUT="5"
GRUB_DISTRIBUTOR="`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# If your computer has multiple operating systems installed, then you
# probably want to run os-prober. However, if your computer is a host
# for guest OSes installed via LVM or raw disk devices, running
# os-prober can cause damage to those guest OSes as it mounts
# filesystems to look for things.
#GRUB_DISABLE_OS_PROBER="false"

# 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_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="640x480"

# 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="magenta/black"
#GRUB_THEME="/boot/grub/themes/megano-grub-plasma/theme.txt"
GRUB_FONT="/boot/grub/unicode.pf2"
DARK4000
() автор топика
Ответ на: комментарий от DARK4000

GRUB_TIMEOUT_STYLE="hidden" — ну и чего ты хотел?

sudo nano /etc/default/grub , смени GRUB_TIMEOUT_STYLE="hidden" на #GRUB_TIMEOUT_STYLE="hidden" и я бы таймаут увеличил секунд до 20 хотя бы, то есть GRUB_TIMEOUT="5" на GRUB_TIMEOUT="20", выйди по Ctrl+x с сохранением, потом sudo update-grub

Vsevolod-linuxoid ★★★★★
()
Ответ на: комментарий от DARK4000

GRUB_TIMEOUT_STYLE=«hidden»

«hidden» замени на «menu».

По таймауту. Когда видно меню, достаточно 2 секунды, чтобы сделать выбор и небольшая задержка, если ничего не выбирать и загрузка по умолчанию. Если изменишь здесь, то в случае ошибки, всё-равно таймаут будет переопределён.

Но, настройки из этого файла сработают в одном редком случае.

andytux ★★★★★
()
Ответ на: комментарий от andytux
If this option is unset or set to ‘menu’, then GRUB will display the menu and then wait for the timeout set by ‘GRUB_TIMEOUT’ to expire before booting the default entry. Pressing a key interrupts the timeout.

If this option is set to ‘countdown’ or ‘hidden’, then, before displaying the menu, GRUB will wait for the timeout set by ‘GRUB_TIMEOUT’ to expire. If ESC or F4 are pressed, or SHIFT is held down during that time, it will display the menu and wait for input. If a hotkey associated with a menu entry is pressed, it will boot the associated menu entry immediately. If the timeout expires before either of these happens, it will boot the default entry. In the ‘countdown’ case, it will show a one-line indication of the remaining time.
anonymous
()