How to calibrate the touchscreen of CF-19 toughbook with 12.10 calibration tool?
I have tried several options from various forums. Proper calibration should not be this difficult.
I have run the calibration tool and most sites say to include a section of the output in a particular file in the /etc/x11/.... file. This file does not exist.
One site said the file was in the /usr/x11/.... directory and that an additional option for calibration should be added. This made no difference.
I included the section from the calibration tool in this file renaming the input device.
This also had no effect.
Does anyone know how to successfully calibrate my touchscreen, and can Ubuntu guru's develop the calibration software so that the output of the calibration tool is automatically stored where it should be?
touchscreen xinput
add a comment |
I have tried several options from various forums. Proper calibration should not be this difficult.
I have run the calibration tool and most sites say to include a section of the output in a particular file in the /etc/x11/.... file. This file does not exist.
One site said the file was in the /usr/x11/.... directory and that an additional option for calibration should be added. This made no difference.
I included the section from the calibration tool in this file renaming the input device.
This also had no effect.
Does anyone know how to successfully calibrate my touchscreen, and can Ubuntu guru's develop the calibration software so that the output of the calibration tool is automatically stored where it should be?
touchscreen xinput
add a comment |
I have tried several options from various forums. Proper calibration should not be this difficult.
I have run the calibration tool and most sites say to include a section of the output in a particular file in the /etc/x11/.... file. This file does not exist.
One site said the file was in the /usr/x11/.... directory and that an additional option for calibration should be added. This made no difference.
I included the section from the calibration tool in this file renaming the input device.
This also had no effect.
Does anyone know how to successfully calibrate my touchscreen, and can Ubuntu guru's develop the calibration software so that the output of the calibration tool is automatically stored where it should be?
touchscreen xinput
I have tried several options from various forums. Proper calibration should not be this difficult.
I have run the calibration tool and most sites say to include a section of the output in a particular file in the /etc/x11/.... file. This file does not exist.
One site said the file was in the /usr/x11/.... directory and that an additional option for calibration should be added. This made no difference.
I included the section from the calibration tool in this file renaming the input device.
This also had no effect.
Does anyone know how to successfully calibrate my touchscreen, and can Ubuntu guru's develop the calibration software so that the output of the calibration tool is automatically stored where it should be?
touchscreen xinput
touchscreen xinput
edited Dec 25 '13 at 2:22
Braiam
52.3k20138223
52.3k20138223
asked Feb 4 '13 at 13:43
BFH42BFH42
113
113
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I have a cf19 mk2 using any linux distro. xinput_calibrator is the program to use.
Install it run it do what it tells you to do.
the file needs to be in the directory /etc/X11/xorg.conf.d/ you may need to create "mkdir" xorg.conf.d. then a file is created in there by you and the output of xinput_calibrator run inside a terminal needs to be cut and paste into it. Slackware 14 is working very well for me at the moment, but if you are new to linux use the latest Ubuntu.
Screen rotation needs xrandr -o "left,Right,Normal" to work but you need to research the extra options to those commands to include the t/screen settings.
Good luck when it works it works VERY well, Cheers.
add a comment |
You need xserver-xorg-input-libinput (not sure), xserver-xorg-input-evdev, and xinput-calibrator.
sudo apt install xserver-xorg-input-libinput xserver-xorg-input-evdev xinput-calibrator
Once installed you have to run xinput_calibrator:
sudo xinput_calibrator
Now it shows a snippet like:
Section "InputClass"
Identifier "calibration"
MatchProduct "Fujitsu Component USB Touch Panel"
Option "Calibration" "951 15763 526 15016"
Option "SwapAxes" "0"
EndSection
(It have to be:
Option "Calibration" "..."
not with max_x etc...). You have to put the snippet in a file that you will have to edit, maybe:
sudo gedit /etc/X11/xorg.conf.d/99-calibration.conf
So add a line in the snippet:
Driver "evdev"
between Matchproduct and the calibration. It took me hours to figure out that the snippet generated by xinput_calibrator did use old fashioned callibration and did not specify Driver, which became libinput by default.
restart x, and it should be done.
Edit: you can add some fun options:
Option "SwapAxes" "0"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "650"
Option "EmulateThirdButtonMoveThreshold" "50"
enjoy ;)
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%2f251214%2fhow-to-calibrate-the-touchscreen-of-cf-19-toughbook-with-12-10-calibration-tool%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have a cf19 mk2 using any linux distro. xinput_calibrator is the program to use.
Install it run it do what it tells you to do.
the file needs to be in the directory /etc/X11/xorg.conf.d/ you may need to create "mkdir" xorg.conf.d. then a file is created in there by you and the output of xinput_calibrator run inside a terminal needs to be cut and paste into it. Slackware 14 is working very well for me at the moment, but if you are new to linux use the latest Ubuntu.
Screen rotation needs xrandr -o "left,Right,Normal" to work but you need to research the extra options to those commands to include the t/screen settings.
Good luck when it works it works VERY well, Cheers.
add a comment |
I have a cf19 mk2 using any linux distro. xinput_calibrator is the program to use.
Install it run it do what it tells you to do.
the file needs to be in the directory /etc/X11/xorg.conf.d/ you may need to create "mkdir" xorg.conf.d. then a file is created in there by you and the output of xinput_calibrator run inside a terminal needs to be cut and paste into it. Slackware 14 is working very well for me at the moment, but if you are new to linux use the latest Ubuntu.
Screen rotation needs xrandr -o "left,Right,Normal" to work but you need to research the extra options to those commands to include the t/screen settings.
Good luck when it works it works VERY well, Cheers.
add a comment |
I have a cf19 mk2 using any linux distro. xinput_calibrator is the program to use.
Install it run it do what it tells you to do.
the file needs to be in the directory /etc/X11/xorg.conf.d/ you may need to create "mkdir" xorg.conf.d. then a file is created in there by you and the output of xinput_calibrator run inside a terminal needs to be cut and paste into it. Slackware 14 is working very well for me at the moment, but if you are new to linux use the latest Ubuntu.
Screen rotation needs xrandr -o "left,Right,Normal" to work but you need to research the extra options to those commands to include the t/screen settings.
Good luck when it works it works VERY well, Cheers.
I have a cf19 mk2 using any linux distro. xinput_calibrator is the program to use.
Install it run it do what it tells you to do.
the file needs to be in the directory /etc/X11/xorg.conf.d/ you may need to create "mkdir" xorg.conf.d. then a file is created in there by you and the output of xinput_calibrator run inside a terminal needs to be cut and paste into it. Slackware 14 is working very well for me at the moment, but if you are new to linux use the latest Ubuntu.
Screen rotation needs xrandr -o "left,Right,Normal" to work but you need to research the extra options to those commands to include the t/screen settings.
Good luck when it works it works VERY well, Cheers.
answered Jun 13 '13 at 3:08
SteveSteve
111
111
add a comment |
add a comment |
You need xserver-xorg-input-libinput (not sure), xserver-xorg-input-evdev, and xinput-calibrator.
sudo apt install xserver-xorg-input-libinput xserver-xorg-input-evdev xinput-calibrator
Once installed you have to run xinput_calibrator:
sudo xinput_calibrator
Now it shows a snippet like:
Section "InputClass"
Identifier "calibration"
MatchProduct "Fujitsu Component USB Touch Panel"
Option "Calibration" "951 15763 526 15016"
Option "SwapAxes" "0"
EndSection
(It have to be:
Option "Calibration" "..."
not with max_x etc...). You have to put the snippet in a file that you will have to edit, maybe:
sudo gedit /etc/X11/xorg.conf.d/99-calibration.conf
So add a line in the snippet:
Driver "evdev"
between Matchproduct and the calibration. It took me hours to figure out that the snippet generated by xinput_calibrator did use old fashioned callibration and did not specify Driver, which became libinput by default.
restart x, and it should be done.
Edit: you can add some fun options:
Option "SwapAxes" "0"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "650"
Option "EmulateThirdButtonMoveThreshold" "50"
enjoy ;)
add a comment |
You need xserver-xorg-input-libinput (not sure), xserver-xorg-input-evdev, and xinput-calibrator.
sudo apt install xserver-xorg-input-libinput xserver-xorg-input-evdev xinput-calibrator
Once installed you have to run xinput_calibrator:
sudo xinput_calibrator
Now it shows a snippet like:
Section "InputClass"
Identifier "calibration"
MatchProduct "Fujitsu Component USB Touch Panel"
Option "Calibration" "951 15763 526 15016"
Option "SwapAxes" "0"
EndSection
(It have to be:
Option "Calibration" "..."
not with max_x etc...). You have to put the snippet in a file that you will have to edit, maybe:
sudo gedit /etc/X11/xorg.conf.d/99-calibration.conf
So add a line in the snippet:
Driver "evdev"
between Matchproduct and the calibration. It took me hours to figure out that the snippet generated by xinput_calibrator did use old fashioned callibration and did not specify Driver, which became libinput by default.
restart x, and it should be done.
Edit: you can add some fun options:
Option "SwapAxes" "0"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "650"
Option "EmulateThirdButtonMoveThreshold" "50"
enjoy ;)
add a comment |
You need xserver-xorg-input-libinput (not sure), xserver-xorg-input-evdev, and xinput-calibrator.
sudo apt install xserver-xorg-input-libinput xserver-xorg-input-evdev xinput-calibrator
Once installed you have to run xinput_calibrator:
sudo xinput_calibrator
Now it shows a snippet like:
Section "InputClass"
Identifier "calibration"
MatchProduct "Fujitsu Component USB Touch Panel"
Option "Calibration" "951 15763 526 15016"
Option "SwapAxes" "0"
EndSection
(It have to be:
Option "Calibration" "..."
not with max_x etc...). You have to put the snippet in a file that you will have to edit, maybe:
sudo gedit /etc/X11/xorg.conf.d/99-calibration.conf
So add a line in the snippet:
Driver "evdev"
between Matchproduct and the calibration. It took me hours to figure out that the snippet generated by xinput_calibrator did use old fashioned callibration and did not specify Driver, which became libinput by default.
restart x, and it should be done.
Edit: you can add some fun options:
Option "SwapAxes" "0"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "650"
Option "EmulateThirdButtonMoveThreshold" "50"
enjoy ;)
You need xserver-xorg-input-libinput (not sure), xserver-xorg-input-evdev, and xinput-calibrator.
sudo apt install xserver-xorg-input-libinput xserver-xorg-input-evdev xinput-calibrator
Once installed you have to run xinput_calibrator:
sudo xinput_calibrator
Now it shows a snippet like:
Section "InputClass"
Identifier "calibration"
MatchProduct "Fujitsu Component USB Touch Panel"
Option "Calibration" "951 15763 526 15016"
Option "SwapAxes" "0"
EndSection
(It have to be:
Option "Calibration" "..."
not with max_x etc...). You have to put the snippet in a file that you will have to edit, maybe:
sudo gedit /etc/X11/xorg.conf.d/99-calibration.conf
So add a line in the snippet:
Driver "evdev"
between Matchproduct and the calibration. It took me hours to figure out that the snippet generated by xinput_calibrator did use old fashioned callibration and did not specify Driver, which became libinput by default.
restart x, and it should be done.
Edit: you can add some fun options:
Option "SwapAxes" "0"
Option "EmulateThirdButton" "1"
Option "EmulateThirdButtonTimeout" "650"
Option "EmulateThirdButtonMoveThreshold" "50"
enjoy ;)
edited 3 hours ago
answered 3 hours ago
PierrePierre
1114
1114
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.
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%2f251214%2fhow-to-calibrate-the-touchscreen-of-cf-19-toughbook-with-12-10-calibration-tool%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