Disable laptop pointing stick

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite
1












How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?



The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.







share|improve this question
























    up vote
    0
    down vote

    favorite
    1












    How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?



    The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.







    share|improve this question






















      up vote
      0
      down vote

      favorite
      1









      up vote
      0
      down vote

      favorite
      1






      1





      How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?



      The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.







      share|improve this question












      How do I disable the pointing stick of a laptop (that mouse pointer in the middle of the keyboard)?



      The only option available in the BIOS also disables the Touchpad, so it needs to be done from the OS.









      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 17 at 15:35









      Jérôme

      7862728




      7862728




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote













           1 - Use xinput to identify the device



          Example on a Dell Latitude E6410



          xinput
          ⎡ Virtual core pointer id=2 [master pointer (3)]
          ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
          ⎜ ↳ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
          ⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
          ⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
          ⎣ Virtual core keyboard id=3 [master keyboard (2)]
          ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
          ↳ Power Button id=6 [slave keyboard (3)]
          ↳ Video Bus id=7 [slave keyboard (3)]
          ↳ Power Button id=8 [slave keyboard (3)]
          ↳ Sleep Button id=9 [slave keyboard (3)]
          ↳ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
          ↳ Dell WMI hotkeys id=12 [slave keyboard (3)]
          ↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]


          2 - Use xinput to disable the device



          xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


          3 - Execute the command on startup



          To disable it for all users (and for the graphical login window), one can run it as root on startup using cron. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.



          Disabling as user may depend on the desktop environment.



          Typically, one would put the command in a script



          #!/bin/sh
          xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


          make the script executable (chmod + x) and call it on startup.



          It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.



          Source : Disabling the track stick in Ubuntu






          share|improve this answer






















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );








             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424821%2fdisable-laptop-pointing-stick%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            3
            down vote













             1 - Use xinput to identify the device



            Example on a Dell Latitude E6410



            xinput
            ⎡ Virtual core pointer id=2 [master pointer (3)]
            ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
            ⎜ ↳ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
            ⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
            ⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
            ⎣ Virtual core keyboard id=3 [master keyboard (2)]
            ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
            ↳ Power Button id=6 [slave keyboard (3)]
            ↳ Video Bus id=7 [slave keyboard (3)]
            ↳ Power Button id=8 [slave keyboard (3)]
            ↳ Sleep Button id=9 [slave keyboard (3)]
            ↳ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
            ↳ Dell WMI hotkeys id=12 [slave keyboard (3)]
            ↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]


            2 - Use xinput to disable the device



            xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


            3 - Execute the command on startup



            To disable it for all users (and for the graphical login window), one can run it as root on startup using cron. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.



            Disabling as user may depend on the desktop environment.



            Typically, one would put the command in a script



            #!/bin/sh
            xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


            make the script executable (chmod + x) and call it on startup.



            It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.



            Source : Disabling the track stick in Ubuntu






            share|improve this answer


























              up vote
              3
              down vote













               1 - Use xinput to identify the device



              Example on a Dell Latitude E6410



              xinput
              ⎡ Virtual core pointer id=2 [master pointer (3)]
              ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
              ⎜ ↳ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
              ⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
              ⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
              ⎣ Virtual core keyboard id=3 [master keyboard (2)]
              ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
              ↳ Power Button id=6 [slave keyboard (3)]
              ↳ Video Bus id=7 [slave keyboard (3)]
              ↳ Power Button id=8 [slave keyboard (3)]
              ↳ Sleep Button id=9 [slave keyboard (3)]
              ↳ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
              ↳ Dell WMI hotkeys id=12 [slave keyboard (3)]
              ↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]


              2 - Use xinput to disable the device



              xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


              3 - Execute the command on startup



              To disable it for all users (and for the graphical login window), one can run it as root on startup using cron. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.



              Disabling as user may depend on the desktop environment.



              Typically, one would put the command in a script



              #!/bin/sh
              xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


              make the script executable (chmod + x) and call it on startup.



              It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.



              Source : Disabling the track stick in Ubuntu






              share|improve this answer
























                up vote
                3
                down vote










                up vote
                3
                down vote









                 1 - Use xinput to identify the device



                Example on a Dell Latitude E6410



                xinput
                ⎡ Virtual core pointer id=2 [master pointer (3)]
                ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
                ⎜ ↳ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
                ⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
                ⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
                ⎣ Virtual core keyboard id=3 [master keyboard (2)]
                ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
                ↳ Power Button id=6 [slave keyboard (3)]
                ↳ Video Bus id=7 [slave keyboard (3)]
                ↳ Power Button id=8 [slave keyboard (3)]
                ↳ Sleep Button id=9 [slave keyboard (3)]
                ↳ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
                ↳ Dell WMI hotkeys id=12 [slave keyboard (3)]
                ↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]


                2 - Use xinput to disable the device



                xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


                3 - Execute the command on startup



                To disable it for all users (and for the graphical login window), one can run it as root on startup using cron. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.



                Disabling as user may depend on the desktop environment.



                Typically, one would put the command in a script



                #!/bin/sh
                xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


                make the script executable (chmod + x) and call it on startup.



                It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.



                Source : Disabling the track stick in Ubuntu






                share|improve this answer














                 1 - Use xinput to identify the device



                Example on a Dell Latitude E6410



                xinput
                ⎡ Virtual core pointer id=2 [master pointer (3)]
                ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
                ⎜ ↳ Logitech Logitech USB Optical Mouse id=11 [slave pointer (2)]
                ⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=15 [slave pointer (2)]
                ⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
                ⎣ Virtual core keyboard id=3 [master keyboard (2)]
                ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
                ↳ Power Button id=6 [slave keyboard (3)]
                ↳ Video Bus id=7 [slave keyboard (3)]
                ↳ Power Button id=8 [slave keyboard (3)]
                ↳ Sleep Button id=9 [slave keyboard (3)]
                ↳ Laptop_Integrated_Webcam_3M: In id=10 [slave keyboard (3)]
                ↳ Dell WMI hotkeys id=12 [slave keyboard (3)]
                ↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]


                2 - Use xinput to disable the device



                xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


                3 - Execute the command on startup



                To disable it for all users (and for the graphical login window), one can run it as root on startup using cron. This is the preferred way if the trackpoint is broken and root privileges are granted on the machine.



                Disabling as user may depend on the desktop environment.



                Typically, one would put the command in a script



                #!/bin/sh
                xinput -set-prop "AlpsPS/2 ALPS DualPoint Stick" "Device Enabled" 0


                make the script executable (chmod + x) and call it on startup.



                It is absolutely equivalent to call the command line directly without writing it in a script. Just a matter of preference. The script is a nice way to record the command in case it would be accidentaly removed from the startup commands.



                Source : Disabling the track stick in Ubuntu







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Feb 22 at 9:35

























                answered Feb 17 at 15:35









                Jérôme

                7862728




                7862728






















                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f424821%2fdisable-laptop-pointing-stick%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay