web-dev-qa-db-ja.com

LinuxでiPhone5をマウントできません-lsusbがデバイスを検出します/ dmesgがありません/ iphethコマンドが見つかりません/ idevicemountデバイスが見つかりません

タイトルにあるように、私はiPhone5をArchLinuxにマウントしようとしています。

lsusbはデバイスを見つけます
そして
Bus 005 Device 006: ID 05ac:12a8 Apple, Inc. iPHone5/5C/5S/6

dmesg | grep "Apple"は何も返しません

ifuse、libimobiledevice、usbmuxdがインストールされていますが、ipheth"command not found"を返します

idevicepair pair"No device found, is it plugged in?"を返します
ideviceinfo"No device found, is it plugged in?"を返します

ヒントはありますか?

ありがとう

[〜#〜] edit [〜#〜]dmesg | grep iphethは以下を返します:

   [   20.150489] ipheth 5-6:4.2: Apple iPhone USB Ethernet device attached
    [   20.150578] usbcore: registered new interface driver ipheth
    [   20.155172] ipheth 5-6:4.2 enp0s29f7u6c4i2: renamed from eth0

lsmod | grep iphethは以下を返します:

ipheth                 16384  0
usbcore               172032  5 uhci_hcd,ehci_hcd,ehci_pci,ipheth
1
Andrew

すべてのパッケージを再インストールしましたか?

// ifuse libimobiledevice usbmuxd

2つの端子をテストして開くには:

ターミナル1:

# usbmuxd -f -v

ターミナル2:

# idevicepair pair
# idevicebackup -i backup --full backupdir

動作している場合は、systemdサービスを有効にして開始できます。

# systemctl enable usbmuxd
# systemctl start usbmuxd
5
ipadman