Installing on Linux and BSD platforms

Note

Please read the INSTALL file of the Krusader sources, it contains all latest installation instructions.

-DQT_INCLUDES=/usr/share/qt4/include is the location of the Qt™4 includes

-DCMAKE_INSTALL_PREFIX=/usr/ is the location where Krusader will be installed with the make command.

An other example is: -DCMAKE_INSTALL_PRFIX=/opt/krusader to install the compiled Krusader in an other directory to not overwrite the Krusader version installed by your package manager.

      $ tar -xzvf krusader_kde4.tar.gz
      $ cd krusader_kde4
      $ cmake -DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt4/include
      $ make
      $ sudo make install
     

Uninstall

      $ su -c "make uninstall"