我试图备份我的Iphone iOS12.1.4。我的Ubuntu版本是Ubuntu18.04.2LTS。我想使用idevicebackup工具,但我认为我做错了什么,因为什么都没有发生……
下面是我尝试使用的命令:
:~$ idevicebackup2 -u-d backup --full ~/backupiphone但唯一的反应是我得到了-help信息。我做错什么了?
我也尝试了这个手册页的代码,但是它没有不同的效果。
谢谢你的帮助,请温柔点,我是一个新的女人在ubuntu科技世界.
更新 -I有一个iOS12.1.4的Iphone模型A1723。-Yes我可以交换照片。
-I将我的Iphone与Ubuntu连接起来,并使用这个comand:
sudo fdisk -l && lsusb && dmesg && usb-devices lsblk && sudo blkid得到大量的信息..。我觉得这三个部分很有趣..。
Bus 001 Device 005: ID 05ac:12a8 Apple, Inc. iPhone5/5C/5S/6和
[ 514.793618] ipheth 1-1.2:4.2: Apple iPhone USB Ethernet device attached和
T: SerialNumber=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Bus=01 Lev=02 Prnt=02 Port=01 Cnt=02 Dev#= 5 Spd=480 MxCh= 0 D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 4 P: Vendor=05ac ProdID=12a8 MxPS=64#Cfgs=4 P:Vendor=05ac ProdID=12a8 MxPS=64#Cfgs=4 P:Sub=00 Prot=00 MxPS=64#Cfgs=4 P:#Cfgs=Prot=00 MxPS=64#Cfgs=4 P:Vendor=05ac ProdID=12a8#Cfgs=4 P:Vendor=05ac Prot=00 MxPS=64#Cfgs=4P:Vendor=05ac ProdID=12a8 MxPS=64#Cfgs=4:en0 20#3 4 I: 0 0 3(仍)en0 29 I: 1 0 en22 i#en34(Vend)Sub=fe Prot=02 Driver=usbfs I: If#= 2 Alt= 1 #EPs= 2 Cls=ff(vend.)Sub=fd Prot=01 Driver=ipheth
发布于 2019-10-20 12:45:39
您的命令中的语法有点错误。您的命令是::~$ idevicebackup2 -u-d backup --full ~/backupiphone
您在命令中的-u和-d之间缺少一个空格。所以正确的命令是:
:~$ idevicebackup2 -u -d backup --full ~/backupiphone然后得到预期的输出。有关idevicebackup2命令的更多信息,请参见这里。
https://askubuntu.com/questions/1127798
复制相似问题