Home
Categories
WIKI
Topic
User
LANGUAGE:
中文
English
Deepin下最新Wacom数位板无法使用的解决办法
Experiences and Insight
4449
views ·
3
replies ·
To
floor
Go
Bluek404
deepin
2015-04-27 00:06
Author
本帖最后由 Bluek404 于 2015-4-28 17:08 编辑
前几天刚买了个wacom ctl680
在deepin下死活用不了,各种驱动都装一遍也无果
猜测应该是硬件更新了,deepin当前内核太旧导致
解决方法就是更新内核:
可以直接下载最新版内核的deb直接安装,但是会导致virtualbox的内核驱动无法使用什么的
于是采用直接换源装新版这种简单暴力的方式
首先添加ubuntu 15.04的源
gksu gedit /etc/apt/sources.list
Copy the Code
文件底部加入
deb http://archive.ubuntu.com/ubuntu/ utopic main
deb http://archive.ubuntu.com/ubuntu/ utopic main
Copy the Code
保存
然后更新源
sudo apt-get update
Copy the Code
安装最新内核
sudo apt-get install linux-generic
Copy the Code
然后再打开
/etc/apt/sources.list
删除刚刚添加的那两行再更新源就行了
附:
修改数位板定位方式为相对定位:
默认数位板是绝对定位的,我个人更习惯相对定位,就设置了一下
xsetwacom --set "Wacom Intuos P M Pen stylus" Mode Relative
Copy the Code
其中的
"Wacom Intuos P M Pen stylus"
是你数位板pen的名字,可以用下面这条命令获取
xsetwacom --list devices
Copy the Code
想要修改其他配置可以用
xsetwacom --get "Wacom Intuos P M Pen stylus" all
Copy the Code
获取
再附:
修改绝对定位后画笔移动速度的方法:
先找到笔的ID
xsetwacom --list
Copy the Code
输出:
Wacom Intuos P M Pen stylus id: 17 type: STYLUS
Wacom Intuos P M Pen eraser id: 18 type: ERASER
Wacom Intuos P M Pad pad id: 19 type: PAD
Copy the Code
我这里笔的ID就是17
然后输入
xinput watch-props 17
Copy the Code
输出:
Device 'Wacom Intuos P M Pen stylus':
Device Enabled (137): 1
Coordinate Transformation Matrix (139): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (261): 0
Device Accel Constant Deceleration (262): 1.000000
Device Accel Adaptive Deceleration (263): 1.000000
Device Accel Velocity Scaling (264): 10.000000
Device Node (257): "/dev/input/event15"
Wacom Tablet Area (637): 0, 0, 21600, 13500
Wacom Rotation (638): 0
Wacom Pressurecurve (639): 0, 0, 100, 100
Wacom Serial IDs (611): 803, 1, 0, 0, 0
Wacom Serial ID binding (612): 0
Wacom Pressure Threshold (613): 27
Wacom Sample and Suppress (614): 4, 4
Wacom Enable Touch (615): 0
Wacom Hover Click (640): 1
Wacom Enable Touch Gesture (616): 0
Wacom Touch Gesture Parameters (617): 0, 0, 250
Wacom Tool Type (399): "STYLUS" (395)
Wacom Button Actions (618): "Wacom button action 0" (619), "Wacom button action 1" (620), "Wacom button action 2" (621)
Wacom button action 0 (619): 1572865
Wacom button action 1 (620): 1572866
Wacom button action 2 (621): 1572867
Device Product ID (256): 1386, 803
Wacom Debug Levels (636): 0, 0
Copy the Code
找到 Device Accel Constant Deceleration 后面括号里的数字
我的是262
然后就可以设置了
xinput set-prop 17 262 2.5
Copy the Code
17和262分别是上面的两个id
2.5是要设置的值,越大画笔移动速度越慢
Reply
Like 0
Favorite
View the author
All Replies
Ethan
deepin
2015-04-27 00:46
#1
犇
;P;P;P;P;P;P;P;P;P;P;P
Reply
Like 0
View the author
rekols
deepin
2015-04-27 00:58
#2
大赞
Reply
Like 0
View the author
cxbii
deepin
2015-04-28 07:07
#3
很赞哈!
Reply
Like 0
View the author
Please
sign
in first
New Thread
Popular Events
More
前几天刚买了个wacom ctl680
在deepin下死活用不了,各种驱动都装一遍也无果
猜测应该是硬件更新了,deepin当前内核太旧导致
解决方法就是更新内核:
可以直接下载最新版内核的deb直接安装,但是会导致virtualbox的内核驱动无法使用什么的
于是采用直接换源装新版这种简单暴力的方式
首先添加ubuntu 15.04的源
文件底部加入
保存
然后更新源
安装最新内核
然后再打开/etc/apt/sources.list删除刚刚添加的那两行再更新源就行了
附:
修改数位板定位方式为相对定位:
默认数位板是绝对定位的,我个人更习惯相对定位,就设置了一下
再附:
修改绝对定位后画笔移动速度的方法:
先找到笔的ID
我这里笔的ID就是17
然后输入
输出:
找到 Device Accel Constant Deceleration 后面括号里的数字
我的是262
然后就可以设置了
17和262分别是上面的两个id
2.5是要设置的值,越大画笔移动速度越慢