2

Linux x86 Quick Installation GuideベースシステムがvirtualboxにインストールされているGentooに従いました。その中にグノーが欲しい。ドキュメントには、インストールする必要があると書かれていhalます。しかし、emerge言うthere are no ebuilds to satisfy "hal"。このフォーラムの投稿が言うように、私はそれeselect profile listを行いました。それから私は 数時間かかり、たくさんのファイルをダウンロードしました。その後、再起動して失敗しました。言ってeselect profile set 4[4] default/linux/x86/10.0/desktop/gnomeemerge -e systemstartxXorg -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に非常に慣れていません。どこに移動すればよいのかわかりません。

4

3 に答える 3

2

ドキュメントには、hal をインストールする必要があると記載されている場所はありますか? 確かに、そのクイック ガイドでは、USE フラグで hal について言及されていますが、それだけです。hal は廃止されたため、完全に避ける必要があります。

xf86-video-vmware をインストールしましたか? これは、X に必要なビデオ ドライバーです。

更新:申し訳ありませんが、VirtualBox で実行しているにもかかわらずエラーが VMware に言及しているため、混乱していました。xf86-video-vmware を削除して、xf86-video-virtualbox を取り込む virtualbox-guest-additions を作成する必要があります。詳細については、この wiki ページを参照してください。

于 2012-02-07T16:30:49.807 に答える
0
# 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"
 (...)

ファイルを保存します。startx を実行する

于 2012-02-23T14:42:02.937 に答える