General purpose mouse (Italiano)

From ArchWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Tango-preferences-desktop-locale-modified.pngThe translation of this article or section does not reflect the original text.Tango-preferences-desktop-locale-modified.png

Reason: Last updated in 2011 (164768), out of sync with English page (Discuss in Talk:General purpose mouse (Italiano))

GPM, abbreviativo di General Purpose Mouse, è un demone che fornisce supporto al mouse per le console virtuali Linux. È incluso nella maggior parte delle distribuzioni Linux.

Installazione

Desktop

Installare gpm con pacman:

# pacman -S gpm

Laptop

Installare gpm e xf86-input-synaptics con pacman:

# pacman -S gpm xf86-input-synaptics

Configurazione

Il parametro -m precede la dichiarazione del mouse da utilizzare. Il parametro -t precede il tipo di mouse. Per avere un elenco dei tipi disponibili per l'opzione -t, eseguire gpm con -t help.

$ gpm -m /dev/input/mice -t help

Se il mouse ha solo 2 tasti, passare il parametro -2 a GPM_ARGS e il secondo tasto sarà abilitato alla funzione "incolla".

Il pacchetto gpm deve essere avviato con alcuni parametri. Questi parametri possono essere impostati nel file /etc/conf.d/gpm, o usati per eseguire gpm direttamente.

  • For PS/2 mice, replace the existing line with:
GPM_ARGS="-m /dev/psaux -t ps2"
  • Whereas USB mice should use:
GPM_ARGS="-m /dev/input/mice -t imps2"
  • And IBM Trackpoints need:
GPM_ARGS="-m /dev/input/mice -t ps2"

Una volta trovata la configurazione adeguata, aggiungere gpm nella stringa DAEMONS in /etc/rc.conf per avere gpm avviato al boot. Esempio:

DAEMONS=(syslog-ng gpm network netfs crond)

Per maggiori informazioni gpm(8).