Android 设备停止显示在 Nautilus 中(Ubuntu 18.04)

Android 设备停止显示在 Nautilus 中(Ubuntu 18.04)

当我将我的 Android 手机连接到我的家用电脑时,它没有显示在 Nautilus 中 - 一个标有 Android 的漂亮手机图标应该出现在侧边栏上,但只显示了额外的 CD-ROM。使用不同的手机和相机没有成功。在我的家用电脑上格普特可以访问手机内部和附加内存,但 Nautilus 不能再这样做了。

当我将手机连接到办公室笔记本电脑时,它会显示在 Nautilus 中 - Android 和 CD-ROM 都会显示出来。它运行完美。

两台电脑:相同的 Ubuntu 版本,安装相同的软件,相同的配置。也许我在学习 Ubuntu 时弄乱了家用电脑上的某些东西?

在我家用的电脑上mtp 检测返回:

libmtp version: 1.1.13
Listing raw device(s)
Device 0 (VID=0b05 and PID=5f02) is a Asus Zenfone 2 ZE550ML (MTP).
   Found 1 device(s):
   Asus: Zenfone 2 ZE550ML (MTP) (0b05:5f02) @ bus 1, dev 18
Attempting to connect device(s)
Android device detected, assigning default bug flags

以及大量USB low-level信息。

系统盘返回:

Bus 001 Device 018: ID 0b05:5f02 ASUSTek Computer, Inc. 

ls -l /dev/bus/usb/001/018返回:

crw-rw----+ 1 root audio 189, 17 maj 28 20:46 /dev/bus/usb/001/018

在我的办公室笔记本电脑上mtp 检测返回:

libmtp version: 1.1.13
Listing raw device(s)
Device 0 (VID=0b05 and PID=5f02) is a Asus Zenfone 2 ZE550ML (MTP).
   Found 1 device(s):
   Asus: Zenfone 2 ZE550ML (MTP) (0b05:5f02) @ bus 1, dev 24
Attempting to connect device(s)
ignoring libusb_claim_interface() = -6PTP_ERROR_IO: failed to open session, trying again after resetting USB interface
LIBMTP libusb: Attempt to reset device
ignoring libusb_claim_interface() = -6LIBMTP PANIC: failed to open session on second attempt
Unable to open raw device 0
OK.

类似的问题,但没有帮助:Ubuntu 18.04 无法连接 Android 智能手机三星 USB 在 Ubuntu 18.04 中不显示Android 6.0 mtp 设备未显示在 Nautilus 中

答案1

解决方案是重新安装 Nautilus:

sudo apt-get remove nautilus
sudo apt-get install nautilus

我发现安装命令的结果特别有趣:

The following additional packages will be installed:
  gvfs-backends
(...)
Selecting previously unselected package gvfs-backends.
(...)
Setting up gvfs-backends (1.36.1-0ubuntu1) ...

我在操作网络和 SMB 时可能无意中删除了 gvfs-backends。

答案2

libusb_claim_interface() 返回的错误 = -6LIBMTP PANIC: 无法初始化设备

您很可能需要通过以下步骤在 Android 设备上激活 MTP 文件传输:

  1. 启用开发人员设置点击 7 次版本号在关于手机中。
  2. 使能够文件传输USB 配置在发现开发人员选项

看:如何使用 Ubuntu 操作系统访问 OnePlus 5 上的媒体?

相关内容