source: lxqt/desktop/post-install.xml@ 0ea82524

12.0 12.1 12.2 gimp3 ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/for-12.3 xry111/llvm18 xry111/spidermonkey128
Last change on this file since 0ea82524 was 0ea82524, checked in by Bruce Dubbs <bdubbs@…>, 15 months ago

Update pre and post lxqt install for current conditions

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter 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="lxqt-post-install" xreflabel="LXQt-Post-Install">
9 <?dbhtml filename="post-install.html"?>
10
11 <title>LXQt Desktop Final Instructions</title>
12
13 <indexterm zone="lxqt-post-install">
14 <primary sortas="g-lxqt-post-install">LXQt-post-install</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title>Post-Install Instructions</title>
19
20 <para>
21 Final steps, before starting <application>LXQt</application>.
22 </para>
23
24 <bridgehead renderas="sect3">Dependencies to Start LXQt</bridgehead>
25
26 <bridgehead renderas="sect4">Required</bridgehead>
27 <para role="required">
28 <xref linkend="openbox"/>, or another window manager, such as
29 <xref role="nodep" linkend="xfwm4"/>, or
30 kwin from <xref role="nodep" linkend="plasma5-build"/>.
31 Note that <xref role="nodep" linkend="icewm"/> is not suitable for LXQt.
32 </para>
33
34 <bridgehead renderas="sect4">Recommended</bridgehead>
35 <para role="recommended">
36 <!--<phrase revision="sysv">
37 <xref linkend="pm-utils"/>,
38 </phrase>-->
39 <xref linkend="lightdm"/> or another Display Manager, e.g.
40 <xref role="nodep" linkend="lxdm"/>,
41 <xref linkend="desktop-file-utils"/>,
42 <!--<xref linkend="shared-mime-info"/>,-->
43 <!--<xref linkend="xdg-utils"/>,--> and
44 <xref linkend="xscreensaver"/>
45 </para>
46
47 </sect2>
48
49 <sect2 role="configuration">
50 <title>Final Configuration</title>
51
52 <para>
53 If <application>LXQt</application> is installed in <filename
54 class="directory">/usr</filename>, jump directly to <xref
55 linkend="lxqt-final-updates"/>, otherwise run the commands in the
56 next section.
57 </para>
58
59 <sect3>
60 <title>Configuration needed only if installing into /opt</title>
61 <para>
62 If <application>LXQt</application> is installed into <filename
63 class="directory">/opt</filename>, some files have to be copied to
64 <filename class="directory">/usr/share</filename>, so that the system
65 can find them. Run the following commands, as the &root; user:
66 </para>
67
68<screen role="root"><userinput>ln -svfn $LXQT_PREFIX/share/lxqt /usr/share/lxqt
69
70cp -v {$LXQT_PREFIX,/usr}/share/xsessions/lxqt.desktop
71
72for i in $LXQT_PREFIX/share/applications/*; do
73 ln -svf $i /usr/share/applications/
74done
75
76for i in $LXQT_PREFIX/share/desktop-directories/*; do
77 ln -svf $i /usr/share/desktop-directories/
78done
79
80unset i
81
82ldconfig</userinput></screen>
83
84 </sect3>
85
86 <sect3 id="lxqt-final-updates" xreflabel="LXQt Final Updates">
87 <title>LXQt Final Updates</title>
88
89 <para>
90 The desktop databases have to be created or updated at this point.
91 Run the following commands as the &root; user:
92 </para>
93
94<screen role="root"><userinput>update-mime-database /usr/share/mime &amp;&amp;
95xdg-icon-resource forceupdate --theme hicolor &amp;&amp;
96update-desktop-database -q</userinput></screen>
97
98 </sect3>
99
100 </sect2>
101
102 <sect2 role="starting">
103 <title>Starting LXQt</title>
104
105 <para revision="sysv">
106 You can start <application>LXQt</application> from runlevel 3, using
107 <xref linkend="xinit"/>, or from runlevel 5, using a Display Manager,
108 such as <xref linkend="lightdm"/>.
109 </para>
110
111 <para revision="systemd">
112 You can start <application>LXQt</application> from a TTY, using
113 <xref linkend="xinit"/>, or by using a graphical display manager such
114 as <xref linkend="lightdm"/>.
115 </para>
116
117 <para>
118 To start <application>LXQt</application> using <xref linkend="xinit"/>,
119 run the following commands:
120 </para>
121
122<screen revision="sysv"><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
123<literal>ck-launch-session dbus-launch --exit-with-session startlxqt</literal>
124EOF
125
126startx</userinput></screen>
127
128<screen revision="systemd"><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
129<literal>exec startlxqt</literal>
130EOF
131
132startx</userinput></screen>
133
134 <para>
135 The X session starts on the first unused virtual terminal, normally vt1.
136 You can switch to another vt<emphasis>n</emphasis> simultaneously
137 pressing the keys Ctrl-Alt-F<emphasis>n</emphasis>
138 (<emphasis>n</emphasis>=2, 3, ...). To switch back to the X session,
139 normally started at vt1, use Ctrl-Alt-F1. The vt where the command
140 <command>startx</command> was executed will display many messages,
141 including X starting messages, applications automatically started with
142 the session, and eventually, some warning and error messages. You may
143 prefer to redirect those messages to a log file, which not only will keep
144 the initial vt uncluttered, but can also be used for debug purposes. This
145 can be done starting X with:
146 </para>
147
148 <screen><userinput>startx &amp;&gt; ~/.x-session-errors</userinput></screen>
149
150 </sect2>
151
152</sect1>
Note: See TracBrowser for help on using the repository browser.