|
|

楼主 |
发表于 2004-11-13 10:38:00
|
显示全部楼层
install binary RPMs
1.
become superuser
2.
execute rpm -ivh packagename.rpm
Installation of the source .tar.bz2 files
Since there are always changes and updates to the way KDE is compiled, please refer to Download and Install from Source for the most up to date installation instructions for the source packages.
The general approach should work in most cases though.
The source .tar.bz2 package installs into /usr/local/kde by default. You can override this setting by using the --prefix option of the configure script.
1.
unpack the packages with tar jxvf packagename.tar.bz2
2.
change folder to the package folder: cd packagename
3.
configure the package: ./configure
Note
Some packages (notably kdebase) have special configuration options that might be applicable to your installation. Type ./configure --help to see the available options.
4.
build the package: make
5.
install the package: su -c "make install" (if you aren't already root). If you already are, just type make install. |
|