iphone SYNC - Linux

Christine avatar
By Christine
at 2011-03-14T14:07

Table of Contents

※ 引述《bbsx (WHISKY 君)》之銘言:
: 不知道有沒有人成功的將IPHONE在LINUX上同步
: 如果有的話可以指導我一下嗎?
: 我是使用10.0.4 LUCID ubuntu
: iphone 3gs
: libimobiledevice / ifuse /gtkpod/ usbmuxd / ipheth/ libgpod4 /libplist1
: slimrat/ usbmuxd/ xmltv 都裝了
: 麻煩大家了

印象中,只能copy iPhone的相片出來,是不能同步聯絡人、行事曆的!

--
Tags: Linux

All Comments

32bit 升到 64 bit的無痛方式??

Caroline avatar
By Caroline
at 2011-03-14T11:21
※ 引述《monyo (無常)》之銘言: : ※ 引述《Adama (So Say We All.)》之銘言: : : 就是先找一個partition灌好64bit OS : : 那原本的data對新的OS來說就是一堆目錄和檔案,只須重新建立好目錄結構對應 : : 如果原本的data是放在獨立的分割區裡,那可 ...

批次將JPG改成jpg問題

Faithe avatar
By Faithe
at 2011-03-14T01:55
find . -name and#34;*.JPGand#34; |while read LIST do temp=${LIST%%JPG} mv $LIST $tempand#39;jpgand#39; done - ...

批次將JPG改成jpg問題

Odelette avatar
By Odelette
at 2011-03-14T00:58
用python來做的話,開個文字檔貼上下面的code, chmod u+x 之後執行 #! /usr/bin/env python import os, commands stdout = commands.getstatusoutput(and#39;find . -name and#34;*.JPGa ...

32bit 升到 64 bit的無痛方式??

Bethany avatar
By Bethany
at 2011-03-13T23:44
※ 引述《Adama (So Say We All.)》之銘言: : ※ 引述《monyo (無常)》之銘言: : : 目前電腦用的是ubuntu 10.xx 32bit : : 所以需要將系統升級到64bit, 不過有時候還是需要用32bit來編譯 : : 換句話說, 升級後還需要保留原本的環境, 而且想保 ...

批次將JPG改成jpg問題

Anonymous avatar
By Anonymous
at 2011-03-13T21:37
find . -name and#34;*.JPGand#34; -exec bash -c and#34;mv \$1 \`echo \$1 | sed s/JPG/jpg/\`and#34; -- {} \; for i in `find . -name and#34;*.JPGand#34;`; d ...