|
发表于 2004-11-6 15:34:33
|
显示全部楼层
和我一样也是用LiveCD + PackageCD安装?
如果是的话,就做下面的吧。
mount -o loop packageCD.iso /mnt/cdrom
mkdir -p /usr/portage/packages/All
cp /mnt/cdrom/All/* /usr/portage/packages/All/
emerge -k xorg-x11
(没网络的话,可能package安装xfree有问题,因为要下载必要的包)
(所以我用的是xorg)
env-update
source /etc/profile
Xorg -config
cd ~
X -conf /root/xorg.conf.new
cp xorg.conf.new /etc/X11/xorg.conf
- Section "Screen"
- Identifier "Default Screen"
- Device "S3 Inc. ProSavage KN133 [Twister K]"
- Monitor "Generic Monitor"
- DefaultDepth 24
- # etc...
- SubSection "Display"
- Depth 24
- Modes "1024x768"
- EndSubSection
- EndSection
- Section "InputDevice"
- Identifier "Generic Keyboard"
- Driver "keyboard"
- Option "CoreKeyboard"
- Option "XkbRules" "xorg"
- Option "XkbModel" "pc105"
- Option "XkbLayout" "us"
- EndSection
- Section "InputDevice"
- Identifier "TouchPad Mouse"
- Driver "mouse"
- Option "CorePointer"
- Option "Device" "/dev/psaux"
- Option "Protocol" "IMPS/2"
- Option "ZAxisMapping" "4 5"
- EndSection
复制代码
以上的设备名并不需要和我一样,只修改必要的参数就行。
对照这个修改你的 /etc/X11/xorg.conf
startx
能进基本的X 吗 ? Ctrl + Alt + BackSapce返回。
能进的话,继续。
USE="-gtk -gnome" emerge kdelibs kdebase
等待吧。
vi /etc/rc.conf
找到并修改如下
DISPLAYMANAGER="kdm"
XSESSION="Kde"
保存。
rc-update add xdm default
env-update
source /etc/profile
kdm
看看,能进吗?
PS:不在Gentoo下写的,可能有出入。 |
|