|
我是用garnome-0.27.1安装的。我按照说明文档的介绍,先下载了源文件,进入garnome-0.27.1/meta/gnome-desktop, 然后make install。
这些都做完了以后,我就不知道怎么办了。我是新手,希望大家教教我,先把readme那一部分贴出来。
How do I start GARNOME once it is installed?
The easiest way is to create a garnome-session script, and use the
standard method your distribution provides to launch it when you start
X. Here's what the script should look like:
#!/bin/sh
GARNOME=$HOME/garnome
PATH=$GARNOME/bin:$PATH
LD_LIBRARY_PATH=$GARNOME/lib:$LD_LIBRARY_PATH
PYTHONPATH=$GARNOME/lib/python2.2/site-packages
PKG_CONFIG_PATH=$GARNOME/lib/pkgconfig:/usr/lib/pkgconfig
GDK_USE_XFT=1
export PATH LD_LIBRARY_PATH PYTHONPATH PKG_CONFIG_PATH GDK_USE_XFT
exec $GARNOME/bin/gnome-session
Just set the GARNOME variable at the top to wherever you installed
GARNOME. It will usually be $HOME/garnome, as above.
If you start X with the startx command you should launch this in
~/.xinitrc. If you use the Xsession menu choice in GDM, you should
launch this in ~/.xsession. Assuming the garnome-session script is in
your path, both files should look like this:
#!/bin/sh
exec garnome-session
My own startup script is a little bit funkier:
#!/bin/sh
xset -solid black
xset fp+ /home/jdub/.fonts/
xset fp rehash
exec /usr/bin/ssh-agent /home/jdub/bin/garnome-session
This sets the background to black so I don't have to look at the ugly
grey default for very long, sets up old X programs to use all the
fonts I have in my .fonts directory, and runs garnome-session under
ssh-agent (very useful if you use ssh keys).
如果哪位是用rpm安装的,麻烦告诉我地址。我之前下载源文件,下了180多M。还有,我安装好后,目录为 /root/garnome。 |
|