Touchscreen ELO(touch) not recognized on Lubuntu at startup
I have added the following command to /etc/rc.local
/usr/bin/inputattach --daemon --always -elo /dev/ttyS4
but it is not loaded at startup. I have checked that the mode is supported and it works when I call it in lxterminal or when I enter sudo sh /etc/rc.local
When I add one of the following commands using mtouch or elo3b, it does work at startup (but the accuracy is really bad, even after executing calibrator):
/usr/bin/inputattach --daemon --always -mtouch /dev/ttyS4
/usr/bin/inputattach --daemon --always -elo3b /dev/ttyS4
What could be the reason -elo is not loaded at startup, where -elo3b and -mtouch are?
There is nothing in the logs that gives an error.
Alternatively, is there any other (easier) way of enabling the touchscreen on lubuntu? I only care if tap on the screen is working, not multi touch gestures.
lubuntu touchscreen xinput
add a comment |
I have added the following command to /etc/rc.local
/usr/bin/inputattach --daemon --always -elo /dev/ttyS4
but it is not loaded at startup. I have checked that the mode is supported and it works when I call it in lxterminal or when I enter sudo sh /etc/rc.local
When I add one of the following commands using mtouch or elo3b, it does work at startup (but the accuracy is really bad, even after executing calibrator):
/usr/bin/inputattach --daemon --always -mtouch /dev/ttyS4
/usr/bin/inputattach --daemon --always -elo3b /dev/ttyS4
What could be the reason -elo is not loaded at startup, where -elo3b and -mtouch are?
There is nothing in the logs that gives an error.
Alternatively, is there any other (easier) way of enabling the touchscreen on lubuntu? I only care if tap on the screen is working, not multi touch gestures.
lubuntu touchscreen xinput
add a comment |
I have added the following command to /etc/rc.local
/usr/bin/inputattach --daemon --always -elo /dev/ttyS4
but it is not loaded at startup. I have checked that the mode is supported and it works when I call it in lxterminal or when I enter sudo sh /etc/rc.local
When I add one of the following commands using mtouch or elo3b, it does work at startup (but the accuracy is really bad, even after executing calibrator):
/usr/bin/inputattach --daemon --always -mtouch /dev/ttyS4
/usr/bin/inputattach --daemon --always -elo3b /dev/ttyS4
What could be the reason -elo is not loaded at startup, where -elo3b and -mtouch are?
There is nothing in the logs that gives an error.
Alternatively, is there any other (easier) way of enabling the touchscreen on lubuntu? I only care if tap on the screen is working, not multi touch gestures.
lubuntu touchscreen xinput
I have added the following command to /etc/rc.local
/usr/bin/inputattach --daemon --always -elo /dev/ttyS4
but it is not loaded at startup. I have checked that the mode is supported and it works when I call it in lxterminal or when I enter sudo sh /etc/rc.local
When I add one of the following commands using mtouch or elo3b, it does work at startup (but the accuracy is really bad, even after executing calibrator):
/usr/bin/inputattach --daemon --always -mtouch /dev/ttyS4
/usr/bin/inputattach --daemon --always -elo3b /dev/ttyS4
What could be the reason -elo is not loaded at startup, where -elo3b and -mtouch are?
There is nothing in the logs that gives an error.
Alternatively, is there any other (easier) way of enabling the touchscreen on lubuntu? I only care if tap on the screen is working, not multi touch gestures.
lubuntu touchscreen xinput
lubuntu touchscreen xinput
edited Sep 9 '16 at 15:00
asked Sep 9 '16 at 13:54
Nitin
1016
1016
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Been looking for a solution for 3 days. Finally found it thanks to the sources below. For anybody who is facing a similar problem. You need to add the following rule to /lib/udev/rules.d/40-inputattach.rules
SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"
http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html
https://wiki.ubuntu.com/Touchscreen
https://help.ubuntu.com/community/EloTouchScreen
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f822917%2ftouchscreen-elotouch-not-recognized-on-lubuntu-at-startup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Been looking for a solution for 3 days. Finally found it thanks to the sources below. For anybody who is facing a similar problem. You need to add the following rule to /lib/udev/rules.d/40-inputattach.rules
SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"
http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html
https://wiki.ubuntu.com/Touchscreen
https://help.ubuntu.com/community/EloTouchScreen
add a comment |
Been looking for a solution for 3 days. Finally found it thanks to the sources below. For anybody who is facing a similar problem. You need to add the following rule to /lib/udev/rules.d/40-inputattach.rules
SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"
http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html
https://wiki.ubuntu.com/Touchscreen
https://help.ubuntu.com/community/EloTouchScreen
add a comment |
Been looking for a solution for 3 days. Finally found it thanks to the sources below. For anybody who is facing a similar problem. You need to add the following rule to /lib/udev/rules.d/40-inputattach.rules
SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"
http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html
https://wiki.ubuntu.com/Touchscreen
https://help.ubuntu.com/community/EloTouchScreen
Been looking for a solution for 3 days. Finally found it thanks to the sources below. For anybody who is facing a similar problem. You need to add the following rule to /lib/udev/rules.d/40-inputattach.rules
SUBSYSTEM=="tty", KERNEL=="ttyS4", ACTION=="add|change", RUN+="/lib/udev/inputattach --elotouch /dev/%k"
http://who-t.blogspot.nl/2012/07/elographics-touchscreen-setup.html
https://wiki.ubuntu.com/Touchscreen
https://help.ubuntu.com/community/EloTouchScreen
answered Sep 10 '16 at 13:19
Nitin
1016
1016
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f822917%2ftouchscreen-elotouch-not-recognized-on-lubuntu-at-startup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown