source: kde4/core/config.xml@ c9df31a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since c9df31a was c9df31a, checked in by Ragnar Thomsen <rthomsen@…>, 12 years ago

Infrastructure changes in kde section, added gwenview

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9857 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="kde-core-config" xreflabel="Starting KDE">
9 <?dbhtml filename="config.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Starting KDE</title>
17
18 <para>After <application>Kde-workspace</application> has been installed, the
19 first important milestone has been reached. Now you need to configure your
20 system to start KDE.</para>
21
22 <sect2 role="content">
23 <title>Starting KDE from the command prompt</title>
24
25 <para>To start <application>KDE</application> from the command prompt, you
26 first need to modify your <filename>.xinitrc</filename> file:</para>
27
28<screen><userinput>cat > ~/.xinitrc &lt;&lt;EOF
29# Begin .xinitrc
30
31exec ck-launch-session dbus-launch --exit-with-session startkde
32
33# End .xinitrc
34EOF</userinput></screen>
35
36 <note><para>If you are not using <application>ConsoleKit</application>, remove
37 <userinput>ck-launch-session</userinput>.</para></note>
38
39 <para>You can now start KDE using the <command>startx</command> command.</para>
40
41 </sect2>
42
43 <sect2 role="content">
44 <title>Starting KDE at boot</title>
45
46 <para>KDE comes with a graphical login interface called KDM (the KDE Display
47 Manager). KDM provides a customizable graphical login at boot. To use KDM,
48 you need to edit your <filename>/etc/inittab</filename> file (as the
49 <systemitem class="username">root</systemitem> user).
50 First, setup run-level 5 to start KDM by adding the following line (adjust
51 the path to kdm according to your system):</para>
52
53<screen><userinput>kd:5:respawn:/opt/kde4/bin/kdm</userinput></screen>
54
55 <para>Additionally, you need to change the default run-level from 3 to 5. This
56 is done by changing the line:</para>
57
58<screen><userinput>id:3:initdefault:</userinput></screen>
59
60 <para>To:</para>
61
62<screen><userinput>id:5:initdefault:</userinput></screen>
63
64 <para>You can now restart your system and see the beautiful KDE login
65 screen.</para>
66
67 </sect2>
68
69 <sect2 role="content">
70 <title>Installing further KDE packages</title>
71 <para>Every subsequent package can be built while having <application>KDE</application> up and
72 running, but remember to keep <envar>&kde-dir;</envar> and <envar>$QT4DIR</envar> set.</para>
73 </sect2>
74
75</sect1>
Note: See TracBrowser for help on using the repository browser.