LINUX.ORG.RU

Гаснет монитор после grub`а


0

0

Есть вёркстэйшн А и сервер Б. Есть хороший монитор 1 с дивиаем и ди-сабом, подключенный к А по дивиаю, и хреновый монитор 2 с ди-сабом, подключенный к Б. При запуске Б вижу стартскрин биоса, затем экран с мигающим курсором слева-вверху (возможно грубовский), затем 2 гаснет, как будто Б выключен. Когда 1 подключен к Б, всё то же самое, только после груба вылазит терминал (как и должно быть). На горячую переподключаю 2 к Б, терминал появляется на экране (Б). Нужно сделать так, чтобы всё было нормально: 2, подключенный к Б работал сразу. <br>ЗЫ система на Б - Ubuntu Server 10.04 32-bit (консольная). <br>ЗЗЫ я нуб в линухе

★★

Последнее исправление: Loki29 (всего исправлений: 1)

Каково нативное разрешение нужного монитора? Какая видеокарта на сервере?

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

В грубе вестимо. Вот здесь нормально объяснено, как сделать разрешение приличное в консоли:

Restart computer. Press and hold shift key until GRUB loads and diplays menu. Press c to open a command line terminal. Enter vbeinfo to display (BIOS) supported video modes. Choose desired resolution from list (1024x768 in my case). Press ECS to return to menu. Press ENTER and boot computer. Log in to computer.

Change to the /etc/default directory Code:

user@arcturus:~$ cd /etc/default/

Make a copy of /etc/default/grub Code:

user@arcturus:/etc/default/$ sudo cp grub grub.orig

Edit /etc/default/grub to reflect changes shown in diff below Code:

user@arcturus:/etc/default$ diff -u grub grub.orig --- grub 2010-07-09 21:56:38.300144137 -0400 +++ grub.orig 2010-04-13 09:40:04.000000000 -0400 @@ -6,7 +6,7 @@ GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` -GRUB_CMDLINE_LINUX_DEFAULT=«quiet» +GRUB_CMDLINE_LINUX_DEFAULT=«quiet splash» GRUB_CMDLINE_LINUX=«» # Uncomment to disable graphical terminal (grub-pc only) @@ -15,7 +15,7 @@ # 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=1024x768 +#GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass «root=UUID=xxx» parameter to Linux #GRUB_DISABLE_LINUX_UUID=true

Change to the /etc/grub.d directory Code:

user@arcturus:/etc/default$ cd /etc/grub.d/

Make a copy of /etc/grub.d/00_header Code:

user@arcturus:/etc/grub.d$ sudo cp 00_header 00_header.orig

Edit /etc/grub.d/00_header to reflect changes shown in diff below Code:

user@arcturus:/etc/grub.d$ diff -u 00_header 00_header.orig --- 00_header 2010-07-09 21:14:36.126521341 -0400 +++ 00_header.orig 2010-04-13 09:59:26.000000000 -0400 @@ -101,7 +101,6 @@ cat << EOF if loadfont `make_system_path_relative_to_its_root ${GRUB_FONT_PATH}` ; then set gfxmode=${GRUB_GFXMODE} - set gfxpayload=keep insmod gfxterm insmod ${GRUB_VIDEO_BACKEND} if terminal_output gfxterm ; then true ; else

Run update-grub to build new grub.cfg Code:

user@arcturus:/etc/grub.d$ sudo update-grub

Reboot

amorpher ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.