红联Linux门户
Linux帮助

LeapMotion在ubuntu16.04上的故障(15.04也可用)

发布时间:2016-05-29 11:14:46来源:linux网站作者:geange

解决Systemd启动leapd驱动的问题。

这是在官方论坛看到网友的解决办法,亲测可用。就是新建一个启动文件:

https://community.leapmotion.com/t/tip-ubuntu-systemd-and-leapd/2118


新建一个文件,/lib/systemd/system/leapd.service , 权限为644

# Found by Kevin Cole 2014.11.22 at
# https://github.com/atejeda/leap-fedora-rpm
#
# Remember to:
#
#   ln -s /lib/systemd/system/leapd.service /etc/systemd/system/leapd.service
#   systemctl daemon-reload
#

[Unit]
Description=LeapMotion Daemon
After=syslog.target

[Service]
Type=simple
ExecStart=/usr/sbin/leapd

[Install]
WantedBy=multi-user.target


新建文件后,重新安装leapmotion驱动,如果有报错请按照报错信息彻底删除之前安装后留下leapmotion的文件,再重新安装(希望官方早点解决这个问题。)


本文永久更新地址:http://www.linuxdiyf.com/linux/21057.html