Aktivera hjälpmedelsinloggning

In order to use the accessibility support for GNOME, the accessibility infrastructure must be enabled. To enable GNOME accessibility features from the command line, type the following command and then log out:

gconftool-2 --set "/desktop/gnome/interface/accessibility" --type boolean "True"

To enable GNOME accessibility features from a GUI, run the System ▸ Preferences ▸ Assistive Technology command from the top level menu. Select the "Enable assistive technologies" checkbox and then press the "Close and Log Out" button.

The next time you log in, assistive technology support will be enabled for the desktop.

Genomför följande steg för att konfigurera GDM via det grafiska gränssnittet (den föredragna metoden):

  1. Logga in som användaren root.
  2. Run gdmsetup from a terminal; you may be advised to reboot after exiting the application.

To configure GDM if you cannot access the GUI environment, you will need to navigate the file system and modify files:

  1. Logga in som användaren root.

  2. Öppna filen /etc/X11/gdm/custom.conf

  3. Sök i filen efter följande rad:

    #AddGtkModules=false

    och ersätt raden med följande:

    AddGtkModules=true

    Dessa steg aktiverar GtkModules.

  4. Sök i filen efter följande rad:

    #GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener

    och ta bort # från början av raden så att raden ser ut så här:

    GtkModulesList=gail:atk-bridge:dwellmouselistener:keymouselistener

    The above lines must be displayed as single lines in the custom.conf file without line breaks. The formatting of this guide may display the lines as being longer than two lines.

    Detta steg läser in alla GtkModules för att aktivera hjälpmedelstekniker såsom Skärmtangentbord och Skärmläsare och -förstorare. Du kan fortsätta att redigera raden ovan för att endast läsa in den GtkModules som du behöver för att ge stöd till användarna. Till exempel:

    • Om du behöver använda Skärmläsare och -förstorare, inkludera gail och atk-bridge.
    • Om du behöver använda ett pekdon utan knappar eller brytare, inkludera gail, atk-bridge och dwellmouselistener.
    • Om du använder pekdon med brytare, alternativa fysiska tangentbord eller enheter med brytare och knappar, inkludera keymouselistener.
    • Skärmtangentbord kan fungera utan gail och atk-bridge men med en reducerad uppsättning funktioner.

    För optimala hjälpmedel, inkludera gail och atk-bridge.

  5. Spara filen /etc/X11/gdm/custom.conf.

    Om du gör några ändringar i filen /etc/X11/gdm/custom.conf efter att du aktiverat GDM, kan du köra följande kommando för att starta om GDM och aktivera ändringarna:

    gdm-restart

  6. Redigera filen /etc/group och lägg till följande på raden med audio:

    ,gdm

    Det här steget försäkrar att uppläsning fungerar med GDM.

  7. Starta om ditt system.

Xserver is required for all distributions; for Linux and OpenSolaris, it should be Xorg. You can find them in both /etc/X11 and /usr/bin. Generally for Linux there will be a symbol link in /etc/X11/X and it is always linked to the binary Xorg in /usr/bin/Xorg. For OpenSolaris, you can find this process with the command ps -ef | grep X.

To enable or disable Xorg extensions, you can edit the file /etc/X11/xorg.conf and add the following parameters to enable different extensions:


Section "Extensions"
  Option "Composite"         "Enable"
  Option "other extensions"  "Enable/Disable"
EndSection