Ubuntu 14.04 + iOS 8.0.2 unhandled lockdown error

后端 未结 4 1257
我在风中等你
我在风中等你 2021-02-05 19:59

I have Ubuntu 14.04 on my 4 laptops and IOS 8.0.2 on my 2 apple devices but cannot mount the Iphone Documents drive anymore since the 8.0.2 update on ANY laptop. I have spent 4

4条回答
  •  粉色の甜心
    2021-02-05 20:56

    I was able to fix it with libimobiledevice-utils & ifuse

    Disconnect your device and install packages.

    sudo apt-get install libimobiledevice-utils ifuse
    

    Restart your system.

    Connect your device to your computer and run this command:

    idevicepair unpair && idevicepair pair
    

    If you phone shows "Trust computer" messages, select "Yes". By now it should connect.

    If it is still throwing error, check if there is a directory var/lib/lockdown. If it is not there, create directory and change permissions for the directory.

    sudo mkdir /var/lib/lockdown
    sudo chmod 777 /var/lib/lockdown
    

    Restart your system.

    Connect your device and run

    idevicepair unpair && idevicepair pair
    

    Now You can access files from your device.

    Sources:

    http://www.upubuntu.com/2012/02/fix-unhandled-lockdown-error-when.html http://ubuntuforums.org/showthread.php?t=2228772

提交回复
热议问题