|
|
1、Edit /etc/ld.so.conf and add /usr/X11R6/lib,我做了
2、Ensure /usr/X11R6/bin and /usr/X11R6/lib/pkgconfig are added to your PATH and PKG_CONFIG_PATH environment variables, respectively.
直接复制:cat > /etc/profile.d/X.sh << "EOF"
if [ -x /usr/X11R6/bin/X ]; then
pathappend /usr/X11R6/bin
fi
if [ -d /usr/X11R6/lib/pkgconfig ] ; then
pathappend /usr/X11R6/lib/pkgconfig PKG_CONFIG_PATH
fi
EOF不对吗?这步我也作了
3、Create the xorg.conf file with:
cd ~ &&
Xorg -configure
然后说找不到Xorg命令,为什么?
4、Test the system with:
X -config ~/xorg.conf.new
说找不到X命令
5、我是用livecd然后chroot来装blfs的,接着我装xfc,然后装到pango这一步说找不到xft
但是In order for Pango to find Xft, the PKG_CONFIG_PATH must include /usr/X11R6/lib/pkgconfig. 我已经检查了N次了,就是上面的X.sh的内容阿
这是为什么?那位大侠能帮帮我?谢谢! |
|