source: xsoft/other/tigervnc.xml@ 022f4aa

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 022f4aa was 022f4aa, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to tigervnc-1.7.1

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

  • Property mode set to 100644
File size: 10.3 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 <!ENTITY tigervnc-download-http "&sources-anduin-http;/tigervnc/tigervnc-&tigervnc-version;.tar.gz">
8 <!ENTITY tigervnc-download-ftp " ">
9 <!ENTITY tigervnc-md5sum "82dbb9d178b8e313b51f1651e0398dfe">
10 <!ENTITY tigervnc-size "1.3 MB">
11 <!ENTITY tigervnc-buildsize "149 MB">
12 <!ENTITY tigervnc-time "1.7 SBU">
13 <!ENTITY tigervnc-xorg-version "1.18.4">
14]>
15
16<sect1 id="tigervnc" xreflabel="tigervnc-&tigervnc-version;">
17 <?dbhtml filename="tigervnc.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Tigervnc-&tigervnc-version;</title>
25
26 <indexterm zone="tigervnc">
27 <primary sortas="a-tigervnc">tigervnc</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Tigervnc</title>
32
33 <para><application>Tigervnc</application> is an advanced VNC (Virtual
34 Network Computing) implementation. It allows creation of an Xorg server
35 not tied to a physical console and also provides a client for
36 viewing of the remote graphical desktop.
37 </para>
38
39 &lfs7a_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>Download (HTTP): <ulink url="&tigervnc-download-http;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download (FTP): <ulink url="&tigervnc-download-ftp;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download MD5 sum: &tigervnc-md5sum;</para>
51 </listitem>
52 <listitem>
53 <para>Download size: &tigervnc-size;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated disk space required: &tigervnc-buildsize;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated build time: &tigervnc-time;</para>
60 </listitem>
61 </itemizedlist>
62
63 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
64 <itemizedlist spacing="compact">
65 <listitem>
66 <para>
67 Required file:
68 <ulink url="&xorg-download-http;/xserver/xorg-server-&tigervnc-xorg-version;.tar.bz2"/>
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Required patch:
74 <ulink url="&patch-root;/tigervnc-&tigervnc-version;-gethomedir-1.patch"/>
75 </para>
76 </listitem>
77 </itemizedlist>
78
79 <note><para>The version of <application>Xorg</application> may eventually be
80 a few versions out of date, but is required for the customizations needed
81 for this package.</para></note>
82
83 <bridgehead renderas="sect3">Tigervnc Dependencies</bridgehead>
84
85 <bridgehead renderas="sect4">Required</bridgehead>
86 <para role="required">
87 <xref linkend="cmake"/>,
88 <xref linkend="fltk"/>,
89 <xref linkend="gnutls"/>,
90 <xref linkend="libgcrypt"/>,
91 <xref linkend="libjpeg"/>,
92 <xref linkend="pixman"/>, and
93 <!-- commented until tigervnc can use the 1.19 xorg-server
94 <xref linkend="xorg7-app"/> -->
95 <xref linkend="xorg7-legacy"/>
96 </para>
97
98 <bridgehead renderas="sect4">Recommended</bridgehead>
99 <para role="recommended">
100 <xref linkend="imagemagick"/> and
101 <xref linkend="linux-pam"/>
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/tigervnc"/></para>
106
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of Tigervnc</title>
111
112 <para>Install <application>tigervnc</application> by running the following
113 commands:</para>
114
115<screen><userinput>patch -Np1 -i ../tigervnc-&tigervnc-version;-gethomedir-1.patch &amp;&amp;
116
117mkdir -vp build &amp;&amp;
118cd build &amp;&amp;
119
120# Build viewer
121cmake -G "Unix Makefiles" \
122 -DCMAKE_INSTALL_PREFIX=/usr \
123 -DCMAKE_BUILD_TYPE=Release \
124 -Wno-dev .. &amp;&amp;
125make &amp;&amp;
126
127# Build server
128cp -vR ../unix/xserver unix/ &amp;&amp;
129tar -xf ../xorg-server-&tigervnc-xorg-version;.tar.bz2 -C unix/xserver --strip-components=1 &amp;&amp;
130
131pushd unix/xserver &amp;&amp;
132 patch -Np1 -i ../../../unix/xserver117.patch &amp;&amp;
133 autoreconf -fi &amp;&amp;
134
135 ./configure $XORG_CONFIG \
136 --disable-xwayland --disable-dri --disable-dmx \
137 --disable-xorg --disable-xnest --disable-xvfb \
138 --disable-xwin --disable-xephyr --disable-kdrive \
139 --disable-devel-docs --disable-config-hal --disable-config-udev \
140 --disable-unit-tests --disable-selective-werror \
141 --disable-static --enable-dri3 \
142 --without-dtrace --enable-dri2 --enable-glx \
143 --with-pic &amp;&amp;
144 make TIGERVNC_SRCDIR=`pwd`/../../../ &amp;&amp;
145popd</userinput></screen>
146
147 <para>This package does not come with a test suite.</para>
148
149 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
150
151<screen role="root"><userinput>#Install viewer
152make install &amp;&amp;
153
154#Install server
155pushd unix/xserver/hw/vnc &amp;&amp;
156 make install &amp;&amp;
157popd &amp;&amp;
158
159[ -e /usr/bin/Xvnc ] || ln -svf $XORG_PREFIX/bin/Xvnc /usr/bin/Xvnc</userinput></screen>
160
161 <para>Finally, create a menu entry. As the
162 <systemitem class="username">root</systemitem> user:</para>
163
164<screen role="root"><userinput>cat &gt; /usr/share/applications/vncviewer.desktop &lt;&lt; "EOF"
165<literal>[Desktop Entry]
166Type=Application
167Name=TigerVNC Viewer
168Comment=VNC client
169Exec=/usr/bin/vncviewer
170Icon=tigervnc
171Terminal=false
172StartupNotify=false
173Categories=Network;RemoteAccess;</literal>
174EOF
175
176install -vm644 ../media/icons/tigervnc_24.png /usr/share/pixmaps &amp;&amp;
177ln -sfv tigervnc_24.png /usr/share/pixmaps/tigervnc.png</userinput></screen>
178
179 </sect2>
180
181 <sect2 role="commands">
182 <title>Command Explanations</title>
183
184 <para><command>patch ...</command>: This patch updates a build file
185 so that the Xvnc libraries cna be found during the build process.</para>
186
187 <para><command>tar -xf .. xorg-server...</command>: This command extracts the
188 standard Xorg packages into the tree in a location needed for modification.</para>
189
190 <para><option>--disable ...</option>: Most options that are usually needed for
191 the standard Xorg server are not needed fror the Xvnc instance being built.</para>
192
193 <para><command>[ -e /usr/bin/Xvnc ] || ln ... Xvnc</command>: If the Xvnc server
194 is not installed in the <filename class='directory'>/usr/bin</filename>
195 directory, then create a link so the <command>vncserver</command> script
196 can find it.</para>
197
198 </sect2>
199
200 <sect2 role="configuration">
201 <title>Configuring Tigervnc</title>
202
203 <para>The user specific configuration files of vncserver resides
204 in the <filename class='directory'>.vnc</filename> directory in the user's
205 home directory. The <filename>xstartup</filename> file in that
206 directory is a script specifying what commands to be run
207 when a VNC desktop is started. If no <filename>xstartup</filename> file
208 exists, <command>vncserver</command> will try to start an xterm in a twm
209 session. An example <filename>xstartup</filename> would be:</para>
210
211<screen>#!/bin/sh
212[ -x /etc/vnc/xstartup ] &amp;&amp; exec /etc/vnc/xstartup
213[ -r $HOME/.Xresources ] &amp;&amp; xrdb $HOME/.Xresources
214startlxde &amp;</screen>
215
216 </sect2>
217
218 <sect2 role="content">
219 <title>Contents</title>
220
221 <segmentedlist>
222 <segtitle>Installed Programs</segtitle>
223 <segtitle>Installed Libraries</segtitle>
224 <segtitle>Installed Directories</segtitle>
225
226 <seglistitem>
227 <seg>Xvnc,
228 vncconfig,
229 vncpasswd,
230 vncserver,
231 vncviewer, and
232 x0vncserver</seg>
233
234 <seg>libvnc.so</seg>
235 <seg>/usr/share/doc/tigervnc-&tigervnc-version;</seg>
236 </seglistitem>
237 </segmentedlist>
238
239 <variablelist>
240 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
241 <?dbfo list-presentation="list"?>
242 <?dbhtml list-presentation="table"?>
243
244 <varlistentry id="xvnc">
245 <term><command>Xvnc</command></term>
246 <listitem>
247 <para> is a X VNC (Virtual Network Computing) server.
248 It is based on a standard X server, but it has a
249 "virtual" screen rather than a physical one.</para>
250 <indexterm zone="tigervnc xvnc">
251 <primary sortas="b-xvnc">Xvnc</primary>
252 </indexterm>
253 </listitem>
254 </varlistentry>
255
256 <varlistentry id="vncconfig">
257 <term><command>vncconfig</command></term>
258 <listitem>
259 <para>is a program to configure and control a VNC server.</para>
260 <indexterm zone="tigervnc vncconfig">
261 <primary sortas="b-vncconfig">vncconfig</primary>
262 </indexterm>
263 </listitem>
264 </varlistentry>
265
266 <varlistentry id="vncpasswd">
267 <term><command>vncpasswd</command></term>
268 <listitem>
269 <para>
270 allows you to set the password used to access VNC desktops.
271 </para>
272 <indexterm zone="tigervnc vncpasswd">
273 <primary sortas="b-vncpasswd">vncpasswd</primary>
274 </indexterm>
275 </listitem>
276 </varlistentry>
277
278 <varlistentry id="vncserver">
279 <term><command>vncserver</command></term>
280 <listitem>
281 <para>is a perl script used to start or stop a VNC server.</para>
282 <indexterm zone="tigervnc vncserver">
283 <primary sortas="b-vncserver">vncserver</primary>
284 </indexterm>
285 </listitem>
286 </varlistentry>
287
288 <varlistentry id="vncviewer">
289 <term><command>vncviewer</command></term>
290 <listitem>
291 <para>is a client used to connect to VNC desktops.</para>
292 <indexterm zone="tigervnc vncviewer">
293 <primary sortas="b-vncviewer">vncviewer</primary>
294 </indexterm>
295 </listitem>
296 </varlistentry>
297
298 <varlistentry id="x0vncserver">
299 <term><command>x0vncserver</command></term>
300 <listitem>
301 <para>is a program to make an X display on a physical
302 terminal accessible via TigerVNC or compatible viewers.</para>
303 <indexterm zone="tigervnc x0vncserver">
304 <primary sortas="b-x0vncserver">x0vncserver</primary>
305 </indexterm>
306 </listitem>
307 </varlistentry>
308
309 </variablelist>
310
311 </sect2>
312
313</sect1>
Note: See TracBrowser for help on using the repository browser.