summaryrefslogtreecommitdiffstats
path: root/gnome2-accessibility-guide/C/sysadmin.xml
blob: 23eab2b5a7546e1d74d743a2f625995cfb484945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972

<appendix id="sysadmin-0">
<title>System Administration</title>
<para>This appendix
describes some tasks that a system administrator needs to perform to enable
accessible login and to facilitate the use of the assistive technologies that
are available in the GNOME Desktop.</para>
<sect1 id="sysadmin-27">
<title>Configuring the Desktop for Accessible Login</title>
<indexterm>
<primary>accessible login feature</primary>
</indexterm>
<para>The GNOME Desktop includes an Accessible
Login feature. The Accessible Login feature enables users to: </para>
<itemizedlist>
<listitem>
<para>Log in to the desktop even if the user cannot easily use the
screen, mouse, or keyboard in the usual way.</para>
</listitem>
<listitem>
<para>Launch assistive technologies at login time by associating
a user action with an assistive technology application. The user can perform
the user action from the standard keyboard, or from a keyboard, pointing device,
or switch device that is attached to the USB or PS/2 mouse port. These user
actions are called gestures.</para>
</listitem>
<listitem>
<para>Change the visual appearance of the login dialog before the
user logs in, for example, to use a high contrast theme for better visibility. </para>
</listitem>
</itemizedlist>
<sect2 id="sysadmin-34">
<title>To Enable Accessible Login</title>
<indexterm>
<primary>GDM</primary>
</indexterm>
<para>To enable the Accessible
Login feature for the GNOME
Desktop, you must configure the desktop to use the GNOME Display Manager
(GDM) as the login manager. GDM is the default login manager on Linux systems
but not on Solaris systems, therefore the instructions to enable Accessible
Login differ depending on the platform you are using. </para>
<sect3 id="sysadmin-38">
<title>To Enable and Configure GDM on Solaris Systems</title>
<para>To enable and configure GDM as the login manager on Solaris systems,
perform the following steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user.</para>
</listitem>
<listitem>
<para>Open the file <filename>/etc/X11/gdm/gdm.conf</filename>.</para>
</listitem>
<listitem>
<para>Search the file for the following line: </para>
<para>
<literal>#AddGtkModules=false</literal>
</para>
<para>and replace the line with the following:</para>
<para>
<literal>AddGtkModules=true</literal>
</para>
<para>This step enables the GtkModules.</para>
</listitem>
<listitem>
<para>Search the file for the following line: </para>
<para>
<literal>#GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener</literal>
</para>
<para>and delete the <literal>#</literal> from the start of the line so that
the line reads:</para>
<para>
<literal>GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener</literal>
</para>
<note>
<para>The above lines must be displayed as single lines in the <filename>gdm.conf</filename> file without line breaks. The formatting of this guide
may display the lines over two lines.</para>
</note>
<para>This step loads all of the GtkModules to enable assistive technologies
such as <application>On-Screen Keyboard</application> and <application>Screen
Reader and Magnifier</application>. You can edit the line above further to
load only the GtkModules that you require to support the user base. For example: </para>
<itemizedlist>
<listitem>
<para>If you need to use the <application>Screen Reader and Magnifier</application>, include <literal>gail</literal> and <literal>atk-bridge</literal>.</para>
</listitem>
<listitem>
<para>If you need to use a pointing device without buttons or switches,
include <literal>gail</literal>, <literal>atk-bridge</literal>, and<literal>dwellmouselistener</literal>. </para>
</listitem>
<listitem>
<para>If you use pointing devices with switches, alternative physical
keyboards, or switch and button devices, include <literal>keymouselistener</literal>.</para>
</listitem>
<listitem>
<para><application>On-Screen Keyboard</application> can operate
without <literal>gail</literal> and <literal>atk-bridge</literal> but with
a reduced feature set. </para>
</listitem>
</itemizedlist>
<para>For optimum accessibility, include <literal>gail</literal> and <literal>atk-bridge</literal>.</para>
</listitem>
<listitem>
<para>Save the <filename>/etc/X11/gdm/gdm.conf</filename> file.</para>
</listitem>
<listitem>
<para>Enter the following command to stop the <application>dtlogin</application> manager:</para>
<para>
<command>/usr/dt/bin/dtconfig -d</command>
</para>
</listitem>
<listitem>
<para>Enter the following commands to configure GDM as the login
manager:</para>
<para>
<command>svccfg import /var/svc/manifest/application/gdm2-login.xml</command>
</para>
<para>
<command>svcadm enable application/gdm2-login</command>
</para>
<note>
<para>If you make any changes to the <filename>/etc/X11/gdm/gdm.conf</filename> file after you enable GDM, you can execute the following command
to restart GDM and activate the changes:</para>
<para>
<command>gdm-restart</command>
</para>
</note>
</listitem>
<listitem>
<para>Edit the file <filename>/etc/passwd</filename> to append the
following to the end of the <literal>gdm</literal> line:</para>
<para>
<literal>:/etc/X11/gdm/home</literal>
</para>
</listitem>
<listitem>
<para>Create the <literal>/etc/X11/gdm/home</literal> directory
and assign ownership of the directory to the <literal>gdm</literal> user.</para>
</listitem>
<listitem>
<para>Restart your system.</para>
</listitem>
</orderedlist>
</sect3>
<sect3 id="sysadmin-39">
<title>To Configure GDM on Linux Systems</title>
<para>To configure GDM on Linux systems, perform the following steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user.</para>
</listitem>
<listitem>
<para>Open the file <filename>/etc/X11/gdm/gdm.conf</filename>.</para>
</listitem>
<listitem>
<para>Search the file for the following line: </para>
<para>
<literal>#AddGtkModules=false</literal>
</para>
<para>and replace the line with the following:</para>
<para>
<literal>AddGtkModules=true</literal>
</para>
<para>This step enables the GtkModules.</para>
</listitem>
<listitem>
<para>Search the file for the following line: </para>
<para>
<literal>#GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener</literal>
</para>
<para>and delete the <literal>#</literal> from the start of the line so that
the line reads:</para>
<para>
<literal>GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener</literal>
</para>
<note>
<para>The above lines must be displayed as single lines in the <filename>gdm.conf</filename> file without line breaks. The formatting of this guide
may display the lines over two lines.</para>
</note>
<para>This step loads all of the GtkModules to enable assistive technologies
such as <application>On-Screen Keyboard</application> and <application>Screen
Reader and Magnifier</application>. You can edit the line above further to
load only the GtkModules that you require to support the user base. For example: </para>
<itemizedlist>
<listitem>
<para>If you need to use the <application>Screen Reader and Magnifier</application>, include <literal>gail</literal> and <literal>atk-bridge</literal>.</para>
</listitem>
<listitem>
<para>If you need to use a pointing device without buttons or switches,
include <literal>gail</literal>, <literal>atk-bridge</literal>, and <literal>dwellmouselistener</literal>. </para>
</listitem>
<listitem>
<para>If you use pointing devices with switches, alternative physical
keyboards, or switch and button devices, include <literal>keymouselistener</literal>.</para>
</listitem>
<listitem>
<para><application>On-Screen Keyboard</application> can operate
without <literal>gail</literal> and <literal>atk-bridge</literal> but with
a reduced feature set. </para>
</listitem>
</itemizedlist>
<para>For optimum accessibility, include <literal>gail</literal> and <literal>atk-bridge</literal>.</para>
</listitem>
<listitem>
<para>Save the <filename>/etc/X11/gdm/gdm.conf</filename> file.</para>
<note>
<para>If you make any changes to the <filename>/etc/X11/gdm/gdm.conf</filename> file after you enable GDM, you can execute the following command
to restart GDM and activate the changes:</para>
<para>
<command>gdm-restart</command>
</para>
</note>
</listitem>
<listitem>
<para>Edit the file <filename>/etc/group</filename> and append the
following to the <literal>audio</literal> line:</para>
<para>
<literal>,gdm</literal>
</para>
<para>This step ensures that speech works with GDM.</para>
</listitem>
<listitem>
<para>Restart your system.</para>
</listitem>
</orderedlist>
</sect3>
</sect2>
<sect2 id="sysadmin-29">
<title>To Start Assistive Technologies at Login</title>
<indexterm>
<primary>gestures</primary>
</indexterm>
<para>If you load the <literal>keymouselistener</literal> and <literal>dwellmouselistener</literal> GtkModules
in the GDM configuration file, you can assign user actions to launch specific
assistive technologies at login time. These user actions are called gestures.
The gesture associations are contained in the following GDM configuration
files: </para>
<itemizedlist>
<listitem>
<para>
<filename>/etc/X11/gdm/modules/AccessKeyMouseEvents</filename>
</para>
</listitem>
<listitem>
<para>
<filename>/etc/X11/gdm/modules/AccessDwellMouseEvents</filename>
</para>
</listitem>
</itemizedlist>
<note>
<para>If you modify these files, you must restart your system before
the changes take effect.</para>
</note>
<para>The following sections contain examples of the gestures that you can
add to the GDM configuration files.</para>
<note>
<para>The gestures must be contained in a single line in the <filename>AccessKeyMouseEvents</filename> file without line breaks. The formatting of
this guide might display the examples in the following sections over two lines. </para>
</note>
<sect3 id="sysadmin-30">
<title>To Start Screen Reader Using a Keyboard Shortcut</title>
<para>Edit the <filename>AccessKeyMouseEvents</filename> file to associate
keyboard shortcuts with assistive technologies. For example, the following
line enables you to press-and-hold <keycombo><keycap>Ctrl</keycap><keycap>S</keycap></keycombo>
for one second to start <application>Screen Reader and Magnifier</application>
in speech and Braille mode:</para>
<para>
<emphasis>Solaris:</emphasis>
</para>
<para>
<literal>&lt;Control&gt;s 1 1000 10000 /usr/sfw/bin/srcore --login --disable-magnifier
--enable-speech --enable-braille</literal>
</para>
<para>
<emphasis>Linux:</emphasis>
</para>
<para>
<literal>&lt;Control&gt;s 1 1000 10000 srcore --login --disable-magnifier
--enable-speech --enable-braille</literal>
</para>
</sect3>
<sect3 id="sysadmin-41">
<title>To Start Magnifier Using a Keyboard Shortcut</title>
<para>Edit the <filename>AccessKeyMouseEvents</filename> file to associate
keyboard shortcuts with assistive technologies. For example, the following
line enables you to press-and-hold <keycombo><keycap>Ctrl</keycap><keycap>M</keycap></keycombo>
for one second to start <application>Screen Reader and Magnifier</application>
in magnifier mode:</para>
<para>
<emphasis>Solaris:</emphasis>
</para>
<para>
<literal>&lt;Control&gt;m 1 1000 10000 /usr/sfw/bin/srcore --login --enable-magnifier
--disable-speech</literal>
</para>
<para>
<emphasis>Linux:</emphasis>
</para>
<para>
<literal>&lt;Control&gt;m 1 1000 10000 srcore --login --enable-magnifier
--disable-speech</literal>
</para>
</sect3>
<sect3 id="sysadmin-31">
<title>To Start On-Screen Keyboard Using a Switch or Button Gesture</title>
<para>Edit the <filename>AccessKeyMouseEvents</filename> file to associate
switch, key, or button gestures with assistive technologies. Since the primary
input device for many <application>On-Screen Keyboard</application> users
is a switch or button, this is a good way to enable users to start <application>On-Screen Keyboard</application> at login time. </para>
<para>If there is a tendency for a user to start an application unintentionally,
you can associate the gestures with multiple switch presses or minimum durations.
For example, the following line starts <application>On-Screen Keyboard</application>
in inverse scanning mode when the user presses the switch that is defined
as Switch 2 three times within two seconds, for a minimum of 100 milliseconds
for each press:</para>
<para>
<emphasis>Solaris:</emphasis>
</para>
<para>
<literal>&lt;Switch2&gt;3 100 2000 /usr/sfw/bin/gok --login --accessmethod=inversescanning
--scan-action=switch1 --select-action=switch2</literal>
</para>
<para>
<emphasis>Linux:</emphasis>
</para>
<para>
<literal>&lt;Switch2&gt;3 100 2000 gok --login --accessmethod=inversescanning
--scan-action=switch1 --select-action=switch2</literal>
</para>
<para>Users who use single switches may prefer to start <application>On-Screen
Keyboard</application> in automatic scanning mode. The following line starts <application>On-Screen Keyboard</application> in automatic scanning mode when the user
presses the switch on an alternative access device for more than four seconds:</para>
<para>
<emphasis>Solaris:</emphasis>
</para>
<para>
<literal>&lt;Switch&gt;1 4000 5000 /usr/sfw/bin/gok --login --accessmethod=automaticscanning
--scan-action=switch1 --select-action=switch1</literal>
</para>
<para>
<emphasis>Linux:</emphasis>
</para>
<para>
<literal>&lt;Switch&gt;1 4000 5000 gok --login --accessmethod=automaticscanning
--scan-action=switch1 --select-action=switch1</literal>
</para>
<para>For information about the <application>On-Screen Keyboard</application>
operating modes, see the online Help for <application>On-Screen Keyboard</application>.</para>
</sect3>
<sect3 id="sysadmin-32">
<title>To Start On-Screen Keyboard Using a Motion-only Gesture</title>
<para>You can define gestures that involve only the motion of a pointing device
such as a mouse, or an alternative pointing device, such as a head pointer
or trackball. The syntax of the gesture does not change depending on whether
you are using a mouse or an alternative pointing device. Edit the <filename>AccessKeyMouseEvents</filename> file to associate motion gestures with assistive
technologies.</para>
<para>If the <literal>dwellmouselistener</literal> GtkModule is loaded, alternative
pointing devices are temporarily latched to the core pointer. This means that
if the user moves the alternative pointing device, the onscreen pointer moves.</para>
<para>For example, the following line starts <application>On-Screen Keyboard</application> in dwell mode when the user moves the onscreen pointer from
inside the login dialog through the top edge, back into the dialog through
the top edge, out of the dialog through the left edge, back into the dialog
through the left edge, and similarly through the bottom and right edges of
the dialog in a cross pattern:</para>
<para>
<emphasis>Solaris:</emphasis>
</para>
<para>
<literal>TTLLBBRR O 10000 /usr/sfw/bin/gok --login --access-method=dwellselection
--input-device=MOUSE[3]</literal>
</para>
<para>
<emphasis>Linux:</emphasis>
</para>
<para>
<literal>TTLLBBRR O 10000 gok --login --access-method=dwellselection
--input-device=MOUSE[3]</literal>
</para>
<para>Note that the <literal>--input-device</literal> parameter specified
in the gesture must match the name of the extended user input device, such
as a head pointer or trackball, as specified in <filename>/etc/X11/XF86Config</filename>.</para>
</sect3>
</sect2>
<sect2 id="sysadmin-33">
<title>Additional Requirements for Accessible Login</title>
<para>To enable the Accessible Login feature to use alternative pointing devices
and switch devices such as sip-and-puff switches, wheelchair-mounted switches,
or trackballs, you might need to modify your X server system configuration
to recognize these devices. You can use most devices that emulate mouse buttons
with the Accessible Login feature and <application>On-Screen Keyboard</application>,
including USB single switches and mouse-like pointing devices.</para>
<note>
<para>You should not configure an alternative input device to control
the primary onscreen pointer. This might result in undesirable behavior or
cause situations from which the user of the alternate input device cannot
recover without using the primary keyboard or mouse. To prevent this problem,
please remove any occurrences of the attributes <literal>SendCore</literal>
or <literal>AlwaysCore</literal> from any of <literal>InputDevice</literal>
lines in the X Server configuration file.</para>
</note>
</sect2>
</sect1>
<sect1 id="sysadmin-7">
<title>Configuring the Java Environment for Accessibility on Solaris Systems</title>
<indexterm>
<primary>Java environment, configuring</primary>
</indexterm>
<para>To configure the Java environment on Solaris systems for accessibility, perform
the following steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user to the base directory
of the Java SDK installation. </para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>cd jre/lib</command>
</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>ln -s /usr/share/jar/accessibility.properties</command>
</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>cd ext</command>
</para>
</listitem>
<listitem>
<para>Enter the following command: </para>
<para>
<command>ln -s /usr/share/jar/gnome-java-bridge.jar</command>
</para>
</listitem>
</orderedlist>
</sect1>
<sect1 id="sysadmin-55">
<title>Enabling XKB on Solaris Systems</title>
<indexterm>
<primary>XKB</primary>
</indexterm>
<para>If you are using the desktop
for the Solaris operating system on a SPARC platform, you must enable XKB
on your system before you can use the <application>AccessX</application> preference
tool, <application>Screen Reader and Magnifier</application>, or <application>On-Screen Keyboard</application>. </para>
<note>
<para>XKB is not currently supported on Sun Ray systems.</para>
</note>
<para>To enable XKB on a non-Sun Ray Solaris system, perform the following
steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user.</para>
</listitem>
<listitem>
<para>Check if the path and file <filename>/etc/dt/config/Xservers</filename> exists on your system.</para>
</listitem>
<listitem>
<para>If the <filename>/etc/dt/config</filename> directory does
not exist, enter the following command:</para>
<screen>
<command>mkdir -p /etc/dt/config</command>
</screen>
</listitem>
<listitem>
<para>If the <filename>Xservers</filename> file is not present,
enter the following command:</para>
<screen>
<command>cp /usr/dt/config/Xservers /etc/dt/config/Xservers</command>
</screen>
</listitem>
<listitem>
<para>Open the <filename>Xservers</filename> file in a text editor
and scroll to the end of the file. </para>
</listitem>
<listitem>
<para>Append the following to the command line at the end of the
file:</para>
<screen>
<userinput>+kb</userinput>
</screen>
</listitem>
<listitem>
<para>Save and close the <filename>Xservers</filename> file.</para>
</listitem>
<listitem>
<para>Enter the following command at a command line:</para>
<screen>
<command>pkill -HUP dtlogin</command>
</screen>
</listitem>
<listitem>
<para>Open the <filename>/etc/X11/gdm/gdm.conf</filename> file in
a text editor.</para>
</listitem>
<listitem>
<para>Scroll towards the end of the file until you see the line <literal>[server - standard]</literal>.</para>
</listitem>
<listitem>
<para>Edit the <literal>command</literal> line in this section to
append the following to the end of the line:</para>
<para>
<command>+accessx +kb</command>
</para>
</listitem>
<listitem>
<para>Save and close the <filename>gdm.conf</filename> file.</para>
</listitem>
<listitem>
<para>Log out of your session and log in again.</para>
</listitem>
<listitem>
<para>To verify if XKB is running, execute the following command: </para>
<para>
<command>xdpyinfo</command>
</para>
<para>then search for XKEYBOARD in the extensions list.</para>
</listitem>
</orderedlist>
</sect1>
<sect1 id="sysadmin-6">
<title>Enabling Full Screen Magnification</title>
<indexterm>
<primary>Screen Reader and Magnifier</primary>
<secondary>enabling
full screen magnification</secondary>
</indexterm>
<para>The following sections
describe the methods to enable full screen magnification.</para>
<sect2 id="sysadmin-48">
<title>To Enable Full Screen Magnification Using Two Video Cards</title>
<para>To enable full screen magnification in <application>Screen Reader and
Magnifier</application> using two physical video cards, perform the following
steps:</para>
<orderedlist>
<listitem>
<para>Configure two video cards as :0.0 and :0.1.</para>
<note>
<para>It is not essential that both video cards have the same resolution
and bit depth. However, if the resolutions and bit depths of both cards differ
greatly, the apparent magnification factor may differ slightly from the nominal
magnification factor.</para>
</note>
</listitem>
<listitem>
<para>Choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Accessibility</guisubmenu><guimenuitem>Screen Reader and Magnifier</guimenuitem></menuchoice>.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Preferences</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Magnifier</guilabel> to open the <guilabel>Magnifier Preferences</guilabel> dialog.</para>
</listitem>
<listitem>
<para>Click on the <guibutton>Add/Modify</guibutton> button to display
the <guilabel>Zoomer Options</guilabel> dialog.</para>
</listitem>
<listitem>
<para>In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.0</userinput> in the <guilabel>Source</guilabel> text box. </para>
</listitem>
<listitem>
<para>In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.1</userinput> in the <guilabel>Target</guilabel> text box. </para>
</listitem>
<listitem>
<para>Set the Zoomer Placement values to be <literal>[0,0,1023,767]</literal>.</para>
<note>
<para>These instructions assume a video resolution of 1024x768. </para>
</note>
</listitem>
<listitem>
<para>Click <guibutton>Apply</guibutton> and <guibutton>Close</guibutton>
to close the <guilabel>Zoomer Options</guilabel> dialog. </para>
<para>The magnified view is displayed on the second display 0.1.</para>
</listitem>
</orderedlist>
</sect2>
<sect2 id="sysadmin-49">
<title>To Enable Full Screen Magnification Using One Video Card on Linux Systems</title>
<para>To enable full screen magnification on Linux systems using one physical
video card and one virtual video card, perform the following steps:</para>
<orderedlist>
<listitem>
<para>Open the file <filename>/etc/X11/XF86Config</filename>.</para>
</listitem>
<listitem>
<para>Create a new section at the end of the file as follows:</para>
<literallayout>Section &quot;Device&quot;
Boardname &quot;dummy&quot;
Driver &quot;dummy&quot;
Identifier &quot;dummy&quot;
VendorName &quot;dummy&quot;
EndSection </literallayout>
</listitem>
<listitem>
<para>Copy the <literal>Monitor</literal> section and paste it at
the end of the file.</para>
</listitem>
<listitem>
<para>In the new <literal>Monitor</literal> section, edit the <literal>Identifier</literal> line as follows:</para>
<para>
<literallayout>Identifier &quot;MonitorD&quot;</literallayout>
</para>
</listitem>
<listitem>
<para>Copy the <literal>Screen</literal> section and paste it at
the end of the file.</para>
</listitem>
<listitem>
<para>In the new <literal>Screen</literal> section, edit the <literal>Device</literal>, <literal>Identifier</literal>, and <literal>Monitor</literal>
lines as follows:</para>
<para>
<literallayout>Device &quot;dummy&quot;
Identifier &quot;ScreenD&quot;
Monitor &quot;MonitorD&quot;</literallayout>
</para>
</listitem>
<listitem>
<para>Edit the <literal>ServerLayout</literal> section to change
the <literal>Screen</literal> line as follows:</para>
<para>
<literallayout>Screen &quot;Screen[0]&quot; 0 0</literallayout>
</para>
</listitem>
<listitem>
<para>Insert the following line in the <literal>ServerLayout</literal>
section:</para>
<para>
<literallayout>Screen &quot;Screen[D]&quot; RightOf &quot;Screen[0]&quot;</literallayout>
</para>
</listitem>
<listitem>
<para>Save the <filename>/etc/X11/XF86Config</filename> file.</para>
</listitem>
<listitem>
<para>Restart the X Server.</para>
</listitem>
<listitem>
<para>Start the <application>Screen Reader and Magnifier</application>
application.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Startup Mode</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.</para>
</listitem>
<listitem>
<para>Select the <guilabel>Magnifier</guilabel> option in the <guilabel>Startup Mode</guilabel> dialog.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Preferences</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Magnifier</guilabel> to open the <guilabel>Magnifier Preferences</guilabel> dialog.</para>
</listitem>
<listitem>
<para>Click on the <guibutton>Add/Modify</guibutton> button to display
the <guilabel>Zoomer Options</guilabel> dialog.</para>
</listitem>
<listitem>
<para>In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.1</userinput> in the <guilabel>Source</guilabel> text box. </para>
</listitem>
<listitem>
<para>In the <guilabel>Zoomer Placement</guilabel> section, set
the value of the <guilabel>Left</guilabel> spin box to <userinput>0</userinput>.</para>
</listitem>
<listitem>
<para>Click <guibutton>Apply</guibutton>.</para>
<para>The <application>Screen Reader and Magnifier</application> user interface
is no longer visible.</para>
</listitem>
<listitem>
<para>Log out of your session.</para>
</listitem>
<listitem>
<para>Log in to a new session.</para>
</listitem>
<listitem>
<para>Enter the following command to start <application>Screen Reader
and Magnifier</application> in full screen magnification mode:</para>
<para>
<command>gnopernicus -display :0.1</command>
</para>
</listitem>
<listitem>
<para>When you log out of your session, select the <guilabel>Save
current setup</guilabel> option. </para>
</listitem>
</orderedlist>
</sect2>
</sect1>
<sect1 id="sysadmin-52">
<title>Enabling Braille</title>
<indexterm>
<primary>Braille, enabling</primary>
</indexterm>
<para>To enable
your system to support Braille output, you must configure the access rights
to the serial port to which the Braille device is connected. The following
sections describe the steps that you need to perform depending on your operating
system.</para>
<sect2 id="sysadmin-53">
<title>To Enable Braille on Solaris Systems</title>
<para>To configure the serial port to which the Braille device is connected
on Solaris systems, perform the following steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user.</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>chmod 777 /dev/cua/a</command>
</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>chmod 777 /dev/cua/b</command>
</para>
</listitem>
<listitem>
<para>Change the permissions to <literal>777</literal> on the devices
to which the symbolic links <literal>/dev/cua/a</literal> and <literal>/dev/cua/b</literal> point. </para>
</listitem>
</orderedlist>
<note>
<para>If your system uses <command>/dev/cua/a</command> for system log
messages, Braille will not work on that serial port. Use <command>/dev/cua/b</command> instead.</para>
</note>
</sect2>
<sect2 id="sysadmin-54">
<title>To Enable Braille on Linux Systems</title>
<para>To configure the serial port to which the Braille device is connected
on Linux systems, perform the following steps:</para>
<orderedlist>
<listitem>
<para>Log in as the <literal>root</literal> user.</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>chmod 777 /dev/ttyS0</command>
</para>
</listitem>
<listitem>
<para>Enter the following command:</para>
<para>
<command>chmod 777 /dev/ttyS1</command>
</para>
</listitem>
</orderedlist>
</sect2>
</sect1>
<sect1 id="sysadmin-37">
<title>Configuring Alternative Pointer Devices</title>
<para>The following sections describe how to configure your system to use
a standard physical mouse and another pointer device such as a single switch
device or head tracker device, and how to configure <application>On-Screen
Keyboard</application> to use the second pointer device.</para>
<sect2 id="sysadmin-45">
<title>To Configure Alternative Pointer Devices on Solaris Systems</title>
<indexterm>
<primary>configuring two pointer devices</primary>
<secondary>on
Solaris systems</secondary>
</indexterm>
<para>To configure an alternative pointer
device on a Solaris system, perform the following steps:</para>
<note>
<para>This procedure does not work on all Solaris platforms.</para>
</note>
<orderedlist>
<listitem>
<para>Before you connect the alternative pointer device to your
system, enter the following command to list the existing devices:</para>
<para>
<command>ls -l /dev/usb/hid*</command>
</para>
</listitem>
<listitem>
<para>Connect the alternative pointer device to your system.</para>
</listitem>
<listitem>
<para>Enter the following command again to list the new device:</para>
<para>
<command>ls -l /dev/usb/hid*</command>
</para>
</listitem>
<listitem>
<para>Open the file <filename>/usr/openwin/server/etc/OWconfig</filename>.</para>
</listitem>
<listitem>
<para>Add the following lines to the <filename>OWconfig</filename>
file:</para>
<para>
<literallayout># Sun Mouse module
class=&quot;XINPUT&quot; name=&quot;IMOUSE2&quot;
dev=&quot;/dev/usb/hid2&quot; strmod=&quot;usbms&quot;
ddxHandler=&quot;ddxSUNWmouse.so.1&quot;
ddxInitFunc=&quot;ddxSUNWmouseProc&quot;;</literallayout>
</para>
<para>where:</para>
<itemizedlist>
<listitem>
<para>the <literal>name</literal> option starts with the string <literal>IMOUSE</literal> but is extended to form a unique string, such as <literal>IMOUSE2</literal> or <literal>IMOUSE3</literal>, depending on the number of
existing devices.</para>
</listitem>
<listitem>
<para>the <literal>dev</literal> option specifies the device name
that you identified in Step 3.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>Remove the following lines from the <filename>OWconfig</filename>
file:</para>
<para>
<literallayout># Null Mouse module
class=&quot;XINPUT&quot; name=&quot;NMOUSE&quot;
ddxHandler=&quot;ddxSUNWmouse.so.1&quot;
ddxInitFunc=&quot;ddxnullmouseProc&quot;;</literallayout>
</para>
</listitem>
<listitem>
<para>Save the <filename>/usr/openwin/server/etc/OWconfig</filename>
file.</para>
</listitem>
<listitem>
<para>Restart the X Server. </para>
</listitem>
</orderedlist>
</sect2>
<sect2 id="sysadmin-46">
<title>To Configure Alternative Pointer Devices on Linux Systems</title>
<indexterm>
<primary>configuring two pointer devices</primary>
<secondary>on
Linux systems</secondary>
</indexterm>
<para>To configure an alternative pointer
device on a Linux system, perform the following steps:</para>
<orderedlist>
<listitem>
<para>Before you connect the alternative pointer device to your
system, enter the following command to list the existing devices:</para>
<para>
<command>ls -l /dev/usb/hid*</command>
</para>
</listitem>
<listitem>
<para>Connect the alternative pointer device to your system.</para>
</listitem>
<listitem>
<para>Enter the following command again to list the new device:</para>
<para>
<command>ls -l /dev/usb/hid*</command>
</para>
</listitem>
<listitem>
<para>Open the file <filename>/etc/X11/XF86Config</filename>.</para>
</listitem>
<listitem>
<para>Edit the <literal>InputDevice</literal> section where the <literal>Driver</literal> value is set to <literal>mouse</literal> as follows:</para>
<itemizedlist>
<listitem>
<para>Change the <literal>Option Device</literal> line to the following:</para>
<para>
<literallayout>Option &quot;Device&quot; &quot;/dev/input/mouse0&quot;</literallayout>
</para>
</listitem>
<listitem>
<para>Comment out the <literal>Option Protocol</literal> line as
follows:</para>
<para>
<literallayout>#Option &quot;Protocol&quot; &quot;explorerps/2&quot;</literallayout>
</para>
</listitem>
</itemizedlist>
<note>
<para>If you are not using USB connections for your primary mouse device
and other pointer device, you do not need to carry out this step.</para>
</note>
</listitem>
<listitem>
<para>Create a new <literal>InputDevice</literal> section as follows:</para>
<para>
<literallayout>Section &quot;InputDevice&quot;
Driver &quot;mouse&quot;
Identifier &quot;Mouse[3]&quot;
Option &quot;Device&quot; &quot;/dev/input/mouse1&quot;
Option &quot;Name&quot; &quot;Autodetection&quot;
Option &quot;Vendor&quot; &quot;Sysp&quot;
EndSection</literallayout>
</para>
<note>
<para>If you are not using USB connections for your primary mouse device
and other pointer device, you do not need to carry out this step.</para>
</note>
</listitem>
<listitem>
<para>Edit the <literal>ServerLayout</literal> section as follows:</para>
<itemizedlist>
<listitem>
<para>Change the <literal>InputDevice &quot;Mouse[1]&quot;</literal> line
to the following:</para>
<para>
<literallayout>InputDevice &quot;Mouse[1]&quot; &quot;CorePointer&quot;</literallayout>
</para>
</listitem>
<listitem>
<para>Create a new <literal>InputDevice</literal> line as follows:</para>
<para>
<literallayout>InputDevice &quot;Mouse[3]&quot;
</literallayout>
</para>
</listitem>
<listitem>
<para>Remove any occurrences of the attributes <literal>SendCore</literal> or <literal>AlwaysCore</literal> from any of <literal>InputDevice</literal> lines.</para>
</listitem>
</itemizedlist>
<note>
<para>Ensure that only the device that you are using as the primary
mouse device has the <literal>&quot;CorePointer&quot;</literal> attribute and ensure
that the alternate input devices do not have the <literal>SendCore</literal>
or <literal>AlwaysCore</literal> attributes.</para>
</note>
</listitem>
<listitem>
<para>Save the <filename>/etc/X11/XF86Config</filename> file.</para>
</listitem>
<listitem>
<para>Restart the X Server.</para>
</listitem>
</orderedlist>
</sect2>
<sect2 id="sysadmin-47">
<title>To Configure On-Screen Keyboard to Use an Alternative Pointer Device</title>
<indexterm>
<primary>On-Screen Keyboard</primary>
<secondary>configuring for
two pointer devices</secondary>
</indexterm>
<para>To configure the <application>On-Screen Keyboard</application> application to use an alternative pointer
device, perform the following steps.</para>
<orderedlist>
<listitem>
<para>Start the <application>On-Screen Keyboard</application> application.</para>
</listitem>
<listitem>
<para>Click on <guilabel>GOK</guilabel> in the <guilabel>GOK - main</guilabel> window.</para>
</listitem>
<listitem>
<para>Click on <guilabel>Preferences</guilabel> to open the <guilabel>Preferences</guilabel> dialog.</para>
</listitem>
<listitem>
<para>Click on the <guilabel>Actions</guilabel> tab.</para>
</listitem>
<listitem>
<para>In the <guilabel>Event Source</guilabel> options, select the <guilabel>Other input device</guilabel> option. <application>On-Screen Reader</application>
displays the name of the input device that you configured in the text box
next to the <guilabel>Other input device</guilabel> option.</para>
</listitem>
<listitem>
<para>Click <guibutton>OK</guibutton> to close the <guilabel>GOK
Preferences</guilabel> dialog.</para>
</listitem>
</orderedlist>
</sect2>
</sect1>
</appendix>