source: general/sysutils/gpm/gpm-config.xml@ 369af35a

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 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 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 369af35a was 369af35a, checked in by Igor Živković <igor@…>, 20 years ago

s/source/./ in init scripts

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

  • Property mode set to 100644
File size: 3.4 KB
Line 
1<sect2>
2<title>Configuring <application><acronym>GPM</acronym></application></title>
3
4<sect3><title>gpm init.d script</title>
5<para>The <command>gpm</command> init.d script can be created using
6the following commands: <!-- (This assumes that you have followed the
7<acronym>LFS</acronym> default of having your $rc_base set to <filename
8class="directory">/etc/rc.d</filename>) --></para>
9<screen><userinput><command>cat &gt; /etc/rc.d/init.d/gpm &lt;&lt; "EOF"</command>
10#!/bin/sh
11# Begin $rc_base/init.d/gpm
12
13# Based on sysklogd script from LFS-3.1 and earlier.
14# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
15# GPM specific parts by Mark Hymers - markh@linuxfromscratch.org
16
17. /etc/sysconfig/rc
18. $rc_functions
19
20if [ -f /etc/sysconfig/mouse ]
21 then
22 source /etc/sysconfig/mouse
23fi
24
25if [ -z "$MDEVICE" ] || [ -z "$PROTOCOL" ]
26 then
27 echo "Please create an /etc/sysconfig/mouse file containing"
28 echo "MDEVICE and PROTOCOL values"
29 exit 1;
30fi
31
32case "$1" in
33 start)
34 echo "Starting gpm..."
35 loadproc gpm -m $MDEVICE -t $PROTOCOL
36 ;;
37
38 stop)
39 echo "Stopping gpm..."
40 killproc gpm
41 ;;
42
43 restart)
44 $0 stop
45 sleep 1
46 $0 start
47 ;;
48
49 status)
50 statusproc gpm
51 ;;
52
53 *)
54 echo "Usage: $0 {start|stop|restart|status}"
55 exit 1
56 ;;
57esac
58
59# End $rc_base/init.d/gpm
60<command>EOF
61chmod 755 /etc/rc.d/init.d/gpm</command></userinput></screen>
62
63<para>You then need to create symbolic links to this file in the
64relevant <filename>rc.d</filename> directories. For example:</para>
65<screen><userinput><command>cd /etc/rc.d/init.d &amp;&amp;
66ln -sf ../init.d/gpm ../rc0.d/K10gpm &amp;&amp;
67ln -sf ../init.d/gpm ../rc1.d/K10gpm &amp;&amp;
68ln -sf ../init.d/gpm ../rc2.d/K10gpm &amp;&amp;
69ln -sf ../init.d/gpm ../rc3.d/S70gpm &amp;&amp;
70ln -sf ../init.d/gpm ../rc4.d/S70gpm &amp;&amp;
71ln -sf ../init.d/gpm ../rc5.d/S70gpm &amp;&amp;
72ln -sf ../init.d/gpm ../rc6.d/K10gpm</command></userinput></screen>
73</sect3>
74
75<sect3><title>Config files</title>
76<para><filename>/etc/sysconfig/mouse</filename>
77This file contains the name of your mouse device and the protocol which
78it uses. To create this file, run the following:</para>
79
80<screen><userinput><command>cat &gt; /etc/sysconfig/mouse &lt;&lt; "EOF"</command>
81# start /etc/sysconfig/mouse
82MDEVICE=<replaceable>[yourdevice]</replaceable>
83PROTOCOL=<replaceable>[yourprotocol]</replaceable>
84# end /etc/sysconfig/mouse
85<command>EOF</command></userinput></screen>
86</sect3>
87
88<sect3><title>Configuration Information</title>
89
90<para>Examples of values to set <envar>MDEVICE</envar> and
91<envar>PROTOCOL</envar> to are</para>
92
93<screen><userinput>MDEVICE=/dev/psaux
94PROTOCOL=imps2</userinput></screen>
95
96<para>A list of which protocol values are known can be found by running
97<command>gpm -t -help</command>. Your <envar>MDEVICE</envar> setting depends on
98which type of mouse you have. For example,
99<filename>/dev/ttyS0</filename> for a serial mouse (on Windows this is
100COM1), <filename>/dev/input/mice</filename> is often used for
101<acronym>USB</acronym> mice
102and <filename>/dev/psaux</filename> for PS2 mice. It is normally
103thought not a good idea to link <filename>/dev/mouse</filename> to the relevant device, but
104instead to reference it directly.</para>
105
106</sect3>
107
108</sect2>
Note: See TracBrowser for help on using the repository browser.