前端之家收集整理的这篇文章主要介绍了
Ubuntu通过MTP访问Android设备,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文介绍如何在Ubuntu下使用MTP来访问Android设备。
apt-get install mtp-tools mtpfs
将Android设备使用MTP方式和Ubuntu连接起来
执行命令mtp-detect | grep "idVendor\|idProduct",可能会有如下
输出: idVendor: 2717 idProduct: 1268 注意mtp-detect命令的执行时间可能会比较长。
找到
配置文件/etc/udev/rules.d/51-android.rules,如果不存在的话就新建 加入下面的
内容 SUBSYSTEM=="usb",ATTR{idVendor}=="VENDORID",ATTR{idProduct}=="PRODUCTID",MODE="0666″
service udev restart mkdir /media/mtp chmod a+rwx /media/mtp adduser root fuse 找到
配置文件/etc/fuse.conf,并把user_allow_other的注释取消
mtpfs -o allow_other /media/mtp 这个命令同样在执行起来可能会比较慢。
fusermount -u /media/mtp 参考:
MTP到底是个神马东西,请点击我。 原文链接:https://www.f2er.com/ubuntu/355155.html