Установка Gentoo на Virtualbox, сбой startx
Я следовал за Gentoo Linux x86 Quick Installation Guide
базовая система установлена на виртуальной машине. Я хочу гнома в этом. Документы говорят, что мне нужно установить hal
, Но emerge
говорит there are no ebuilds to satisfy "hal"
, я сделал eselect profile list
а потом сделал eselect profile set 4
который [4] default/linux/x86/10.0/desktop/gnome
как говорится в этом сообщении на форуме. Тогда я сделал emerge -e system
что заняло несколько часов и скачало много файлов. после этого я сделал перезагрузку и startx
не удается, даже Xorg -configure
выходит из строя. поговорка
(EE) Failed to load module "vmwgfx" (module does not exist, 0)
(EE) vmware: Please ignore the above warnings about not being able to to load module/driver vmwgfx
(EE) vmware: Unexpected failure while loading the "vmwlegacy" driver. Giving up.
(EE) Failed to load module "vmware" (a required submodule could not be loaded, -1077713160)
(++) Using config file: "/root/xorg.conf.new"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(EE) open /dev/fb0: No such file or directory
Я очень новичок в Gentoo. и я не могу понять, куда мне теперь двигаться.
3 ответа
Где документы говорят, что вам нужно установить hal? Правда, в этом кратком руководстве упоминается hal в USE-флагах, но это все. hal теперь устарел и его следует полностью избегать.
Вы установили xf86-video-vmware? Это видео драйвер, который вам нужен для X.
ОБНОВЛЕНИЕ: Извините, я запутался, потому что ошибка упоминается VMware, даже если вы работаете под VirtualBox. Вы должны удалить xf86-video-vmware и установить virtualbox-guest-дополнения, которые добавят xf86-video-virtualbox. Смотрите эту вики-страницу для получения дополнительной информации.
В вики есть страница с описанием этого http://wiki.gentoo.org/wiki/VirtualBox
Посмотрите на часть "Гости Linux"
# eix xf86-video -S virtual
* x11-drivers/xf86-video-virtualbox
Available versions: 4.1.4 ~4.1.6-r1 ~4.1.8 {dri kernel_linux}
Homepage: http://www.virtualbox.org/
Description: VirtualBox video driver
# emerge x11-drivers/xf86-video-virtualbox
* Last emerge --sync was Wed Jan 11 10:35:01 2012.
>>> Verifying ebuild manifests
>>> Starting parallel fetch
>>> Emerging (1 of 5) sys-devel/bin86-0.16.17
>>> Installing (1 of 5) sys-devel/bin86-0.16.17
>>> Emerging (2 of 5) sys-power/iasl-20090123
>>> Installing (2 of 5) sys-power/iasl-20090123
>>> Emerging (3 of 5) sys-devel/dev86-0.16.17-r6
>>> Installing (3 of 5) sys-devel/dev86-0.16.17-r6
>>> Emerging (4 of 5) dev-util/kbuild-0.1.9998_pre20110817
>>> Installing (4 of 5) dev-util/kbuild-0.1.9998_pre20110817
>>> Emerging (5 of 5) x11-drivers/xf86-video-virtualbox-4.1.4
>>> Installing (5 of 5) x11-drivers/xf86-video-virtualbox-4.1.4
>>> Recording x11-drivers/xf86-video-virtualbox in "world" favorites file...
* Messages for package x11-drivers/xf86-video-virtualbox-4.1.4:
* You need to edit the file /etc/X11/xorg.conf and set:
*
* Driver "vboxvideo"
*
* in the Graphics device section (Section "Device")
*
* To use the kernel drm video driver, please add:
* "vboxvideo" to:
* /etc/conf.d/modules
*
vim /etc/X11/xorg.conf (or some other text editor)
Section "Device"
Identifier "Fake card"
Driver "vboxvideo"
VendorName "VirtualBox"
BoardName "Fake board"
EndSection
Section "Screen"
# Removed Option "metamodes" "DFP: nvidia-auto-select +0+0"
# Removed Option "TwinView" "0"
# Removed Option "metamodes" "DFP: 1680x1050_60 +0+0"
Identifier "BottomDisplay"
Device "Fake card"
(...)