Posts

Showing posts from January, 2025

Downloading icloud photos using icloudpd on linux, windows or mac

iCloud Photo Backup Guide Downloading icloud photos using icloudpd on linux, windows or mac icloudpd is a third-party command-line tool to download all your iCloud Photos automatically. Install icloudpd Install Python3 and pip: sudo apt update sudo apt install python3 python3-pip Install icloudpd: pip3 install icloudpd Download iCloud Photos Create a directory for your photos (e.g., /mnt/backup_photos ): mkdir -p /mnt/backup_photos Run icloudpd to download your photos: icloudpd --directory /mnt/backup_photos --username your_apple_id Authenticate: You’ll be prompted to enter your Apple ID password. If Two-Factor Authentication (2FA) is enabled, you’ll need to enter a verification code sent to your Apple devices. Let icloudpd sync all your phot...