<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>blog.crox.net (Entries tagged as iphone)</title>
    <link>https://blog.crox.net/</link>
    <description></description>
    <dc:language>en</dc:language>
    <generator>Serendipity 2.5.0 - http://www.s9y.org/</generator>
    <pubDate>Mon, 16 Mar 2020 22:10:00 GMT</pubDate>

    <image>
    <url>https://blog.crox.net/templates/2k11/img/s9y_banner_small.png</url>
    <title>RSS: blog.crox.net - </title>
    <link>https://blog.crox.net/</link>
    <width>100</width>
    <height>21</height>
</image>

<item>
    <title>Add HEIF support to Ubuntu Linux 18.04 (thumbnails / gimp) - preview and open HEIC files from iPhone directly in Ubuntu</title>
    <link>https://blog.crox.net/archives/114-Add-HEIF-support-to-Ubuntu-Linux-18.04-thumbnails-gimp-preview-and-open-HEIC-files-from-iPhone-directly-in-Ubuntu.html</link>
    
    <comments>https://blog.crox.net/archives/114-Add-HEIF-support-to-Ubuntu-Linux-18.04-thumbnails-gimp-preview-and-open-HEIC-files-from-iPhone-directly-in-Ubuntu.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=114</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=114</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    Since Apple moved from &lt;a href=&quot;https://en.wikipedia.org/wiki/JPEG&quot; title=&quot;JPEG&quot;&gt;JPEG&lt;/a&gt; to &lt;a href=&quot;https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format&quot; title=&quot;HEIF&quot;&gt;HEIF&lt;/a&gt; as default format about two years ago, there has been a lot of progress.&lt;br /&gt;
&lt;br /&gt;
There is a very straightforward way to add minimal HEIC/HEIF support to Ubuntu:&lt;pre&gt;sudo add-apt-repository ppa:strukturag/libheif&lt;br/&gt;sudo apt-get install heif-gdk-pixbuf heif-gimp-plugin heif-thumbnailer&lt;/pre&gt;&lt;br /&gt;
That&#039;s it! You don&#039;t even need to logout or restart, the new functionality is available immediately.&lt;br /&gt;
&lt;br /&gt;
More details &lt;a href=&quot;https://github.com/strukturag/libheif&quot; title=&quot;github/strukturag&quot;&gt;here&lt;/a&gt; and &lt;a href=&quot;https://launchpad.net/~strukturag/+archive/ubuntu/libheif&quot; title=&quot;strukturag PPA&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 16 Mar 2020 22:10:00 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/114-guid.html</guid>
    <category>gimp</category>
<category>heic</category>
<category>heif</category>
<category>iphone</category>
<category>linux</category>
<category>photo</category>
<category>ubuntu</category>

</item>
<item>
    <title>Accessing iPhone (iOS 10.2.1) pictures from Ubuntu</title>
    <link>https://blog.crox.net/archives/104-Accessing-iPhone-iOS-10.2.1-pictures-from-Ubuntu.html</link>
    
    <comments>https://blog.crox.net/archives/104-Accessing-iPhone-iOS-10.2.1-pictures-from-Ubuntu.html#comments</comments>
    <wfw:comment>https://blog.crox.net/wfwcomment.php?cid=104</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>https://blog.crox.net/rss.php?version=2.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    

    <author>nospam@example.com (crox)</author>
    <content:encoded>
    Recent changes introduced with iOS 10 prevent you from mounting an iPhone on a regular Ubuntu installation.&lt;br /&gt;
&lt;br /&gt;
The PPA by Martin Salbaba used to fix the &lt;a href=&quot;https://bugs.launchpad.net/ubuntu/+source/libimobiledevice/+bug/1623666&quot;&gt;issue&lt;/a&gt;, but it hasn&#039;t been updated in a while, and now when I connect my iPhone (running iOS 10.2.1) the pictures are no longer accessible, although the documents are still there.&lt;br /&gt;
&lt;br /&gt;
This solution worked for me (Ubuntu 16.04):&lt;br /&gt;
&lt;br /&gt;
- install libimobiledevice6 + dependencies from this PPA: &lt;a href=&quot;https://launchpad.net/~martin-salbaba/+archive/ubuntu/ppa+libimobiledevice&quot;&gt;https://launchpad.net/~martin-salbaba/+archive/ubuntu/ppa+libimobiledevice&lt;/a&gt; (follow the instructions there)&lt;br /&gt;
&lt;br /&gt;
- install newer libimobiledevice version according to the &quot;recipe&quot; by A.B. here: &lt;a href=&quot;http://askubuntu.com/questions/598940/libimobiledevice-1-2-ios-8-support-for-ubuntu-14-04-trusty&quot;&gt;http://askubuntu.com/questions/598940/libimobiledevice-1-2-ios-8-support-for-ubuntu-14-04-trusty&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
- install ifuse according to the same method:&lt;pre&gt;cd ~/src/&lt;br /&gt;git clone https://github.com/libimobiledevice/ifuse.git&lt;br /&gt;cd ifuse/&lt;br /&gt;sudo apt-get install libfuse2 libfuse-dev&lt;br /&gt;./autogen.sh &lt;br /&gt;make&lt;br /&gt;sudo checkinstall&lt;/pre&gt;&lt;br /&gt;
You can now mount your iPhone like this:&lt;pre&gt;mkdir ~/mnt&lt;br /&gt;ifuse ~/mnt&lt;/pre&gt;I assume the same procedure would work for an iPad too.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sun, 12 Mar 2017 15:40:03 +0000</pubDate>
    <guid isPermaLink="false">https://blog.crox.net/archives/104-guid.html</guid>
    <category>ios</category>
<category>iphone</category>
<category>linux</category>
<category>phone</category>
<category>photo</category>
<category>ubuntu</category>

</item>

</channel>
</rss>
