Não é possível montar o iPhone 5 no Linux - o comando lsusb encontra dispositivo / não dmesg / ipheth não encontrado / idevicemount dispositivo não encontrado

1

Como o título estipula, estou tentando montar meu iPhone 5 no Arch Linux.

lsusb encontra o dispositivo
e retorna Bus 005 Device 006: ID 05ac:12a8 Apple, Inc. iPHone5/5C/5S/6

dmesg | grep "Apple" não retorna nada

eu tenho ifuse, libimobiledevice e usbmuxd instalados, mas ipheth retorna "command not found"

idevicepair pair retorna "No device found, is it plugged in?" e ideviceinfo também retorna "No device found, is it plugged in?"

Alguma dica?

Obrigado

EDITAR %código%  retorna:

   [   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

dmesg | grep ipheth retorna:

ipheth                 16384  0
usbcore               172032  5 uhci_hcd,ehci_hcd,ehci_pci,ipheth
    
por Andrew 22.10.2015 / 23:20

1 resposta

4

Você reinstalou todos os pacotes?

// ifuse libimobiledevice usbmuxd

Para testar dois terminais abertos:

terminal1:

# usbmuxd -f -v

terminal2:

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

Se estiver trabalhando, você pode ativar e iniciar o serviço systemd:

# systemctl enable usbmuxd
# systemctl start usbmuxd
    
por 06.03.2016 / 13:51