CoM – Il Blog di Carlo Becchi Compreresti un Raggio della Morte usato, da quest'uomo?

18ott/0812318

Touchpad: scorrimento a due dita come sul Mac, su qualsiasi portatile Linux

[This guide is available in English on Wiz and Chips]

ATTENZIONE!! LE NUOVE ISTRUZIONI AGGIORNATE PER UBUNTU E KUBUNTU 8.10 INTREPID IBEX SONO IN FONDO A QUESTO ARTICOLO!

Ci sono cose sul Mac che, persino io devo ammettere, sono davvero ragguardevoli.

Una di queste, è lo scrolling a due dita sul touchpad dei Macbook e Macbook Pro. Il touchpad è comodissimo, se non si ha lo spazio o il piano di appoggio per un mouse, ma potrebbe essere davvero più usabile. E' possibile abilitare una zona sulla destra (a volte serigrafata addirittura sul pad stesso) per scorrere le pagine web o le interfacce del sistema operativo, ma personalmente la trovo scomodissima, perché ci finisco sempre durante i normali movimenti del puntatore.

Insomma, secondo me la soluzione Apple è ideale, ma richiede hardware appositamente progettato, hardware Apple. Oppure no?

Assillato dal dubbio, ho fatto un po' di ricerca. E i risultati sono stati assolutamente sorprendenti. Così sorprendenti da farmi domandare come abbia fatto a non averne mai sentito parlare prima, ma soprattutto a chiedermi come sia possibile che laptop di altri produttori non beneficino di questa capacità (brevetti?).

Ciò che segue vale solo per Ubuntu 8.04. Per la versione 8.10 seguire le istruzioni in fondo al post.

Su lucumr apprendo la sconvolgente verità: lo scrolling a due dita è possibile con moltissimi touchpad di marca Synaptics, che a quanto mi risulta ha praticamente il monopolio del mercato. Inoltre il driver Synaptics per Linux supporta lo scorrimento a due dita verticale ed orizzontale, al modestissimo prezzo di aggiungere due righe di configurazione a xorg.conf:

Option "VertTwoFingerScroll" "true"
Option "HorizTwoFingerScroll" "true"

Ricaricato X (ctrl+alt+backspace) scopro che il trackpad dell'Acer Aspire sul quale ho provato la modifica supporta alla perfezione lo scorrimento a due dita.

Proseguo la ricerca, su Ispirazioni Informatiche trovo che questa opzione è disponibile in Linux addirittura dal 2006, e che aggiungendo un'ulteriore riga a xorg.conf è possibile installare anche un bel pannello di configurazione grafica per queste nuove opzioni.

Pannello di controllo per lo scorrimento a due dita

Ecco le istruzioni passo passo per abilitare questa funzione su Ubuntu (e sulle distribuzioni basate su GNOME, per le distribuzioni KDE basta, in genere, limitarsi a sostituire gedit con kwrite o kate).

1) fare un backup di xorg.conf:

sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.synaptics

(ho l'abitudine di rinominare i file con qualcosa che mi ricordi l'operazione che mi apprestavo a fare prima della modifica, ma qualunque nome va bene)

2) aprire xorg.conf:

sudo gedit /etc/X11/xorg.conf

3) Aggiungere le tre righe

Option "SHMConfig" "on"
Option "VertTwoFingerScroll" "true"
Option "HorizTwoFingerScroll" "true"

alla sezione InputDevice di Synaptics, che apparirà quindi all'incirca così:

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizEdgeScroll" "0"
Option "SHMConfig" "on"
Option "VertTwoFingerScroll" "true"
Option "HorizTwoFingerScroll" "true"
EndSection

4) Installare gsynaptics dai repository. (Si posizionerà in Sistema->Preferenze)

5) Riavviare X, o l'intero PC.

Oltre allo scrolling a due dita, se si abilita il tapping, anche questo può avvenire in modalità multipla:

Tap a 1 dito: click con il tasto sinistro del mouse

Tap a 2 dita: click con la rotella del mouse, in firefox apre il link in un nuovo tab.

Tap a 3 dita: click con il tasto destro del mouse [Grazie Claudio]

Per evitare problemi, consiglio di effettuare l'operazione solo con un mouse USB di emergenza a portata di mano.

Per chi fosse scettico, o per chi non ha familiarità con lo scorrimento a due dita ho messo su YouTube un breve video dimostrativo.

 


 >>AGGIORNAMENTO 8.10<<<

Per Ubuntu 8.10 Intrepid Ibex, Kubuntu 8.10 e probabilmente la maggior parte delle distribuzioni basate sul nuovo Xorg 7.4 la procedura è radicalmente cambiata.

A quanto pare abilitare SHMConfig è sconsigliato in un ambiente multiuser "untrusted", ovvero nel quale non conoscete o non potete fidarvi a priori degli altri utenti.

Il modo più sicuro per abilitare lo scorrimento a due dita in questo caso è utilizzare un file XML per l'Hardware Abstraction Layer con le impostazioni per questa funzione.

Il file deve contenere questo testo:

<?xml version="1.0" encoding="ISO-8859-1"?><deviceinfo version="0.2">  <device>    <match key="input.x11_driver" contains="synaptics">    <merge key="input.x11_options.SHMConfig" type="string">On</merge>    <merge key="input.x11_options.TapButton2" type="string">3</merge>    <merge key="input.x11_options.TapButton3" type="string">2</merge>    <merge key="input.x11_options.VertTwoFingerScroll" type="string">1</merge>    <merge key="input.x11_options.HorizTwoFingerScroll" type="string">1</merge>  </match></device></deviceinfo>

ed deve essere salvato come:

/etc/hal/fdi/policy/11-synaptics-options.fdi

Se non avete familiarità con linux seguite queste semplici istruzioni:

- Scaricate il file già pronto che ho preparato per voi, nella vostra home (esempio /home/carlo)

- Aprite il terminale, verificate di essere nella vostra home, e digitate:

sudo cp 11-synaptics-options.fdi /etc/hal/fdi/policy/

Riavviate il pc (riavviare X non basta più).

Lo scorrimento a due dita dovrebbe funzionare.

Abilitare GSynaptics e SHMConfig.

Se siete gli unici utenti sul vostro PC, o volete comunque abilitare GSynaptics (o QSynaptics per KDE) dovete creare il file:

/etc/hal/fdi/policy/shmconfig.fdi

contenente:

<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
 <device>
  <match key="input.x11_driver" string="synaptics">
   <merge key="input.x11_options.SHMConfig" type="string">True</merge>
  </match>
 </device>
</deviceinfo>

Ancora una volta ecco le istruzioni semplificate:

- Scaricate il file già pronto che ho preparato per voi, nella vostra home (esempio /home/carlo)

- Aprite il terminale, verificate di essere nella vostra home, e digitate:

sudo cp shmconfig.fdi /etc/hal/fdi/policy/

Riavviate il PC.

Cercate ed installate gsynaptics con il vostro gestore dei pacchetti.

E' tutto, verificato su Ubuntu 8.10 Intrepid Ibex

[ Fonti: help.ubuntu.com e jann.is ]

 

Commenti (12318) Trackback (0)
  1. Upvc Window Repairs Near Me Tools To Ease Your Daily Lifethe One Upvc Window Repairs Near Me Trick That Every Person Should Learn window repairs near Me

  2. Nice answer back in return of this query with real arguments and telling the whole thing about that.

  3. You’ll Never Be Able To Figure Out This Upvc Window Repairs’s
    Tricks upvc window repair – Https://tony-Sheryl.com -

  4. I have fun with, cause I found exactly what I used to be looking
    for. You have ended my four day long hunt! God Bless you man.
    Have a nice day. Bye

  5. Attractive section of content. I just stumbled upon your web site
    and in accession capital to claim that I get in fact enjoyed
    account your weblog posts. Any way I’ll be subscribing in your feeds or even I achievement
    you get admission to consistently rapidly.

  6. Hey! Someone in my Myspace group shared this website with us so I
    came to check it out. I’m definitely loving the information. I’m bookmarking and
    will be tweeting this to my followers! Wonderful blog and terrific style and
    design.

  7. No matter if some one searches for his required thing, so he/she wants
    to be available that in detail, therefore that thing is maintained over here.

  8. 7 Small Changes That Will Make The Biggest Difference In Your Semi Truck Law
    semi truck accident law Firms

  9. Personal Injury Case’s History Of Personal Injury
    Case In 10 Milestones personal injury Lawsuits

  10. You’ll Never Be Able To Figure Out This Veterans Disability
    Settlement’s Tricks veterans

  11. 5 Must-Know-How-To-Hmphash Upvc Repairs Near Me Methods To 2023
    window repair Near Me

  12. 5 Laws That’ll Help With The Door Repair Near Me Industry Window replacement near me

  13. This race is deemed after of the top horse betting events in the globe.

    Visit my homepage; https://thewholeof.co.uk/profile/Sherry5766

  14. Hi! Would you mind if I share your blog with my zynga group?
    There’s a lot of folks that I think would really enjoy your content.
    Please let me know. Thanks

  15. Railroad Injuries Claim Tools To Make Your Daily Life Injury

  16. I like the helpful info you provide in your articles.
    I’ll bookmark your weblog and check again here frequently.
    I’m quite certain I will learn lots of new stuff right here!
    Best of luck for the next!

  17. The 12 Most Unpleasant Types Of Cerebral Palsy Attorney Tweets You Follow Cerebral palsy law firms

  18. I was suggested this web site via my cousin. I’m now not sure whether this put
    up is written by him as no one else recognize such certain about my trouble.
    You’re incredible! Thanks!

  19. Hi there to every , since I am truly keen of reading this web site’s post to be updated regularly.

    It carries fastidious material.

  20. I was curious if you ever thought of changing the structure of your website?
    Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so
    people could connect with it better. Youve got an awful lot of text for only having 1 or 2 images.
    Maybe you could space it out better?

    Stop by my page: phenq

  21. You’ll Never Be Able To Figure Out This Erb’s Palsy Lawyers’s Tricks erb’s palsy lawyers

  22. Hi there, I found your site via Google even as searching for a comparable matter, your
    website came up, it seems to be good. I have bookmarked
    it in my google bookmarks.
    Hi there, just became alert to your blog through Google, and
    found that it is really informative. I am gonna watch out for brussels.

    I will be grateful when you continue this in future.
    A lot of other people will likely be benefited from your
    writing. Cheers!

  23. Thank you, I’ve recently been searching for information about this subject for ages and yours is
    the best I’ve discovered so far. However, what in regards to the conclusion? Are you positive concerning the source?

  24. Why You Should Focus On Making Improvements To Birth Defect Attorney Birth defect Lawsuit

  25. If some one desires expert view on the topic of running a blog after that i suggest him/her to pay
    a quick visit this blog, Keep up the nice job.

  26. When some one searches for his vital thing, therefore he/she desires to be available that in detail,
    thus that thing is maintained over here.

  27. Appreciate the recommendation. Let me try it out.

  28. Fulfill Your Worldly Desires With Bad Debt Usecured
    Bank Loans 카카오 대출

  29. I really like it whenever people get together
    and share opinions. Great site, continue the good work!

    Look into my blog: red boost supplement

  30. The 12 Best Double Glazing Doctor Near Me Accounts To Follow On Twitter Replacement Glass Double Glazing
    (http://Www.Hstx.Co.Kr)

  31. Five Killer Quora Answers To Commercial Truck Accident Attorney truck accident attorney

  32. Nice post. I learn something new and challenging on sites I stumbleupon every day.

    It will always be helpful to read articles from
    other writers and use something from other sites.

  33. It’s a shame you don’t have a donate button! I’d without a doubt donate to this fantastic blog!

    I guess for now i’ll settle for bookmarking and adding your RSS feed to my Google
    account. I look forward to fresh updates and will share
    this blog with my Facebook group. Chat soon!

  34. How To Outsmart Your Boss On Veterans Disability Attorney veterans disability lawsuits (Ashley)

  35. 10 Things That Your Family Teach You About Upvc Window Repairs Near Me Window Repairs Near Me

  36. Fantastic website you have here but I was curious if you knew of any
    user discussion forums that cover the same topics
    talked about in this article? I’d really love to be a
    part of community where I can get opinions from other experienced people that share the same interest.

    If you have any suggestions, please let me know. Thanks!

  37. See What Double Glazed Window Repairs Near Me Tricks The Celebs
    Are Utilizing window repairs near me

  38. Thank you for the good writeup. It in fact
    was a amusement account it. Look advanced to
    more added agreeable from you! By the way, how can we communicate?

  39. 5 Laws That’ll Help In The Semi Truck Legal
    Industry law

  40. Good day! Do you know if they make any plugins to help with Search Engine Optimization? I’m trying to get my blog to
    rank for somje targeted keywords bbut I’m noot seeing very good
    success. If you know of any please share. Many thanks!
    비바카지노 가입코드

  41. I know this site presents quality dependent articles
    or reviews and other stuff, is there any other site which gives these data in quality?

  42. How To Choose The Right Double Glazing Companies Near Me On The
    Internet replacing Double Glazed units

  43. 15 Terms That Everyone Working In The Repair Upvc
    Window Industry Should Know Upvc window Repair

  44. This Is How Disability Case Will Look Like In 10 Years’ Time veterans Disability attorneys

  45. 12 Companies Leading The Way In Erb’s Palsy Claim Erb’s Palsy Law Firm

  46. If some one wants expert view about running a blog after that i advise him/her to
    go to see this blog, Keep up the pleasant job.

  47. Hi there, this weekend is good in support of me,
    since this occasion i am readinng this great informative article here at my
    residence.
    코웨이비데렌탈

  48. What’s The Current Job Market For Birth Defect Compensation Professionals?
    birth Defect

  49. Hi there, I would like to subscribe for this weblog to get most up-to-date updates, therefore where can i do it please
    help out. https://Sobrouremedio.Com.br/author/blythe1450/

  50. Hello to every one, the contents present at this web
    site are really awesome for people knowledge, well, keep up the nice work
    fellows.


Lascia un commento

Devi autenticarti per inserire un commento.

Ancora nessun trackback.

Rss Feed Tweeter button Facebook button Youtube button