想在电脑上备份一下手机上的照片,ubuntu系统上操作
参考:https://askubuntu.com/a/928751
1.用USB线物理连接你的手机和电脑
2.这时候会出现里 Document on XX's iPhone,但是点开并没有照片这个文件夹,这时候按 Ctrl+L, 可以看见该文件夹的真实地址
类似于afc://YOURSERIAL:3/
3.删除:3/这部分,然后按 Enter,这时他就会直接读取你的手机存储部分了,可以打开一个 XX's iphone 的文件夹,然后愉快地找到DCIM文件夹进行备份
PS. Ubuntu18.04, iphone 13..3.1
还找到一个ubuntu17.04系统的操作,没有实际操作过,仅供参考
As a workaround, you can mount your iOS device with ifuse.
sudo apt install ifuse
Now connect your device and make sure it is paired with your computer.
idevicepair validate
If you get a SUCCESS message, you are good, if not run idevicepair pair
. Now you can use ifuse to mount your iOS images folder:
mkdir ~/pics && ifuse ~/pics
The images are now available in your $HOME folder under pics. Ready to be synced with Shotwell. To unmount the folder, use fusermount:
fusermount -u ~/pics && rmdir ~/pics
Note: in this example I create a pics folder and remove it afterwards. If you already have a folder named like this, choose a different name.