Results 1 to 5 of 5

Thread: connect iPhone to Ubuntu, now

  1. #1
    Join Date
    Mar 2020
    Beans
    4

    connect iPhone to Ubuntu, now

    So I take pictues and videos on my iPhone 8 of my blog and video accounts. I would just plug my apapter cord into the USB, hit trust and password on the phone and it would pop up in files. NOW, it is not doing that any more. Even a restart and no go. I am assuming apple chnaged something to screw this up.

    I there any software solutions to download to make this work better?

    Using 20.04.2 LTS
    Last edited by archeryrob2; March 19th, 2021 at 12:59 PM.

  2. #2
    Join Date
    Oct 2012
    Beans
    52

    Re: connect iPhone to Ubuntu, now

    Same here, it worked and NO more! Did you resolve it? Thanks

  3. #3
    Join Date
    Oct 2012
    Beans
    52

    Re: connect iPhone to Ubuntu, now


  4. #4
    Join Date
    May 2021
    Beans
    1

    Re: connect iPhone to Ubuntu, now

    Not working tried many times but failed.

  5. #5
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: connect iPhone to Ubuntu, now

    I used to use ppa, but now just install from repostitory.

    Code:
    sudo apt-get install ideviceinstaller libimobiledevice-utils ifuse libimobiledevice6  libplist3
    
    sudo apt-get install heif-gdk-pixbuf heif-thumbnailer libheif1 gimagereader gpicview
    I prefer to mount to a location that does not by default show in file browser, but you could mount anywhere you like.
    Code:
    #iphone First time
    sudo mkdir /mnt/iPhone
    sudo chown  $USER:$USER /mnt/iPhone 
    sudo chmod  a+rwX,o-w /mnt/iPhone
    
    idevicepair pair
    ifuse /mnt/iPhone/
    ls  /mnt/iPhone
    ideviceinfo -d
    
    #to unmount:
    fusermount -u /mnt/iPhone
    idevicepair unpair
    I prefer to use rsync to copy photos. Not my exact command as I have already created folders in my data partition for my Pictures.
    rsync -aruvlP /mnt/iPhone/DCIM/100APPLE/ /mnt/data/Pictures/All2021

    You may have other folders in DCIM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •