本文主要是介绍安装qt问题锦集,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.tslib 中的segmentation fault
problem:所有的tslib测试程序 一运行 都是直接提示 segmentation fault
answer:原来是自己的ts.conf文件去掉第一行的注释的时候 忘记删除空格,删除空格就好了。
2.problem:ts_open:No such file or directory
answer:确定event0的位置是在/dev还是/dev/input,如果没有的话需要自添加mknod /dev/event0 c 13 64
#export TSLIB_TSDEVICE=/dev/event0(在/dev下) // 触摸屏设备路径
3.problem:QWSTslibMouseHandlerPrivate: ts_open() failed with error:
'No such file or directory'
answer:export QWS_MOUSE_PROTO=tslib:/dev/event0(确定你的event0的位置)
4.problem:open fbdevice: No such file or directory
answer:export TSLIB_FBDEVICE=/dev/fb0
如果没有fb0则还得手动添加:mknod /dev/fb0 c 29 0
5.problem:Cannot create Qt for Embedded Linux data directory: /tmp/qtembedded-0
answer:mount -t tmpfs none /tmp
如果没有tmp文件目录先建tmp : mkdir tmp
以上是我遇到的问题并且用到的解决方法,下面是我在网上看到的问题及解决方法:
问题1:
./ts_calibrate: error while loading shared libraries: libts-0.0.so.0: cannot open shared object file: Error 40
./ts_calibrate: error while loading shared libraries: libts-0.0.so.0: cannot open shared object file: No such file or directory
解决方法:库没有加入环境变量
#echo $LD_LIBRARY_PATH // 查看lib路径
#export LD_LIBRARY_PATH=$TSLIB_ROOT/lib
问题2:
Couldnt open tslib config file: No such file or directory
ts_config: Illegal seek
解决方法:
#export TSLIB_CONFFILE=$TSLIB_ROOT/etc/ts.conf
问题3:
Couldnt load module pthres No raw modules loaded.
ts_config: Success
解决方法:
#export TSLIB_PLUGINDIR=$TSLIB_ROOT/lib/ts
问题4:
No raw modules loaded.
ts_config: No such file or directory
解决方法:
修改$TSLIB_ROOT/etc/ts.conf,至少放开一个module_raw,打开tslib-1.4/etc/ts.conf文件,
去掉其中一个modules_raw前面的#符号,并删除空格即可并去掉前面空格
问题5:
tslib时出现IIegal instruction
problem:./ts_calibrate时出现“IIegal instruction“
answer:是编译器的问题,内核用的是4.4.3,然后我第一次编译tslib的时候用的是4.3.2,现在改成4.4.3就好了。
问题5:
tslib的鼠标指针出现了,无法移动。
解决方法:
添加:export QWS_MOUSE_PROTO="Tslib:/dev/event0
问题6:
ioctl VT_OPENQRY: Inappropriate ioctl for device
KDSETMODE: Bad file descriptor
解决方法:
export TSLIB_CONSOLEDEVICE=none
问题7:
Could not read calibration: "/etc/pointercal"
解决方法:
运行 ts_calibrate
问题8:
syntax error: end of file unexpected (expecting "then")
报错: Syntax error: end of file unexpected (expecting "then")
上网查了下 大概是因为我在windows下些的脚本,windows和linux的回车换行时不一样的字符,所以脚本在解释时会出现问题。在windows里,换行用的两个符号,回车换\r行符号\n,在linux下只需一个符号\n就可以了.有个叫dos2unix 的工具,可以解决这问题。用法是这样的:dos2unix filename;
但用ubuntu系统
Ubuntu 下默认没有安装dos2unix工具,而且也没有一个叫这个名字的工具,但是有一个替代工具——tofrodos , 下面就说一下它的安装和使用。
当然还是apt安装啦。
(1)安装tofrodos
sudo apt-get install tofrodos
实际上它安装了两个工具:todos(相当于unix2dos),和fromdos(相当于dos2unix)安装完即可,现在你已经可以进行文本格式的转换啦。
比如: todos Hello.txt (即unix2dos Hello.txt)
这篇关于安装qt问题锦集的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!