Как чтобы исправить проблему с загрузкой Debian на Macbook Pro?

r@S:/tmp # a=10
r@S:/tmp # echo $a
10
r@S:/tmp # echo \$a
$a
r@S:/tmp # 
1
10.04.2018, 17:36
1 ответ

Можно задать использование параметров при каждой загрузке. Как пользователь root, отредактируйте файл /etc/default/grubи измените строку GRUB_CMDLINE_LINUX_DEFAULT, чтобы указать все нужные параметры. Затем обновите GRUB с помощью команды update-grub.

Согласно форумам Ubuntu ,

nomodeset

The newest kernels have moved the video mode setting into the kernel. So all the programming of the hardware specific clock rates and registers on the video card happen in the kernel rather than in the X driver when the X server starts.. This makes it possible to have high resolution nice looking splash (boot) screens and flicker free transitions from boot splash to login screen. Unfortunately, on some cards this doesnt work properly and you end up with a black screen. Adding the nomodeset parameter instructs the kernel to not load video drivers and use BIOS modes instead until X is loaded.

Note that this option is sometimes needed for nVidia cards when using the default "nouveau" drivers. Installing proprietary nvidia drivers usually makes this option no longer necessary, so it may not be needed to make this option permanent, just for one boot until you installed the nvidia drivers.

Другой вопрос, который вы разместили, указывает на то, что вы используете ноутбук в качестве домашнего сервера и что крышка остается закрытой, а монитор выключен. Похоже, это означает, что вы все равно не собираетесь часто использовать видео. И с nomodesetкак таковой «проблемы» нет. Если вы хотите, чтобы вместо этого работал проприетарный драйвер, опубликуйте сведения о своем видеооборудовании.

# Refresh the PCI ID list.
sudo update-pciids

# Look for information about the video card.
lspci | grep -E "VGA|3D"

Вывод последней команды может быть следующим.

00:02.0 VGA compatible controller: Intel Corporation 3rd Gen [...]

Используйте идентификатор PCI для получения дополнительной информации.

sudo lspci -v -s 00:02.0

Добавьте результат к вопросу.

3
27.01.2020, 23:23

Теги

Похожие вопросы