summaryrefslogtreecommitdiffstats
path: root/doc/en/installation.docbook
blob: 30e97f721ab074aa01718eac55919b51a6852130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
<chapter id="installation">
  <!-- **********************************************************************
                               installation.docbook
                            ++++++++++++++++++++++++++
  copyright            : (C) 2000 - 2008
                          Rafi Yanai, Shie Erlich, Frank Schoolmeesters
                          & the Krusader Krew
  e-mail               : krusader@users.sourceforge.net
  web site             : http://www.krusader.org
  description          : a Krusader Documentation File

***************************************************************************
* Permission is granted to copy, distribute and/or modify this            *
* document under the terms of the GNU Free Documentation License,         *
* Version 1.1 or any later version published by the Free Software         *
* Foundation; with no Invariant Sections, no Front-Cover Texts and        *
* no Back-Cover Texts.  A copy of the license is available on the         *
* GNU site http://www.gnu.org/licenses/fdl.html or by writing to:         *
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,    *
* MA 02110-1301, USA.                                                     *
*********************************************************************** -->
  <title>Installation on KDE3.x</title>
  <indexterm>
    <primary>Installation</primary>
  </indexterm>
  <sect1 id="requirements">
    <title>Requirements</title>
    <para>In order to successfully use the most recent
    &krusader;, you need &kde;libs
    &gt;= 3.4</para>
    <para>Required &kde; version: 
    <itemizedlist>
      <listitem>
        <para>&krusader; v1.01: &kde;
        2</para>
      </listitem>
      <listitem>
        <para>&krusader; v1.02 - 1.40: &kde;
        3.0 - &kde; 3.2</para>
      </listitem>
      <listitem>
        <para>&krusader; 1.40: prefers &kde;
        3.2 (otherwise all features will not be available)</para>
      </listitem>
      <listitem>
        <para>&krusader; v1.50 - v1.51: &kde;
        3.2 - &kde; 3.3 (Konfigurator crash on
        &kde; 3.4)</para>
      </listitem>
      <listitem>
        <para>&krusader; v1.60.0 - v1.70.0:
        &kde; 3.3 - &kde; 3.5</para>
      </listitem>
      <listitem>
        <para>&krusader; 1.70.x: prefers
        &kde; &gt;= 3.4 (otherwise all
        features will not be available)</para>
      </listitem>
      <listitem>
        <para>&krusader; 1.80.0: &kde; 3.4 -
        &kde; 3.5</para>
      </listitem>
      <listitem>
        <para>&krusader; v2.xx.x: &kde; 4 -
        &Qt; 4 The big challenge, a first release in
        2008</para>
      </listitem>
    </itemizedlist>
    NOTE: there are no installation instructions for &kde;4 yet available since at moment of writing &krusader; 
    was not ported yet to &kde;4.</para>
    <para>Platforms: 
    <itemizedlist>
      <listitem>
        <para>All POSIX
        (&Linux;/BSD/&UNIX;-like OSes),
        &Solaris;</para>
      </listitem>
      <listitem>
        <para>All BSD Platforms
        (&freebsd;/&netbsd;/&openbsd;/&MacOS;)</para>
      </listitem>
    </itemizedlist></para>
    <para>&krusader; uses about 3-4 Mbyte of memory to
    run and about 15 Mbyte of shared memory, which is also used by
    other processes, but this may vary depending on your platform
    and configuration. In order to handle archives the archivers
    must be configured 
    <link linkend="konfig-dependencies">here</link>.</para>
    <para>A package of popular (un)packers, &krusader;
    itself and add-ons can be found on the
    &krudownload-url;.</para>
    <para>For more requirements, see below. Have a look at the
    &faq-lnk; section as well.</para>
  </sect1>
  <sect1 id="getting-krusader">
    <title>Obtaining &krusader;</title>
    <para>The latest information about &krusader; can be
    found on the &kruwebsite-url; .</para>
    <sect2 id="krusader-download">
      <title>&krusader; Downloads</title>
      <para>it is recommended to use the &krusader; package
      that is provided by your distribution.
      &distrowatch-com-url; is a great resource to check
      the availability. If your distribution does not offer
      &krusader;, please contact the creators of your
      distribution and ask them to provide a &krusader;
      package</para>
      <para>The latest version, as well as the older versions, can
      be found on the &krudownload-url; and on the
      &sfmirrors-url;. It contains the source tarballs,
      RPM and DEB packages to whatever distro the
      &krusader;-Krew is using and packages build by
      &krusader; users and third parties.</para>
      <para>Distributions who provide &krusader;: 
      <itemizedlist>
        <listitem>
          <para>&suse-download-url; &gt;=
          9.3, Note: please use &krusader;-1.60.0
          instead of &krusader;-1.51 (might be unstable
          on &SuSE;9.3-&kde;3.4).</para>
        </listitem>
        <listitem>
          <para>&fedora; via
          &fedora-extras-url; 
          <command># yum install krusader</command> will do the job,
          thanks to Marcin Garski. &RedHat; RPM packages
          can usually found on the &krudownload-url; or
          at &dag-wiers-download-url; and
          &dries-verachtert-download-url; .</para>
        </listitem>
        <listitem>
          <para>&debian-download-url;, on our
          &krudownload-url; you might find more recent
          DEB packages. Note: usually &debian; packages
          work also on distributions that are "based on
          &debian;", and some of these provide their own
          (incompatible) packages.
          &ubuntu-kubuntu-download-url;,
          &linspire-download-url;, &knoppix;
          4.x DVD, &kanotix;, etc.</para>
        </listitem>
        <listitem>
          <para>&mandriva-download-url; via the contrib
          repository 
          <command># urpmi krusader</command> will do the job,
          &gentoo-download-url;,
          &yoper-download-url;.</para>
        </listitem>
        <listitem>
          <para>&archlinux-download-url;,
          &frugalware-linux-download-url;,
          &pclinuxos-download-url;,
          &altlinux-download-url;.</para>
        </listitem>
        <listitem>
          <para>&freebsd-download-url;, the port is
          maintained by 
          <link linkend="credits">Heiner Eichmann</link>.</para>
        </listitem>
        <listitem>
          <para>&netbsd-download-url;,
          &lunarlinux-download-url;
          ,&arklinux;, &openlx;,
          &sourcemage;.</para>
        </listitem>
        <listitem>
          <para>Even more distributions can be found with
          &distrowatch-com-url;.</para>
        </listitem>
      </itemizedlist>Use the installation tools included in your
      distro to install the &krusader; package. You
      might need an internet connection if &krusader; is
      not included on the &CD; or DVD. There are
      probably other distributions which include
      &krusader;. If you know of one, please send
      feedback so that we can include it on the distrolist.</para>
      <para>Others 
      <itemizedlist>
        <listitem>
          <para>&slackware; tgz binaries can usually be
          found on the &krudownload-url;. You can also
          use &portpkg-url; that contains a
          &kru-slackbuild-url;, 
          <command># portpkg krusader</command> will do the
          job.</para>
        </listitem>
        <listitem>
          <para>There is a &macosx-port-url; 
          with the help of &fink-url; , the port is
          maintained by <ulink url="http://hritcu.wordpress.com/about/">Catalin Hritcu</ulink>.</para>
        </listitem>
      </itemizedlist></para>
      <para>Installation via the &klik-protocol-url; 
      <itemizedlist>
        <listitem>
          <para>&klik-krusader-url; downloads
          &krusader; provided by &debian;
          stable, more information is
          &klik-available-url; .</para>
        </listitem>
        <listitem>
          <para>&klik-krusader-latest-url; downloads the
          latest &klik-stable-krusader-url; provided by
          the &krusader; Krew.</para>
        </listitem>
        <listitem>
          <para>&klik-krusader-cvs-url; downloads a
          &klik-cvs-krusader-url; provided by the
          &krusader; Krew.</para>
        </listitem>
      </itemizedlist></para>
      <para>Search engines 
      <itemizedlist>
        <listitem>
          <para>You can also find packages on &Linux;
          software archives such as &freshmeat-url; or
          &kde-apps-url; .</para>
        </listitem>
        <listitem>
          <para>If you can notfind a package for your distribution,
          we recommend searching for it with
          &rpmfind-url;, &rpmpbone-url; or
          &rpmseek-url;.</para>
        </listitem>
      </itemizedlist>If you enjoy using &krusader;, we
      would appreciate it if you went to one of these sites and
      rated it.</para>
      <para>If you still can not find a package, follow the
      installation procedure on how to compile
      &krusader; from source. This very thorough HowTo
      describes the process in such detail that even newcomers
      should not have any problems.</para>
    </sect2>
    <sect2 id="version_scheme">
      <title>Version Scheme</title>
      <para>A new version scheme has been used since
      &krusader;-1.60.0 
      <itemizedlist>
        <listitem>
          <para>First digit - the major version</para>
        </listitem>
        <listitem>
          <para>Second digit(s) - percentage of features completed
          for this major version</para>
        </listitem>
        <listitem>
          <para>Third digit(s) - bugfixes.</para>
        </listitem>
      </itemizedlist>In essence, releasing
      &krusader;-1.60.0 means that we believe that
      &krusader; is about 60% done with all the features
      we had scheduled for the 1.x.x series. Series 2.x.x will be
      &kde; 4.x releases. Hopefully, it is easy to
      understand.</para>
    </sect2>
    <sect2 id="krusader_stable">
      <title>Stable Version</title>
      <para>
        <filename>krusader-x.xx.tar.gz</filename>
      </para>
      <note>
        <para>&krusader; is released under the
        &gpl-lnk;. This means that THE PROGRAM IS
        PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND, even when it
        is marked as a stable release.</para>
      </note>
    </sect2>
    <sect2 id="krusader_devel">
    <title>Development Version (beta release)</title>
    <para>
      <filename>krusader-x.xx-betax.tar.gz</filename>
    </para>
    <para>Before every stable release we release at least one
    development version in order to hunt down the bugs.</para>
    <warning>
      <para>These releases are beta releases and will probably
      contain some bugs.</para>
    </warning>&dev-cvs-note; 
    <para>The beta release has 3 goals: 
    <itemizedlist>
      <listitem>
        <para>Apply a feature-freeze until the stable is released,
        only bugs will be fixed. New features have to wait until
        the stable is released.</para>
      </listitem>
      <listitem>
        <para>Obtain feedback from &krusader; users so
        that we can fix the bugs.</para>
      </listitem>
      <listitem>
        <para>Give translators time to update the translations for
        the coming stable. Please read the
        &i18n-page-url;.</para>
      </listitem>
    </itemizedlist></para></sect2>
    <sect2 id="krusader_cvs">
      <title>CVS Builds</title>
      <para>
        <filename>krusader-cvs-yyyymmdd.tar.gz</filename>
      </para>
      <warning>
        <para>These builds are untested and come without any
        warranty. They may contain bugfixes, new features, or even
        new bugs.</para>
      </warning>
      <para>We provide daily snapshots of &krusader;'s
      CVS version. For those who are interested, the 
      <emphasis role="bold">nightly tarball</emphasis> can be found
      on the &krucutedge-url;. Depending on the stage of
      development, this version will either be stable or unstable.
      Just before a stable release, the CVS version is almost
      stable. After a stable release new features will be committed
      into CVS, which might lead to the appearance of bugs. In some
      rare cases, the build will not even compile if we make a
      mistake. In that case we try to fix the error as soon as
      possible.</para>
      <para>&krusader; provides 2 nightly snapshots: 
      <orderedlist numeration="arabic">
        <listitem>
          <para>
          <filename>krusader-cvs-yyyymmdd.tar.gz</filename>: 
          <command>make -f Makefile.cvs</command> must be run before
          the 
          <command>./configure</command> script is available.</para>
        </listitem>
        <listitem>
          <para>
          <filename>krusader-cvs2-yyyymmdd.tar.gz</filename>: for
          users who have problems with the 
          <command>make -f Makefile.cvs</command> command, we have
          already done this for you and the 
          <command>./configure</command> script is included in the
          tarball. This tarball is a bit bigger than the first
          one.</para>
        </listitem>
      </orderedlist></para>
      <para>
      <emphasis role="bold">check out from CVS</emphasis>.
      &krusader; can be checked out through anonymous
      (pserver) CVS with the following instruction set. The module
      you wish to check out must be specified as the module name.
      When prompted for a password for anonymous, press the
      &Enter; key.</para>
      <para>Currently, there are two module options: 
      <itemizedlist>
        <listitem>
          <para>krusader_kde2: the &kde;2 branch, stable
          but it is basically v1.01 and there are no planned
          changes</para>
        </listitem>
        <listitem>
          <para>krusader_trinity: the &kde;3 branch that we
          currently use</para>
        </listitem>
      </itemizedlist></para>
      <para>To check out &krusader; from CVS: 
      <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-d:pserver:anonymous@krusader.cvs.sourceforge.net:/cvsroot/krusader login</option></userinput></screen>
      <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:anonymous@krusader.cvs.sourceforge.net:/cvsroot/krusader co krusader_trinity</option></userinput></screen>
      (note: updates from within the modules directory do
      not need the -d parameter)</para>
      <para>If you want to check out a specific version of
      &krusader; from CVS (&eg;
      &krusader;-1.60.0) : 
      <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:anonymous@krusader.cvs.sourceforge.net:/cvsroot/krusader co -rversion_1_60_0 krusader_trinity</option></userinput></screen>
      </para>
      <para>If you want to check out a specific date of
      &krusader; from CVS (&eg;
      &krusader;-2006-10-29) : 
      <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:anonymous@krusader.cvs.sourceforge.net:/cvsroot/krusader co -D2006-10-29 krusader_trinity</option></userinput></screen>
      </para>
      <para>Mostly being &gentoo; users, we provide a
      &gentoo-life-ebuild-url; for all those who want to
      stay on the bleeding edge of file management and do not want
      to miss the advantages of portage. Please take a look at our
      &krucutedge-url; for more installation
      details.</para>
      <para>We also provide &viewcvs-url; to browse the
      CVS repository.</para>
    </sect2>
    <sect2 id="krusader_svn">
      <title>Subversion</title>
      <para>&subversion-url; is used for
      the &krusader; 2.x series for &kde;4.
      it is also possible to
      &browse-svn-repo-url;.</para>
      <para>To check out the latest &krusader; 1.x for
      &kde; 3 from SVN: (NOTE: at moment of writing use CVS for krusader_trinity, since krusader_trinity
      is developed in CVS and NOT in SVN, currently you will get an old version in SVN) 
      <screen><prompt>$</prompt> <userinput><command>svn</command> <option>co https://krusader.svn.sourceforge.net/svnroot/krusader/trunk/krusader_trinity</option></userinput></screen>
      To check out the latest &krusader; 2.x
      for &kde; 4 from SVN:
      <screen><prompt>$</prompt> <userinput><command>svn</command> <option>co https://krusader.svn.sourceforge.net/svnroot/krusader/trunk/krusader_kde4</option></userinput></screen>
      </para>
    </sect2>
    <sect2 id="krusader_old">
      <title>Older Releases</title>
      <para>If you are looking for older releases we recommend the
      &sfmirrors-url;, available from our project
      page.</para>
    </sect2>
  </sect1>
  <sect1 id="compilation">
    <title>Compiling and Installing</title>
    <sect2 id="sourcedownload">
    <title>Compiling &krusader;. What now?</title>
    <para>Check the environment variables
    &kdeqtdir-lnk;.</para>
    <para>To compile and install &krusader; on your
    system, type the following in the base directory of the
    &krusader; package:</para>
    <screen>
      <prompt>$</prompt> <userinput><command>./configure</command></userinput>
      <prompt>$</prompt> <userinput><command>make</command></userinput>
      <prompt>$</prompt> <userinput><command>su -c 'make</command> <option>install'</option></userinput></screen>
    &krusaderui-rc-text; 
    <para>Since &krusader; uses 
    <command>autoconf</command> and 
    <command>automake</command> you should have no trouble compiling
    it. If you run into problems, read the detailed installation
    instructions below.</para></sect2>
 
 
<sect2 id="install_quickstart">
<title>Quickstart Installation Tutorial</title>

<sect3 id="install_quickstart_debian">
<title>Debian</title>
<para>These instructions should work as well on &debian; based distributions like: 
&ubuntu;, &kubuntu;, &linspire;, &kanotix;, ...</para>

<para>Add the next lines in the <filename>~/.bashrc</filename> configuration file
<screen>
<userinput><command>export</command> <option>QTDIR=/usr</option></userinput>
<userinput><command>export</command> <option>TDEDIR=/usr</option></userinput>
<userinput><command>export</command> <option>export TDEDIRS=/opt/krusader:/usr</option></userinput>
</screen>
</para>

<para>Install the <link linkend="faqi_missing_libs">build dependencies</link> for &krusader;  
<screen>
<prompt>#</prompt> <userinput><command>apt-get</command> <option>build-dep krusader</option></userinput>
</screen>
</para>

<para><link linkend="version_scheme">Download</link> the &krusader; sourcecode, unpack and 
enter the <filename>krusader_trinity</filename> directory.</para>

<para> 
The next command will create <command>./configure</command>
<screen>
<prompt>$</prompt> <userinput><command>make -f</command> <option>Makefile.cvs</option></userinput>
</screen>
NOTE: you might need to upgrade <filename>automake</filename> and/or <filename>autoconf</filename>, if an error message appears. 
</para>

<para>Install &krusader; in the <filename>/opt</filename> directory to not overwrite the official &debian; binary <filename>/usr/bin/krusader</filename>, 
so that <command>krusader</command> will run the official &debian; package and <command>/opt/bin/krusader</command> runs the compiled version. 
It's recommended to use enable the full debug, so that you can possible problems at us. Run configure.  
<screen>
<prompt>$</prompt> <userinput><command>./configure</command> <option>--prefix=/opt/krusader --enable-debug=full</option></userinput>
</screen>
</para>

<para>Compile &krusader;  
<screen>
<prompt>$</prompt> <userinput><command>make</command></userinput>
</screen>
</para>

<para>Install Krusader  
<screen>
<prompt>$</prompt> <userinput><command>su -c</command> <option>"make install"</option></userinput>
</screen>
</para>

<para><command>/opt/bin/krusader</command> runs the compiled &krusader; version.</para>
</sect3>

<sect3 id="install_quickstart_suse">
<title>SuSE</title>
<para>Install the <link linkend="faqi_missing_libs">build dependencies</link> for &krusader;</para>  
<para><link linkend="version_scheme">Download</link> the &krusader; sourcecode, unpack and 
enter the <filename>krusader_trinity</filename> directory. Now you can compile and install &krusader;
<screen>
<prompt>$</prompt> <userinput><command>make -f</command> <option>Makefile.cvs</option></userinput>
<prompt>$</prompt> <userinput><command>./configure</command> <option>--prefix=/opt/krusader --enable-debug=full</option></userinput>
<prompt>$</prompt> <userinput><command>make</command></userinput>
<prompt>$</prompt> <userinput><command>su -c</command> <option>"make install"</option></userinput>
</screen>
</para>
</sect3>

<sect3 id="install_quickstart_others">
<title>For other Linuxes</title>
<para>Ofcource it's impossible to cover all Linuxes, but here are the general installation instructions.</para>

<para>Usually <command>./configure --prefix=/usr</command> should be used, though options like 
<filename>/opt/krusader</filename> are usually better so that you don't overwrite files that 
are installed by your package managment system. 
Please don't use the <filename>/usr/local</filename> directory as it simply won't work.</para> 
<para>Install the <link linkend="faqi_missing_libs">build dependencies</link> for &krusader;</para>  
<para><link linkend="version_scheme">Download</link> the &krusader; sourcecode, unpack and enter the <filename>krusader_trinity</filename> directory. Now you can compile and install &krusader;
<screen>
<prompt>$</prompt> <userinput><command>make -f</command> <option>Makefile.cvs</option></userinput>
<prompt>$</prompt> <userinput><command>./configure</command> <option>--prefix=/usr</option></userinput>
<prompt>$</prompt> <userinput><command>make</command></userinput>
<prompt>$</prompt> <userinput><command>su -c</command> <option>"make install"</option></userinput>
</screen>
</para>    
</sect3>
    
</sect2>
    
    <sect2 id="install_tutorial">
      <title>Detailed Installation Tutorial</title>
      <para>The next section will explain how to install
      &krusader; step by step. Questions about the
      installation process have been asked many times and
      especially users new to &Linux; often have
      problems compiling software from source. Therefore, we are
      trying to keep the explanations as detailed as possible even
      if they are mostly not &krusader; specific.
      Experienced users may easily skip most of the steps.</para>
      <para>Unfortunately, because not all &Linux;
      distributions follow the &fhs-url; it is impossible
      to write a tutorial that would cover all circumstances.
      However, these guidelines will help you in the right
      direction.</para>
      <note>
        <para>If you encountered problems, please read first this
        installation procedure and the &faq-lnk;. If the
        problem persists, use the &help-request-lnk; to
        ask for help.</para>
      </note>
      <orderedlist>
        <listitem>
          <para>Install all packages and libraries that are needed
          for the compilation, please read the
          &faq-lnk;. 
          <tip>
            <para>If you install &tdevelop;, (almost)
            everything that you need to compile
            &krusader; will be installed on your
            computer. However, if you are not a developer, please
            follow the instructions and do not use
            &tdevelop; to compile
            &krusader;.</para>
          </tip></para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>Open your favourite terminal emulator
          (&eg; &konsole;).</para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>We recommend you create a separate directory to
          keep all the sources you compile in. This way you will
          have a better overview of the installed programs and it
          will be easier to uninstall them later. 
          <screen><prompt>$</prompt> <userinput><command>mkdir</command> ~/source</userinput></screen>
          The chosen directory is just an example, any
          other will work.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para></para>
          <!-- Empty line to make it more readable (second line is needed) -->
        </listitem>
        <listitem>
          <para>Copy the sources to the 
          <filename>~/source</filename> directory and unpack them. 
          <screen><prompt>$</prompt> <userinput><command>cp</command> /<replaceable>"your_dir"</replaceable> /krusader-x.xx.tar.gz ~/source</userinput></screen>
          <screen><prompt>$</prompt> <userinput><command>cd</command> ~/source</userinput></screen>
          <screen><prompt>$</prompt> <userinput><command>tar</command> <option>-xzvf</option> krusader-x.xx.tar.gz</userinput></screen>
          </para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>Optional step: if you wish you can delete the
          tarball at this point as it is no longer needed. 
          <screen><prompt>$</prompt> <userinput><command>rm</command> krusader-x.xx.tar.gz</userinput></screen>
          </para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>Change to the directory containing the sources. 
          <screen><prompt>$</prompt> <userinput><command>cd</command> krusader-x.xx</userinput></screen>
          </para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem id="kde_qt_dir">
          <para>Check the environment variables 
          <envar>QTDIR</envar>and 
          <envar>TDEDIR</envar>. &krusader;'s 
          <command>./configure</command> script needs to know where
          the &Qt; and &kde; directories
          are.</para>
          <para>
          <envar>QTDIR</envar>: 
          <replaceable>&lt;path to your Qt
          installation&gt;</replaceable> &eg; 
          <filename>/usr/lib/qt3</filename> or 
          <filename>/usr/qt3</filename></para>
          <para>
          <envar>TDEDIR</envar>: 
          <replaceable>&lt;path to your KDE
          installation&gt;</replaceable> &eg; 
          <filename>/usr</filename> or 
          <filename>/opt/trinity</filename></para>
          <para>Normally your distribution will set them for you,
          but experience has shown that some do not. You can easily
          check the values with the 
          <command>echo</command> command. 
          <screen><prompt>$</prompt> <userinput><command>echo</command> $QTDIR</userinput>/usr/lib/qt3
                  <prompt>$</prompt> <userinput><command>echo</command> $TDEDIR</userinput>/usr</screen>

          If both commands give an output, the enviroment variables
          are set (the above example are the settings of
          &mandriva;-&Linux;). In case you
          receive empty lines, the variables are not set and you
          have to set them manually. If you do not know what to set
          the variables to, or if you want to check if the
          variables are correctly set, ask your distributor or use
          the 
          <command>find</command> command. 
<screen><prompt>$</prompt> <userinput><command>find</command> <option>/usr /opt -name</option> qtconfig <option>-type f 2>/dev/null</option></userinput>
/usr/lib/qt3/bin/qtconfig
<prompt>$</prompt> <userinput><command>find</command> <option>/usr /opt -name</option> tdeinit <option>-type f 2>/dev/null</option></userinput>
/usr/bin/tdeinit</screen>
          In this case 
          <filename>/usr/lib/qt3</filename> is your 
          <envar>QTDIR</envar> and 
          <filename>/usr</filename> is your 
          <envar>TDEDIR</envar>. The installed binaries will go to 
          <filename>/usr/bin</filename>. Now we will set the
          enviroment variables with the 
          <command>export</command> command. 
          <screen><prompt>$</prompt> <userinput><command>export</command> QTDIR=<replaceable>&lt;replace with your QTDIR&gt;</replaceable></userinput></screen>
          <screen><prompt>$</prompt> <userinput><command>export</command> TDEDIR=<replaceable>&lt;replace with your TDEDIR&gt;</replaceable></userinput></screen>
          </para>
          <note>
            <para>These enviroment variables are only set for the
            lifetime of your current shell. When you close your
            terminal and open a new one they will be gone. Assuming
            &krusader; is not the only
            &Qt;/&kde; program you want to
            compile, we recommend to make these settings permanent
            (&eg; append both export commands to your 
            <filename class="directory">/etc/profile</filename>)
            file.</para>
          </note>
          <para>If you can notdetermine your TDEDIR, 
          <command>tde-config --prefix</command> might help
          you.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para></para>
          <!-- Empty line to make it more readable (second line is needed) -->
        </listitem>
        <listitem>
          <para>If you have downloaded a stable version 
          <filename>"krusader-x.xx.tar.gz"</filename> or a beta
          version 
          <filename>"krusader-x.xx-betax.tar.gz"</filename>, you
          can skip this step. In this case the 
          <filename>./configure</filename> script is
          provided.</para>
          <para>If you have downloaded a CVS build or nightly
          tarball 
          <filename>"krusader-cvs-yyyy-mm-dd.tar.gz"</filename>",
          you will have to run the following command to create the 
          <filename>./configure</filename> script: 
          <screen><prompt>$</prompt> <userinput><command>make</command> <option>-f</option>Makefile.cvs</userinput></screen>
          </para>
          <para>If everything is OK you will see the following
          output on your screen: 
<screen><prompt>$</prompt> <userinput><command>make</command> <option>-f</option> Makefile.cvs</userinput>
This Makefile is only for the CVS repository
This will be deleted before making the distribution
*** Creating acinclude.m4
*** Creating list of subdirectories
*** Creating configure.in
*** Creating aclocal.m4
*** Creating configure
*** Creating config.h template
*** Creating Makefile templates
*** Postprocessing Makefile templates
*** Creating date/time stamp
*** Finished
Don't forget to run ./configure
If you haven't done so in a while, run ./configure --help
<prompt>$</prompt></screen>
          </para>
          <note>
            <para>You will need to have 
            <application>autoconf 2.52, 2.53 or
            2.54</application> and 
            <application>automake 1.6</application> (or higher) to
            run the 
            <command>make -f Makefile.cvs</command> command</para>
          </note>
          <tip>
            <para>If you encounter problems with this command click
            <link linkend="krusader_cvs">here</link>.
            &krusader; provides two nightly builds
            (snapshots) one with a 
            <filename>./configure</filename> script and one
            without.</para>
          </tip>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para></para>
          <!-- Empty line to make it more readable (second line is needed) -->
        </listitem>
        <listitem>
          <para>Your &Linux; distro
          &krusader; RPM or DEB package will normally
          install &krusader; in the 
          <filename>TDEDIR/bin</filename> directory. According to
          the &fhs-url;, any user installed files go to
          the 
          <filename>/usr/local</filename> directory. If you wish
          &krusader; to be installed in another
          directory, it can be determed with the prefix option. If
          you do not have root access, 
          <filename>/home/YOUR_USERNAME/.kde</filename> is probably
          a good choice. 
<screen>
foo

Krusader Project:
-----------------
Source code location: .
C Compiler:           gcc
C Compiler flags:     -ansi -W -Wall -pedantic -Wchar-subscripts -Wshadow -Wpointer-arith
-Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2
-Wformat-security -Wmissing-format-attribute
C++ Compiler:         g++
prefix:               /usr/local
kde_libraries:        /usr/include
kde_includes:         /usr/lib
kde_locale:           /usr/share/locale
qt_libraries:         /usr/lib/qt3/lib
qt_includes:          /usr/lib/qt3/include
TDEDIR:               /usr
QTDIR:                /usr/lib/qt3
Install path:         /usr/local/bin
krusader version:     1.80.0
krusader binary:      /usr/local/bin/krusader     (after 'make install')
Thank you for using Krusader

Good - your configure finished. Start make now
<prompt>bash$</prompt>
</screen>
          </para>
          <para>This is the output for
          &Mandrake;-&Linux; 10, other
          distributions may give a different output.</para>
          <tip>
            <para>At the end of the 
            <command>./configure</command> script you will find a
            summary of the most important settings, &eg;
            where the &krusader; binary will be
            installed (after the 'make install' command). This part
            will also display a warning if the environment
            variables &kdeqtdir-lnk; are empty.</para>
          </tip>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para>Since &krusader;-1.70.0 
          <command>./configure</command> has two specific
          &krusader; options: 
          <itemizedlist>
            <listitem>
              <para>
              <userinput>
                <command>./configure</command>
                <option>--without-konqueror</option>
              </userinput>: build &krusader; without support
              &konqueror;'s servicemenus, default=with.
              This means that &konqueror;'s right-click
              menu entries will not be available.</para>
            </listitem>
            <listitem>
              <para>
              <userinput>
                <command>./configure</command>
                <option>--without-javascript</option>
              </userinput>: build &krusader; without JavaScript
              support, default=with. This means that the
              &javascript-console-lnk; will not be
              available.</para>
            </listitem>
            <listitem>
              <para>
              <userinput>
                <command>./configure</command>
                <option>--without-acl</option>
              </userinput>: build &krusader; without ACL support default=with.
              Sometimes this option is needed if you get a ACL compile error when running <command>make</command>.</para>
            </listitem>
          </itemizedlist>In the past the support was always
          compiled in when the headers where found, now you have
          the choice.</para>
          <para>Use 
          <userinput>
            <command>./configure</command>
            <option>--help</option>
          </userinput>to see more options or read the 
          <filename>INSTALL</filename> file in the
          &krusader; sources.</para>
          <para>If you used another --prefix= than 
          <filename>$TDEDIR or /usr/local</filename>, it is
          recommended to do an extra check: 
<screen><prompt>$</prompt> <userinput><command>tde-config</command> <option>--path exe</option></userinput>
/home/frank/.kde/bin/:/usr/bin/:/usr/local/bin/   
<prompt>$</prompt></screen>
          If the
          &lt;prefix_dir/bin&gt; directory is
          not shown, you need to use e.g. 
          <command>export TDEDIRS=/usr/local:/usr</command>. To
          make these settings permanent you can &eg;
          append this export command to your 
          <filename>/etc/profile</filename> file. After that you
          need to restart &kde;.</para>
          <note>
            <para>If 
            <command>./configure</command> fails, take a look at
            &missing-libs-lnk;.</para>
          </note>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>Start the compilation process with the 
          <command>make</command> command. 
          <screen><prompt>$</prompt> <userinput><command>make</command></userinput></screen>
          This will take about 3 - 40 minutes depending on how fast your computer runs. If
          everything goes well, it will &eg; end with
          the following messages: 
<screen>
foo
make[2]: Leaving directory `/home/source/krusader_trinity/tar'
make[2]: Entering directory `/home/source/krusader_trinity'
make[2]: Leaving directory `/home/source/krusader_trinity'
make[1]: Leaving directory `/home/source/krusader_trinity'
<prompt>bash$</prompt>
</screen>
          </para>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para>If 
          <command>./configure</command> was successful and 
          <command>make</command> failed for some reason, continue
          to read this page. If you can not find a solution to your
          problem, feel free to post a help request at our
          &forum-lnk;.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>If everything is correct, you can now install
          &krusader;. 
          <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option>install'</option></userinput></screen>
          You will be asked to enter your root
          password.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para></para>
          <!-- Empty line to make it more readable (second line is needed) -->
        </listitem>
        <listitem>&krusaderui-rc-text; 
        <para></para>
        <!-- Empty line to make it more readable --></listitem>
        <listitem>
          <para>Now you can 
          <link linkend="starting-krusader">
          start</link> &krusader;.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
        <listitem>
          <para>Optional step: Cleaning up to save disk space.
          Note: All compiled files created with the 
          <command>make</command>command will be deleted. 
          <screen><prompt>$</prompt> <userinput><command>make</command> <option>clean</option></userinput></screen>
          </para>
          <para></para>
          <!-- Empty line to make it more readable -->
          <para></para>
          <!-- Empty line to make it more readable (second line is needed) -->
        </listitem>
        <listitem>
          <para>If you ever want to uninstall
          &krusader;, use 
          <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option>uninstall'</option></userinput></screen>
          You will be asked to enter your root
          password.</para>
          <para></para>
          <!-- Empty line to make it more readable -->
        </listitem>
      </orderedlist>
      <para>If you followed the installation procedure and still
      encountered problems installing &krusader;, refer
      to &faq-lnk;. If the problem persists, use the
      &help-request-lnk; to ask for help.</para>
    </sect2>
  </sect1>
  <sect1 id="mac-port">
    <title>Installing on &MacOS;-X</title>
    <indexterm>
      <primary>&MacOS;-X port</primary>
    </indexterm>

<note><para>Since June 2006 &krusader; is added into the 
            <ulink url="http://pdb.finkproject.org/pdb/package.php/krusader">&krusader; finkproject.org repository</ulink>
            Please check this url for the latest information about the &MacOS;-X port, 
            please read the &fink-url; documentation for more information, 
            all information below could be outdated, though they should still work :)
            From now on the port is maintained by 
            <ulink url="http://hritcu.wordpress.com/about/">Catalin Hritcu</ulink>.
</para></note>
    <para>Krusader is ported to &MacOS; thanks the &fink-url;-project and Jonas
    B&auml;hr and &bodo-tasche-url; .
    Unfortunately the only *stable* kdelib-binaries which
    &fink-url; has to offer is currenly 3.1.4 which
    means you need to use &krusader;-1.40 .
    Unfortunately the &MacOS; X &krusader;
    port does not have the same power as in a native
    &Linux;-&kde; environment. To run
    &krusader; you need also X11, which doesn't interact
    with the rest of the &MacOS; desktop. We hope that
    &Qt;4/&kde;4 will solve most of these
    problems. If you want a more recent Krusader version you need
    to compile &kde;. With &fink-url; it is
    rather easy but it takes some CPU cycles.</para>
    <para>Installation Instructions for &krusader;-1.40 
    <orderedlist>
      <listitem>
        <para>Download and install &fink-url; with the
        &kde;3.1 binaries provided by fink and read the
        documentation.</para>
      </listitem>
      <listitem>
        <para>Extract the 
        <filename>
        krusader-1.40.fink.darwin-ppc.tar.bz2</filename> package to 
        <filename>/sw/fink/dist/local/main/</filename> Only root can
        write here. You may have to create 'local' and
        'main'.</para>
      </listitem>
      <listitem>
        <para>Run as root: 
        <command>fink install krusader</command></para>
      </listitem>
    </orderedlist></para>
    <para>Follow these instructions if you wish to compile more
    source code or use a more recent version of
    &krusader;: 
    <orderedlist>
      <listitem>
        <para>Install &apple-x11-url;</para>
      </listitem>
      <listitem>
        <para>Install the &apple-x11-sdk-url;
        developer-tools with X11 headers (gcc is included)</para>
      </listitem>
      <listitem>
        <para>Install the fink-base</para>
      </listitem>
      <listitem>
        <para>Compile tdelibs 3.4.1 or higher (fink provides the
        necessary 
        <filename>.info</filename> files)</para>
      </listitem>
      <listitem>
        <para>Compile the &krusader;-tarball or follow
        steps 2 and 3 of the previous section if a recent
        &krusader;-package &eg; 
        <filename>
        krusader-1.70.0.fink.darwin-ppc.tar.bz2</filename> is
        available</para>
      </listitem>
    </orderedlist></para>

<para>Follow these instructions if you wish to compile &krusader;-1.80.0 : 
    <orderedlist>
      <listitem>
        <para>Install &apple-x11-url;</para>
      </listitem>
      <listitem>
        <para>nstall fink and 
        <ulink url="http://fink.sourceforge.net/faq/usage-fink.php#unstable">enable fink unstable</ulink>.</para>
      </listitem>
      <listitem>
        <para>Compile and install the &kde; bundle in fink: fink install bundle-kde-ssl 
             (if you get “no package found” the previous step did not succeed).</para>
      </listitem>
      <listitem>
        <para>Use <filename>krusader.info</filename> (provided in the &krusader;-sourcecode) and then copy to 
        <filename>/sw/fink/dists/local/main/finkinfo</filename> .</para>
      </listitem>
      <listitem>
        <para>Compile and install &krusader; in fink: <command>fink install krusader</command>
        </para>
      </listitem>
      <listitem>
        <para>Start X11 (startx) and in xterm run &krusader;
        </para>
      </listitem>
    </orderedlist>
    Thanks to <ulink url="http://hritcu.wordpress.com/2006/08/10/krusader-on-intel-mac/">Catalin Hritcu </ulink> for these install instructions.
</para>


  </sect1>
  <sect1 id="starting-krusader">
    <title>Starting &krusader;</title>
    <para>Type 
    <userinput>
      <command>krusader</command>
    </userinput> (lower case) at a command prompt. You can create
    shortcut on your desktop or create an entry in the
    (&kde;) menu. Read the previous page and the
    &faq-lnk; if &krusader; doesn't
    start.</para>
    <para>When &krusader; is started from the
    command line, various options can be specified to modify its
    behavior.</para>
    <screen>
    	<prompt>$</prompt> <userinput><command>krusader</command></userinput>
    	WARNING: Mt.Man: Born, looking around to get familiar. foo</screen>
    <note>
      <para>Do not worry about the messages you get in the
      &konsole;. These messages are log messages that
      can be used for debugging &krusader;.</para>
    </note>
    <para>You can also use 
    <keycombo action="simul">&Alt;
    <keycap>F2</keycap></keycombo> to open the Run Command dialog
    box, type 
    <userinput>
      <command>krusader</command>
    </userinput> (lower case) and press &Enter; or click
    on the 
    <guibutton>Run</guibutton> button.</para>
    <para>If &krusader; is installed by an RPM or DEB
    package then usually &krusader; can be started from
    the &kmenu;. &eg; on
    &Mandrake;-&Linux; 10.0 click on the
    &kicon; button and choose 
    <emphasis role="bold">
      <menuchoice>
        <guimenuitem>Applications</guimenuitem>
        <guimenuitem>File tools</guimenuitem>
        <guimenuitem>&krusader;</guimenuitem>
      </menuchoice>
    </emphasis>.</para>
    <variablelist>
      <title>Command-line options:</title>
      <varlistentry>
        <term>
          <option>--left</option>
          <replaceable>
          &lt;path&gt;</replaceable>
        </term>
        <listitem>
          <para>
            <action>start left panel at
            &lt;path&gt;</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--right</option>
          <replaceable>
          &lt;path&gt;</replaceable>
        </term>
        <listitem>
          <para>
            <action>start right panel at
            &lt;path&gt;</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--left</option>
          <replaceable>
          &lt;path1&gt;,&lt;path2&gt;,&lt;path3&gt;</replaceable>
        </term>
        <listitem>
          <para>
            <action>start left panel at
            &lt;path1&gt;,&lt;path2&gt;,&lt;path3&gt;,
            with tabs.</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--profile</option>
          <replaceable>
          &lt;panel-profile&gt;</replaceable>
        </term>
        <listitem>
          <para>
            <action>load a 
            <link linkend="panel_profiles">panel-profile</link> on
            startup (this overrides the 
            <link linkend="konfig-startup">default startup
            profile</link>).</action>
          </para>
        </listitem>
      </varlistentry>
    </variablelist>
    <para>Examples: 
    <screen><prompt>$</prompt> <userinput><command>krusader</command> <replaceable>--left=&lt;path&gt; --right=&lt;path&gt;</replaceable></userinput></screen>
    <screen><prompt>$</prompt> <userinput><command>krusader</command> <replaceable>--left=/mnt/cdrom --right=ftp://downloads@myserver.net</replaceable></userinput></screen>
    <screen><prompt>$</prompt> <userinput><command>krusader</command> <replaceable>--left=&lt;path1&gt;,&lt;path2&gt; --right=&lt;path1&gt;,&lt;path2&gt;,&lt;path3&gt;</replaceable></userinput></screen>
    <screen><prompt>$</prompt> <userinput><command>krusader</command><replaceable>--profile &lt;panel-profile&gt;</replaceable></userinput></screen>
    <screen><prompt>$</prompt> <userinput><command>krusader</command> <replaceable>--profile ftp-managment</replaceable></userinput></screen>
    </para>
    <para>The standard &Qt; and &kde;
    command-line options are available, and can be listed by
    entering 
    <userinput>
      <command>krusader</command>
      <option>--help</option>
    </userinput>.</para>
    <variablelist>
      <title>Other command-line options:</title>
      <varlistentry>
        <term>
          <option>--help-qt</option>
        </term>
        <listitem>
          <para>
            <action>List Qt-specific options</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--help-kde</option>
        </term>
        <listitem>
          <para>
            <action>List KDE-specific options</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--help-all</option>
        </term>
        <listitem>
          <para>
            <action>List all options</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--author</option>
        </term>
        <listitem>
          <para>
            <action>Show the authors names</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>-v,--version</option>
        </term>
        <listitem>
          <para>
            <action>Show the version number</action>
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>--license</option>
        </term>
        <listitem>
          <para>
            <action>Show license information</action>
          </para>
        </listitem>
      </varlistentry>
    </variablelist>
  </sect1>
  <sect1 id="configuration">
    <title>Configuring &krusader;</title>
    <para>When you run &krusader; for the first time,
    the &krusader; configuration module 
    <link linkend="konfigurator">Konfigurator</link> will show up
    and allow you to configure &krusader; as well as
    detect installed packers and tools. You can always run
    Konfigurator again from the
    &settingsmenu-lnk;.</para>
  </sect1>
  <sect1 id="default-file-manager">
    <title>Making &krusader; the default file
    manager</title>
    <para>To make &krusader; the default file manager in
    Gnome, <ulink url="http://psychocats.net/ubuntu/nonautilusplease">click here</ulink> for more information.
    </para>
    <para>To make &krusader; the default file manager in
    &kde;, <ulink url="http://groups.google.com/group/krusader-devel/browse_thread/thread/8209d785d3ba0ac6">click here</ulink> for more information. 
    </para>
  </sect1>
</chapter>

<chapter id="krusader_kde4_install">
<title>Installation on KDE4.x</title>
<sect1 id="kde4_install">
   <title>Krusader installation instructions on KDE4.0</title>
      <note>
        <para>From version &krusader;-2.0.0 and higher is &kde;-4 only.</para>
      </note>
      <note>
        <para>At moment of writing &krusader;-2.0.0 is still under development, though it works :)</para>
      </note>

<para>"krusader_kde4.tar.gz" is the supposed name of the krusader tarball (it will be probably a different one ;)</para>

<para>You can download the latest available krusader-2.x <link linkend="krusader_svn">from SVN</link>.</para>

<para><command>DCMAKE_INSTALL_PREFIX</command> is the location of the KDE DQT_INCLUDES</para>
<para>
    <screen>
      <prompt>$</prompt> <userinput><command>tar -xzvf</command> <option>krusader_kde4.tar.gz</option></userinput>
      <prompt>$</prompt> <userinput><command>cd </command> <option>krusader_kde4</option></userinput>
      <prompt>$</prompt> <userinput><command>cmake </command> <option>-DCMAKE_INSTALL_PREFIX=/usr/ -DQT_INCLUDES=/usr/share/qt4/include</option></userinput>
      <prompt>$</prompt> <userinput><command>make</command></userinput>
      <prompt>$</prompt> <userinput><command>su -c </command> <option>"make install"</option></userinput>
     </screen>
</para>

 </sect1>
</chapter>