~ubuntu-branches/ubuntu/precise/live-manual/precise

« back to all changes in this revision

Viewing changes to manual/de/use-cases.xml

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2010-06-06 15:30:21 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100606153021-wjm839uxrii9x2ks
Tags: upstream-2.0~a1
ImportĀ upstreamĀ versionĀ 2.0~a1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
 
3
    "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
 
4
  <!ENTITY % commondata SYSTEM "common.ent" > %commondata;
 
5
]>
 
6
<chapter id="use-cases">
 
7
<title>Use Cases</title>
 
8
 
 
9
<para>This chapter is for users to document their use cases with Debian Live.</para>
 
10
 
 
11
<sect1 id="vnc-kiosk-client">
 
12
<title>VNC Kiosk Client</title>
 
13
<para>Create an image with &live-helper; to boot directly to a VNC server.</para>
 
14
<itemizedlist>
 
15
 
 
16
<listitem>
 
17
        <para>Make a build directory: <screen>$ mkdir vncBuild</screen>
 
18
        </para>
 
19
</listitem>
 
20
 
 
21
<listitem>
 
22
        <para>Move to the build directory: <screen>$ cd vncBuild</screen>
 
23
        </para>
 
24
</listitem>
 
25
 
 
26
<listitem>
 
27
        <para>Example to config the build directory to include gdm metacity
 
28
xtightvncviewer: <screen>$ lh config --packages "gdm metacity xtightvncviewer"</screen>
 
29
        </para>
 
30
</listitem>
 
31
 
 
32
<listitem>
 
33
        <para>Create a folder /etc/skel folder for a custom .xsession for the default
 
34
user: <screen>$ mkdir -p config/chroot_local-includes/etc/skel</screen>
 
35
        </para>
 
36
</listitem>
 
37
 
 
38
<listitem>
 
39
        <para>Create the .xsession for the default user: <screen>$ touch config/chroot_local-includes/etc/skel/.xsession</screen>
 
40
        </para>
 
41
</listitem>
 
42
 
 
43
<listitem>
 
44
        <para>Edit the .xsession file to launch metacity and start xvncviewer with
 
45
something similar to the below: <screen>
 
46
        #!/bin/sh
 
47
        /usr/bin/metacity &amp;
 
48
        /usr/bin/vncviewer xxx.xxx.xxx.xxx:PORT
 
49
        exit
 
50
        </screen>
 
51
        </para>
 
52
</listitem>
 
53
 
 
54
<listitem>
 
55
        <para>Build the image: <screen># lh build</screen>
 
56
        </para>
 
57
</listitem>
 
58
 
 
59
</itemizedlist>
 
60
 
 
61
</sect1>
 
62
 
 
63
</chapter>