source: lxqt/desktop/post-install.xml@ eca7a58

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since eca7a58 was eca7a58, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • Fix starting X with startx (from xinit) and sddm (with consolekit2 and upowerd) and somwhat related fixes

◦ sddm-0.12.0: fixes for upauer, Consolekit2, DBUS_CONFIG_FILENAME,

example-config, nolisten tcp, numlock, and setxkbmap.

◦ sddm bootscript: remove upowerd parts.
◦ xinit-1.3.4: Fix startx to use the first available virtual terminal
◦ ConsoleKit2-1.0.0: Fix docdir and xinitrc.d script 90-consolekit.sh

name and place

◦ lxde-common-0.99.0: Fix lxde session start
◦ LXQt Desktop Final Instructions: Fix lxde session start
◦ xfce4-session-4.12.1: Fix lxde session start
◦ Starting KDE4: Fix lxde session start

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

  • Property mode set to 100644
File size: 4.3 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="post-install" xreflabel="LXQt-Post-Install">
9 <?dbhtml filename="post-install.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>LXQt Desktop Final Instructions</title>
17
18 <indexterm zone="post-install">
19 <primary sortas="a-post-install">LXQt-post-install</primary>
20 </indexterm>
21
22 <sect2 role="package">
23 <title>Post-Install Instructions</title>
24
25 <para>
26 Final steps, before starting <application>LXQt</application>.
27 </para>
28
29 <bridgehead renderas="sect3">Dependencies to Start LXQt</bridgehead>
30
31 <bridgehead renderas="sect4">Required</bridgehead>
32 <para role="required">
33 <xref linkend="openbox"/> (runtime) - this may be replaced by
34 another WM, see the Configuring instructions in <xref
35 linkend="lxqt-session"/>.
36 </para>
37
38 <bridgehead renderas="sect4">Recommended</bridgehead>
39 <para role="recommended">
40 <xref linkend="consolekit"/> alone or with
41 <xref linkend="sddm"/> (this has been
42 reported as the <quote>recommended <application>LXQt</application>
43 display manager</quote>) or another Display Manager, e.g.
44 <xref linkend="lxdm"/>.
45 </para>
46
47 <para condition="html" role="usernotes">
48 User Notes: <ulink url="&blfs-wiki;/post-install"/>
49 </para>
50
51 </sect2>
52
53 <sect2 role="final-config">
54 <title>Final configuration</title>
55
56 <para>
57 If installed in /usr, you do not need final configuration. Jump to
58 <quote>Starting LXQt</quote>, below.
59 </para>
60
61 <para>
62 If installed in /opt, in order for the system to find some files, run the
63 following commands, as the <systemitem class="username">root</systemitem>
64 user:
65 </para>
66
67<screen role="root"><userinput>ln -svfn $LXQT_PREFIX/share/lxqt /usr/share/lxqt &amp;&amp;
68
69for i in $LXQT_PREFIX/share/applications/*
70do
71 ln -svf $i /usr/share/applications/
72done
73
74for i in $LXQT_PREFIX/share/desktop-directories/*
75do
76 ln -svf $i /usr/share/desktop-directories/
77done
78
79unset i</userinput></screen>
80
81 </sect2>
82
83 <sect2 role="starting">
84 <title>Starting LXQt</title>
85
86 <para>
87 You can start <application>LXQt</application> from runlevel 3, using
88 <xref linkend="xinit"/>, or from runlevel 5, using a Display Manager,
89 such as <xref linkend="sddm"/>.
90 </para>
91
92 <para>
93 To start <application>LXQt</application> using <xref linkend="xinit"/>,
94 run the following commands:
95 </para>
96
97<screen><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
98<literal>ck-launch-session dbus-launch --exit-with-session startlxqt</literal>
99EOF
100
101startx</userinput></screen>
102
103 <para>
104 The X session starts on the first unused virtual terminal, normally vt7.
105 You can switch to a vtn (n=1, 2, ...) simultaneously pressing the keys
106 Ctrl-Alt-Fn. To switch back to the X session, normally started at vt7,
107 use Ctrl-Alt-F7. If started from vt1 (the usual case), you will see many
108 messages there, including X starting messages, applications automatically
109 started with the session, and eventually, some warning and error
110 messages. You may prefer to redirect those messages to a log file, which
111 not only will keep vt1 uncluttered, but also can be used for debug
112 purposes. This can be done starting X with:
113 </para>
114
115 <screen><userinput>startx &amp;&gt; ~/.x-session-errors</userinput></screen>
116
117 <para>
118 You may wish to drop consolekit and/or dbus-launch, e.g., just using
119 startlxde in .~/.xinitrc, but some functionalities such as mount/umount
120 file systems from a file manager will not be possible, or the reboot
121 option will be absent or not functioning, between other problems.
122 </para>
123
124 <para>
125 Because X is (normally) on vt7, when you shutdown the vt is switched back
126 to that one where the command starting it was executed. In this case, if
127 you wish to see the shutdown messages, simultaneously press keys Alt-F7,
128 because normally those messages appear on the vt where X was running.
129 </para>
130
131 </sect2>
132
133</sect1>
Note: See TracBrowser for help on using the repository browser.