<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux * Screw &#187; ipod</title>
	<atom:link href="http://www.linuxscrew.com/category/ipod/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 Nov 2011 14:19:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=9365</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Split huge files in Ubuntu or any other Linux distro</title>
		<link>http://www.linuxscrew.com/2010/06/16/split-huge-files-using-ubuntu-linux/</link>
		<comments>http://www.linuxscrew.com/2010/06/16/split-huge-files-using-ubuntu-linux/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 15:10:18 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=1072</guid>
		<description><![CDATA[Recently I&#8217;ve bought WD TV media player for streaming full HD movies (primarily in 1080p resolution) to my home TV from external storage like usb HDD or ipod classic. You might already know that size of average HD movie rip is more than 4GB (e.g. full HD Avatar movie image is literally 21 GB mkv [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve bought WD TV media player for streaming full HD movies (primarily in <a href="http://en.wikipedia.org/wiki/1080p">1080p</a> resolution) to my home TV from external storage like usb HDD or ipod classic. You might already know that size of average HD movie rip is more than 4GB (e.g. full HD <a href="http://www.imdb.com/title/tt0499549/">Avatar</a> movie image is literally 21 GB mkv file) so it&#8217;s just impossible to store such huge files on any <a href="http://en.wikipedia.org/wiki/File_Allocation_Table">FAT32</a> formatted HDD or ipod. My ipod classic 160 GB is windows formatted so it uses FAT32 filesystem where maximum file size is 4 GB. As far as ipod cannot be formatted into ext3 but still be able to play music (just sweet dreams) I have to <strong>split huge files</strong> to 3.99GB parts and store them to my ipod for later reassemble. When it&#8217;s time to watch the some HD movie stored at ipod it&#8217;s required to assemble those 3.99 GB parts into one solid file, transfer it to media player and then actually watch the movie.</p>
<p>Rather long preface but solution is quite simple. If u run <strong>Ubuntu</strong> you can try <strong><a href="http://lxsplit.sourceforge.net/">lxsplit</a></strong> utility for breaking files into parts (binary packages for other <strong>Linux</strong> distributions as well as source code are available at  lxsplit project&#8217;s <a href="http://lxsplit.sourceforge.net/">homepage</a>.):</p>
<p><code>sudo apt-get install lxsplit</code></p>
<p>In order to split some file in 3.99GB parts use the following command:</p>
<p><code>lxsplit -s /path/to/hugemoviefile.mkv 3999M</code></p>
<p>Depending on size of <em>hugemoviefile.mkv</em> you will get several parts <em>hugemoviefile.mkv.001</em>, <em>hugemoviefile.mkv.002</em> and so on stored in current directory. It means that if you&#8217;re going to store those parts on some external storage like ipod you can do the following:</p>
<p><code>cd /media/ipod/<br />
lxsplit -s /path/to/hugemoviefile.mkv 3999M</code></p>
<p>and hugemoviefile.mkv.001.. will saved in /media/ipod/ directory regardless where hugemoviefile.mkv is located.</p>
<p>Now coming to assembling procedure. It&#8217;s just as easy as splitting:</p>
<p><code>lxsplit -j hugemoviefile.mkv.001</code></p>
<p>Once done you will get <em>hugemoviefile.mkv</em> saved in current directory.</p>
<p><span style="color: #800000;"><em>Have  an interesting article? You&#8217;re welcome to <a href="mailto:artiomix@gmail.comREMOVETHIS">contact me</a> and get  it   published at <a href="http://www.linuxscrew.com">LinuxScrew.com</a>!</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2010/06/16/split-huge-files-using-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use iTunes in Linux including Apple Music Store</title>
		<link>http://www.linuxscrew.com/2008/12/15/use-itunes-in-linux-including-apple-music-store/</link>
		<comments>http://www.linuxscrew.com/2008/12/15/use-itunes-in-linux-including-apple-music-store/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 21:48:19 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=627</guid>
		<description><![CDATA[Quick Introduction to iTunes
Apple iTunes is one of the most popular proprietary digital media players in the whole world. Using this no doubts outstanding application you can organize, play music/video files in very comfortable and user friendly way (it&#8217;s not an advertisement but real truth). Moreover iTunes is the only way to access Apple&#8217;s onilne [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Quick Introduction to iTunes</strong></p>
<p><img src="http://www.linuxscrew.com/wp-content/uploads/2007/09/itunes7logo.jpg" alt="itunes logo" align="right" />Apple iTunes is one of the most popular proprietary digital media players in the whole world. Using this no doubts outstanding application you can organize, play music/video files in very comfortable and user friendly way (it&#8217;s not an advertisement but real truth). Moreover iTunes is the only way to access <strong><a href="http://www.apple.com">Apple&#8217;s</a> onilne <a href="http://en.wikipedia.org/wiki/ITunes_Store">music store</a></strong> and thus people often seeks the possibility to seamlessly access it after moving to Linux from Mac or Windows.</p>
<p>Well, unfortunately Apple doesn&#8217;t believe in magic so there is no native support of iTunes in Linux. At the same time none would deny that Wine does and guys from this project do their best to make things with iTunes in Linux better. In our example we use iTunes 7.3 which comes with Quick Time player 7.1.6, Apple <a href="http://www.iphonelinux.org/index.php/Main_Page">iPhone</a> support and of course <a href="http://www.ipodhacks.com/" class="broken_link" >iPods</a> of any version, family and generation.</p>
<p><strong>Install Apple iTunes 7.3 in Linux</strong></p>
<p>1. <a href="http://www.filehippo.com/download_itunes/tech/?2877">Download iTunes 7.3</a> from apple.com or <a href="http://www.filehippo.com/">filehippo.com</a></p>
<p>2. Prepare Wine for itunes installation (if not installed do &#8220;apt-get install wine -y&#8221; or &#8220;yum install wine -y&#8221; in <strong>Ubuntu</strong>/Debian or Fedora/Redhat/Centos respectively):</p>
<p>$winecfg<br />
wine: creating configuration directory &#8216;/home/artemn/.wine&#8217;&#8230;<br />
fixme:midi:OSS_MidiInit Synthesizer supports MIDI in. Not yet supported.<br />
wine: &#8216;/home/artemn/.wine&#8217; created successfully.</p>
<p>Select your audio driver, it may be something like OSS or Alsa so use one u actually use <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Set Hardware Acceleration to &#8220;Emulation&#8221; option. All other <strong>Wine</strong> settings are per your consideration e.g. Graphics tab.</p>
<p>3. Update richedit30 (Win32 Cabinet Self-Extractor):</p>
<p><code>cd ~/.wine/drive_c/windows/system32<br />
mv richedit32.dll richedit32.bak<br />
mv richedit20.dll richedit20.bak<br />
wine <a href="http://media.codeweavers.com/pub/crossover/office/support/richedit30.exe">richedit30.exe</a></code></p>
<p>Set richedit20.dll and richedit32.dll as native <code>through winecfg</code>.</p>
<p>4. <code>$wine iTunesSetup.exe</code><br />
It will open iTune&#8217;s installation program under wine so you just install itunes as usually you did it in Windows. If error happens just re-run installer. See screenshot below:</p>
<p style="text-align: center;"><a href="http://www.linuxscrew.com/wp-content/uploads/2008/12/screenshot-wi.png"><img class="size-medium wp-image-628 aligncenter" title="screenshot-wi" src="http://www.linuxscrew.com/wp-content/uploads/2008/12/screenshot-wi-300x231.png" alt="" width="300" height="231" /></a></p>
<p style="text-align: left;">5. Now you can start itunes and go through first run setup (all related screenshots are <a href="http://www.wine-reviews.net/applications/itunes-73-on-linux-with-wine.html">here</a>). Just don&#8217;t care about errors thrown into the console:</p>
<p><code>$ cd ~/.wine/drive_c/Program\ Files/iTunes<br />
$ wine itunes.exe</code></p>
<p>6. That&#8217;s it! Now u can use iTunes in Linux as you did it before in other operatin system:</p>
<p><img class="alignnone size-medium wp-image-629" title="screenshot-wine" src="http://www.linuxscrew.com/wp-content/uploads/2008/12/screenshot-wine-300x231.png" alt="" width="300" height="231" /></p>
<p><img class="alignnone size-medium wp-image-630" title="screenshot-wine-des26" src="http://www.linuxscrew.com/wp-content/uploads/2008/12/screenshot-wine-des26-300x231.png" alt="" width="300" height="231" /></p>
<p>P.S. By the way there are numerous <a href="http://www.ubuntuka.com/itunes-ubuntu-linux/#itunes_ubuntu_alternatives">Linux really native alternatives to itunes</a> for comfortable music/video organizing and iPod management. At the same time latter can&#8217;t be as native and seamless as it&#8217;s in iTunes because those playes use Apple&#8217;s proprietary file storage system.</p>
<p>But I definitely recommend <a href="http://banshee-project.org/">banshee</a>, <a href="http://amarok.kde.org/en">amarok</a> and&#8230; <a href="http://exaile.org/">exaile</a> <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object id="Player_a639a3e7-0d75-495b-acc1-9c258c2cd400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600px" height="200px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&amp;MarketPlace=US&amp;ID=V20070822%2FUS%2Flinscr-20%2F8010%2Fa639a3e7-0d75-495b-acc1-9c258c2cd400&amp;Operation=GetDisplayTemplate" /><param name="name" value="Player_a639a3e7-0d75-495b-acc1-9c258c2cd400" /><param name="align" value="middle" /><embed id="Player_a639a3e7-0d75-495b-acc1-9c258c2cd400" type="application/x-shockwave-flash" width="600px" height="200px" src="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&amp;MarketPlace=US&amp;ID=V20070822%2FUS%2Flinscr-20%2F8010%2Fa639a3e7-0d75-495b-acc1-9c258c2cd400&amp;Operation=GetDisplayTemplate" align="middle" name="Player_a639a3e7-0d75-495b-acc1-9c258c2cd400" allowscriptaccess="always" bgcolor="#FFFFFF" quality="high"></embed></object></p>
<p><noscript>null</noscript></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/12/15/use-itunes-in-linux-including-apple-music-store/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux and your Apple iPod</title>
		<link>http://www.linuxscrew.com/2007/09/04/ubuntu-linux-and-your-ipod/</link>
		<comments>http://www.linuxscrew.com/2007/09/04/ubuntu-linux-and-your-ipod/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 12:10:19 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[ipod]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/ubuntu-linux-and-your-ipod/</guid>
		<description><![CDATA[This article is from a new book published by No Starch Press: Ubuntu Linux for Non-Geeks: A Pain-Free, Project-Based, Get-Things-Done Guidebook by Rickford Grant.
Well, you will be happy to know that Ubuntu does iPods, even Nanos.  You will also be happy to know that using your iPod on your Ubuntu system is quite easy. [...]]]></description>
			<content:encoded><![CDATA[<p>This article is from a new book published by No Starch Press: <iphasis><strong>Ubuntu Linux</strong> for Non-Geeks: A Pain-Free, Project-Based, Get-Things-Done Guidebook</iphasis> by Rickford Grant.</p>
<blockquote><p>Well, you will be happy to know that Ubuntu does <a href="http://www.apple.com/itunes/" target="_blank"><strong>iPod</strong></a>s, even Nanos.  You will also be happy to know that using your iPod on your Ubuntu system is quite easy.  All you have to do is plug your iPod into one of your computer&#8217;s USB ports, after which Ubuntu will automatically mount it and place an iPod icon on your desktop.  Yes, no longer do you have to mess around with mount and unmount commands or editing system tables.  Just plug in your pod, and Ubuntu will do the rest. <a href="http://www.linuxjournal.com/article/9266" target="_blank">Read more&#8230;</a></p></blockquote>
<p style="text-align: center"><img src="http://www.linuxscrew.com/wp-content/uploads/2007/09/ipod2.jpg" title="iPod photo" alt="iPod photo" border="0" /></p>
<blockquote></blockquote>
<p>You also might be interested in my <a href="http://www.linuxscrew.com/2007/08/13/top-7-ipod-managing-tools-for-linux-and-mac/">iPod managers review</a> post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2007/09/04/ubuntu-linux-and-your-ipod/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Top 7 iPod managing tools for Linux and Mac</title>
		<link>http://www.linuxscrew.com/2007/08/13/top-7-ipod-managing-tools-for-linux-and-mac/</link>
		<comments>http://www.linuxscrew.com/2007/08/13/top-7-ipod-managing-tools-for-linux-and-mac/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 14:25:00 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[ipod]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://linuxscrew.com/?p=37</guid>
		<description><![CDATA[Here is a list of iPod managing tools for Linux and Apple Mac. You can find detailed review of these tools here.
AmarokBansheeFloolagtkpodRhythmboxSongbirdYamiPod
]]></description>
			<content:encoded><![CDATA[<p>Here is a list of <a href="http://www.apple.com/itunes/">iPod</a> managing tools for <a href="http://www.linux.org">Linux</a> and <a href="http://www.apple.com">Apple</a> Mac. You can find detailed review of these tools <a href="http://www.simplehelp.net/2007/07/08/10-alternatives-to-itunes-for-managing-your-ipod/">here</a>.</p>
<p><a href="http://amarok.kde.org/"><strong>Amarok</strong></a><br /><a href="http://banshee-project.org/Main_Page"><strong>Banshee</strong></a><br /><a href="http://www.floola.com/modules/wiwimod/"><strong>Floola</strong></a><br /><a href="http://www.gtkpod.org/about.html" class="broken_link" ><strong>gtkpod</strong></a><br /><a href="http://www.gnome.org/projects/rhythmbox/"><strong>Rhythmbox</strong></a><br /><a href="http://www.songbirdnest.com/"><strong>Songbird</strong></a><br /><a href="http://www.yamipod.com/main/modules/home/"><strong>YamiPod</strong></a></td>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2007/08/13/top-7-ipod-managing-tools-for-linux-and-mac/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

