home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / gnome / help / gnome-access-guide / C / sysadmin.xml < prev   
Encoding:
Text File  |  2009-04-10  |  11.9 KB  |  461 lines

  1. <appendix id="sysadmin-0">
  2. <title>System Administration</title>
  3. <para>
  4. This appendix describes some tasks that a system administrator needs to perform to enable an accessible login and to facilitate the use of the assistive technologies that are available in the GNOME Desktop.
  5. </para>
  6.  
  7. <sect1 id="sysadmin-6">
  8. <title>Enabling Full-Screen Magnification</title>
  9. <indexterm>
  10. <primary>Screen Reader and Magnifier</primary>
  11. <secondary>enabling full screen magnification
  12. </secondary>
  13. </indexterm>
  14. <para>
  15. The following sections describe the methods to enable full-screen magnification.
  16. </para>
  17.  
  18. <sect2 id="sysadmin-48">
  19. <title>Enabling Full-Screen Magnification with Two Video Cards</title>
  20. <para>
  21. To enable full-screen magnification in <application>Screen Reader and Magnifier</application> using two physical video cards, perform the following steps:
  22. </para>
  23. <orderedlist>
  24. <listitem>
  25. <para>
  26. Configure two video cards as :0.0 and :0.1.
  27. </para>
  28. <note>
  29. <para>
  30. 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 
  31. the nominal magnification factor.
  32. </para>
  33. </note>
  34. </listitem>
  35. <listitem>
  36. <para>
  37. Choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Accessibility</guisubmenu><guimenuitem>Screen Reader and Magnifier</guimenuitem></menuchoice>.
  38. </para>
  39. </listitem>
  40. <listitem>
  41. <para>
  42. Click on <guilabel>Preferences</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.
  43. </para>
  44. </listitem>
  45. <listitem>
  46. <para>
  47. Click on <guilabel>Magnifier</guilabel> to open the <guilabel>Magnifier Preferences</guilabel> dialog.
  48. </para>
  49. </listitem>
  50. <listitem>
  51. <para>
  52. Click on the <guibutton>Add/Modify</guibutton> button to display the <guilabel>Zoomer Options</guilabel> dialog.
  53. </para>
  54. </listitem>
  55. <listitem>
  56. <para>
  57. In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.0</userinput> in the <guilabel>Source</guilabel> text box. 
  58. </para>
  59. </listitem>
  60. <listitem>
  61. <para>
  62. In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.1</userinput> in the <guilabel>Target</guilabel> text box. 
  63. </para>
  64. </listitem>
  65. <listitem>
  66. <para>
  67. Set the Zoomer Placement values to be 
  68. <literal>[0,0,1023,767]</literal>.
  69. </para>
  70. <note>
  71. <para>
  72. These instructions assume a video resolution of 1024x768. 
  73. </para>
  74. </note>
  75. </listitem>
  76. <listitem>
  77. <para>
  78. Click <guibutton>Apply</guibutton> and <guibutton>Close</guibutton> to close the <guilabel>Zoomer Options</guilabel> dialog. 
  79. </para>
  80. <para>
  81. The magnified view is displayed on the second display (0.1).
  82. </para>
  83. </listitem>
  84. </orderedlist>
  85. </sect2>
  86.  
  87. <sect2 id="sysadmin-49">
  88. <title>Enabling Full-Screen Magnification Using One Video Card on Linux Systems</title>
  89. <para>
  90. To enable full-screen magnification on Linux systems using one physical video card and one virtual video card, perform the following steps:
  91. </para>
  92. <orderedlist>
  93. <listitem>
  94. <para>
  95. Open the file <filename>/etc/X11/XF86Config</filename>.
  96. </para>
  97. </listitem>
  98. <listitem>
  99. <para>
  100. Create a new section at the end of the file as follows:
  101. </para>
  102. <literallayout>Section "Device"
  103. Boardname "dummy"
  104. Driver "dummy"
  105. Identifier "dummy"
  106. VendorName "dummy"
  107. EndSection </literallayout>
  108. </listitem>
  109. <listitem>
  110. <para>
  111. Copy the <literal>Monitor</literal> section and paste it at the end of the file.
  112. </para>
  113. </listitem>
  114. <listitem>
  115. <para>
  116. In the new <literal>Monitor</literal> section, edit the <literal>Identifier</literal> line as follows:
  117. </para>
  118. <para>
  119. <literallayout>Identifier "MonitorD"
  120. </literallayout>
  121. </para>
  122. </listitem>
  123. <listitem>
  124. <para>
  125. Copy the <literal>Screen</literal> section and paste it at the end of the file.
  126. </para>
  127. </listitem>
  128. <listitem>
  129. <para>
  130. In the new <literal>Screen</literal> section, edit the <literal>Device</literal>, <literal>Identifier</literal>, and <literal>Monitor</literal> lines as follows:
  131. </para>
  132. <para>
  133. <literallayout>Device "dummy"
  134. Identifier "Screen[D]"
  135. Monitor "MonitorD"</literallayout>
  136. </para>
  137. </listitem>
  138. <listitem>
  139. <para>
  140. Edit the <literal>ServerLayout</literal> section to change the <literal>Screen</literal> line as follows:
  141. </para>
  142. <para>
  143. <literallayout>Screen "Screen[0]" 0 0
  144. </literallayout>
  145. </para>
  146. </listitem>
  147. <listitem>
  148. <para>
  149. Insert the following line in the <literal>ServerLayout</literal> section:
  150. </para>
  151. <para>
  152. <literallayout>Screen "Screen[D]" 
  153. RightOf "Screen[0]"</literallayout>
  154. </para>
  155. </listitem>
  156. <listitem>
  157. <para>
  158. Save the <filename>/etc/X11/XF86Config</filename> file.
  159. </para>
  160. </listitem>
  161. <listitem>
  162. <para>
  163. Restart the X Server.
  164. </para>
  165. </listitem>
  166. <listitem>
  167. <para>
  168. Start the <application>Screen Reader and Magnifier</application> application.
  169. </para>
  170. </listitem>
  171. <listitem>
  172. <para>
  173. Click on <guilabel>Startup Mode</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.
  174. </para>
  175. </listitem>
  176. <listitem>
  177. <para>
  178. Select the <guilabel>Magnifier</guilabel> option in the <guilabel>Startup Mode</guilabel> dialog.
  179. </para>
  180. </listitem>
  181. <listitem>
  182. <para>
  183. Click on <guilabel>Preferences</guilabel> in the <guilabel>Gnopernicus</guilabel> menu window.
  184. </para>
  185. </listitem>
  186. <listitem>
  187. <para>
  188. Click on <guilabel>Magnifier</guilabel> to open the <guilabel>Magnifier Preferences</guilabel> dialog.
  189. </para>
  190. </listitem>
  191. <listitem>
  192. <para>
  193. Click on the <guibutton>Add/Modify</guibutton> button to display the <guilabel>Zoomer Options</guilabel> dialog.
  194. </para>
  195. </listitem>
  196. <listitem>
  197. <para>
  198. In the <guilabel>Display Screen</guilabel> section, type <userinput>:0.1</userinput> in the <guilabel>Source</guilabel> text box. 
  199. </para>
  200. </listitem>
  201. <listitem>
  202. <para>
  203. In the <guilabel>Zoomer Placement</guilabel> section, set the value of the <guilabel>Left</guilabel> spin box to <userinput>0</userinput>.
  204. </para>
  205. </listitem>
  206. <listitem>
  207. <para>
  208. Click <guibutton>Apply</guibutton>.
  209. </para>
  210. <para>
  211. The <application>Screen Reader and Magnifier
  212. </application> user interface is no longer visible.
  213. </para>
  214. </listitem>
  215. <listitem>
  216. <para>
  217. Log out of your session.
  218. </para>
  219. </listitem>
  220. <listitem>
  221. <para>
  222. Log in to a new session.
  223. </para>
  224. </listitem>
  225. <listitem>
  226. <para>
  227. Enter the following command to start <application>Screen Reader and Magnifier</application> in full-screen magnification mode:
  228. </para>
  229. <para>
  230. <command>gnopernicus -display :0.1</command>
  231. </para>
  232. </listitem>
  233. <listitem>
  234. <para>
  235. When you log out of your session, select the 
  236. <guilabel>Save current setup</guilabel> option. 
  237. </para>
  238. </listitem>
  239. </orderedlist>
  240. </sect2>
  241. </sect1>
  242.  
  243. <sect1 id="sysadmin-52">
  244. <title>Enabling braille</title>
  245. <indexterm>
  246. <primary>braille, enabling</primary>
  247. </indexterm>
  248. <para>
  249. 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:
  250. </para>
  251. <orderedlist>
  252. <listitem>
  253. <para>
  254. Log in as the <literal>root</literal> user.
  255. </para>
  256. </listitem>
  257. <listitem>
  258. <para>
  259. Enter the following command:
  260. </para>
  261. <para>
  262. <command>chmod 777 /dev/ttyS0</command>
  263. </para>
  264. </listitem>
  265. <listitem>
  266. <para>
  267. Enter the following command:
  268. </para>
  269. <para>
  270. <command>chmod 777 /dev/ttyS1</command>
  271. </para>
  272. </listitem>
  273. </orderedlist>
  274. </sect1>
  275.  
  276. <sect1 id="sysadmin-37">
  277. <title>Configuring Alternative Pointer Devices</title>
  278. <indexterm>
  279. <primary>configuring two pointer devices</primary>
  280. <secondary>on Linux systems</secondary>
  281. </indexterm>
  282. <para>
  283. 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 
  284. tracker device, and how to configure <application>On-Screen Keyboard</application> to use the second pointer device.
  285. </para>
  286. <para>
  287. To configure an alternative pointer device, perform the following steps:
  288. </para>
  289. <orderedlist>
  290. <listitem>
  291. <para>
  292. Before you connect the alternative pointer device to your system, enter the following command to list the existing devices:
  293. </para>
  294. <para>
  295. <command>ls -l /dev/usb/hid*</command>
  296. </para>
  297. </listitem>
  298. <listitem>
  299. <para>
  300. Connect the alternative pointer device to your system.
  301. </para>
  302. </listitem>
  303. <listitem>
  304. <para>
  305. Enter the following command again to list the new device:
  306. </para>
  307. <para>
  308. <command>ls -l /dev/usb/hid*</command>
  309. </para>
  310. </listitem>
  311. <listitem>
  312. <para>
  313. Open the file <filename>/etc/X11/XF86Config</filename>.
  314. </para>
  315. </listitem>
  316. <listitem>
  317. <para>
  318. Edit the <literal>InputDevice</literal> section where the <literal>Driver</literal> value is set to <literal>mouse</literal> as follows:
  319. </para>
  320. <itemizedlist>
  321. <listitem>
  322. <para>
  323. Change the <literal>Option Device</literal> line to the following:
  324. </para>
  325. <para>
  326. <literallayout>
  327. Option "Device" "/dev/input/mouse0"
  328. </literallayout>
  329. </para>
  330. </listitem>
  331. <listitem>
  332. <para>
  333. Comment out the <literal>Option Protocol</literal> line as follows:
  334. </para>
  335. <para>
  336. <literallayout>
  337. #Option "Protocol" "explorerps/2"
  338. </literallayout>
  339. </para>
  340. </listitem>
  341. </itemizedlist>
  342. <note>
  343. <para>
  344. 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.
  345. </para>
  346. </note>
  347. </listitem>
  348. <listitem>
  349. <para>
  350. Create a new <literal>InputDevice</literal> section as follows:
  351. </para>
  352. <para>
  353. <literallayout>Section "InputDevice"
  354. Driver "mouse"
  355. Identifier "Mouse[3]"
  356. Option "Device" "/dev/input/mouse1"
  357. Option "Name" "Autodetection"
  358. Option "Vendor" "Sysp"
  359. EndSection</literallayout>
  360. </para>
  361. <note>
  362. <para>
  363. 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.
  364. </para>
  365. </note>
  366. </listitem>
  367. <listitem>
  368. <para>
  369. Edit the <literal>ServerLayout</literal> section as follows:
  370. </para>
  371. <itemizedlist>
  372. <listitem>
  373. <para>
  374. Change the <literal>InputDevice "Mouse[1]"</literal> line to the following:
  375. </para>
  376. <para>
  377. <literallayout>
  378. InputDevice "Mouse[1]" "CorePointer"
  379. </literallayout>
  380. </para>
  381. </listitem>
  382. <listitem>
  383. <para>
  384. Create a new <literal>InputDevice</literal> line as follows:
  385. </para>
  386. <para>
  387. <literallayout>InputDevice "Mouse[3]"
  388. </literallayout>
  389. </para>
  390. </listitem>
  391. <listitem>
  392. <para>
  393. Remove any occurrences of the attributes 
  394. <literal>SendCore</literal> or <literal>AlwaysCore</literal> from any of <literal>InputDevice</literal> lines.
  395. </para>
  396. </listitem>
  397. </itemizedlist>
  398. <note>
  399. <para>
  400. Ensure that only the device that you are using as the primary mouse device has the <literal>"CorePointer"</literal> attribute and ensure that the alternate input devices do not have the <literal>SendCore</literal> or <literal>AlwaysCore</literal> attributes.
  401. </para>
  402. </note>
  403. </listitem>
  404. <listitem>
  405. <para>
  406. Save the <filename>/etc/X11/XF86Config</filename> file.
  407. </para>
  408. </listitem>
  409. <listitem>
  410. <para>
  411. Restart the X Server.
  412. </para>
  413. </listitem>
  414. </orderedlist>
  415.  
  416. <sect2 id="sysadmin-47">
  417. <title>Configuring the On-Screen Keyboard to Use an Alternative Pointer Device</title>
  418. <indexterm>
  419. <primary>On-Screen Keyboard</primary>
  420. <secondary>configuring for two pointer devices</secondary>
  421. </indexterm>
  422. <para>
  423. To configure the <application>On-Screen Keyboard</application> application to use an alternative pointer device, perform the following steps:
  424. </para>
  425. <orderedlist>
  426. <listitem>
  427. <para>
  428. Start the <application>On-Screen Keyboard</application> application.
  429. </para>
  430. </listitem>
  431. <listitem>
  432. <para>
  433. Click on <guilabel>GOK</guilabel> in the <guilabel>GOK - main</guilabel> window.
  434. </para>
  435. </listitem>
  436. <listitem>
  437. <para>
  438. Click on <guilabel>Preferences</guilabel> to open the <guilabel>Preferences</guilabel> dialog.
  439. </para>
  440. </listitem>
  441. <listitem>
  442. <para>
  443. Click on the <guilabel>Actions</guilabel> tab.
  444. </para>
  445. </listitem>
  446. <listitem>
  447. <para>
  448. 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.
  449. </para>
  450. </listitem>
  451. <listitem>
  452. <para>
  453. Click <guibutton>OK</guibutton> to close the 
  454. <guilabel>GOK Preferences</guilabel> dialog.
  455. </para>
  456. </listitem>
  457. </orderedlist>
  458. </sect2>
  459. </sect1>
  460. </appendix>
  461.