<?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>gHacks technology news &#187; mount</title>
	<atom:link href="http://www.ghacks.net/tag/mount/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 03:24:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Connect your iPod to gtkpod</title>
		<link>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/</link>
		<comments>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 19:13:11 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[gtkpod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9374</guid>
		<description><![CDATA[You&#8217;re new to Linux. You have managed to figure your way around the desktop and you have become accustomed to the application installation process. Now it&#8217;s time to go about day to day business of using your newfound obsession. Of course one of the first issues you might come across is that of application abundance. [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re new to Linux. You have managed to figure your way around the desktop and you have become accustomed to the application installation process. Now it&#8217;s time to go about day to day business of using your newfound obsession. Of course one of the first issues you might come across is that of application abundance. With Linux there are sometimes countless applications that can handle the same process. Which one to do you use? If you are like many new users you will find an application that does what you need and then you will stop looking. But with Linux there is always something that might be a little better or suit your taste a bit more. One of those applications is gtkpod. Although gtkpod does not contain many of the advanced features of iTunes it is one of the more reliable iTunes-like applications for Linux.In this article I will show you how to connect your iPod to gtkpod.</p>
<p><span id="more-9374"></span><strong>First Steps</strong></p>
<p>The first thing you need to do is to plug in your iPod and mount the device. Before you actually plug in the device there are a few tasks to take care of. The first of these tasks is to create a directory where the iPod will be mounted. As the root user issue the command <em>mkdir /media/mp3</em>. You can name this directory whatever you want. Once you have the directory created you can plug in your iPod. Now issue the command <em>dmesg</em> so we can find out where your iPod was detected. When dmesg has completed you will see output like:</p>
<p><em>sd 2:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)<br />
sd 2:0:0:0: [sdb] Write Protect is off<br />
sd 2:0:0:0: [sdb] Mode Sense: 68 00 00 08<br />
sd 2:0:0:0: [sdb] Assuming drive cache: write through<br />
sd 2:0:0:0: [sdb] 58605120 512-byte hardware sectors (30006 MB)<br />
sd 2:0:0:0: [sdb] Write Protect is off<br />
sd 2:0:0:0: [sdb] Mode Sense: 68 00 00 08<br />
sd 2:0:0:0: [sdb] Assuming drive cache: write through<br />
sdb: sdb1 sdb2</em></p>
<p>As you can see my iPod was listed at <em>/dev/sdb</em>. So now we know what entry to add to <em>/etc/fstab</em>. As the root user again open up <em>/etc/fstab</em> and append the following line:</p>
<p><em>/dev/sdb2 /media/mp3 auto ro,noauto,user 0 0</em></p>
<p>NOTE: The above line will vary depending upon where your iPod was detected and what directory you created for mounting purposes.</p>
<p>With your fstab entry in place exit out of the root user and issue the command <em>mount /media/mp3</em> (Where <em>mp3</em> is the directory you created for mounting purposes).</p>
<p>If you issue the command <em>ls /media/mp3</em> you should now see the contents of your iPod. And with the iPod mounted gtkpod should automatically detecte the iPod.</p>
<p><strong>Fire it up!</strong></p>
<p>Now it&#8217;s time to open up gtkpod. This will most likely be in your Audio/Video or Multimedia menu subdirectory of the Main Menu. If you do not find it you will have to install it. Most distributions do not include gtkpod by default. If yo open up the Add/Remove Applications utility you can find it doing a search for &#8220;gtkpod&#8221;.</p>
<p>Once gtkpod is open, so long as your iPod is mounted, it should detect the device and load it.</p>
<div id="attachment_9379" class="wp-caption alignnone" style="width: 510px"><img src="http://www.ghacks.net/wp-content/uploads/2008/12/gtkpod-500x417.png" alt="gtkpod main window" title="gtkpod" width="500" height="417" class="size-medium wp-image-9379" /><p class="wp-caption-text">gtkpod main window</p></div>
<p>As you can see gtkpod is pretty much a no-frills means to sync your iPod in Linux. Using gtkpod is pretty straightforward: Click to add files or directories, click Save Changes (sync), click to Load your iPod. There is only one issue that you must know about. When you are done with your iPod you need to close gtkpod and then UNMOUNT your iPod! To unmount your iPod go back to the command line and issue the command <em>umount /media/mp3</em> Where <em>mp3</em> is the actual directory where you have mounted your device. If you do not unmount your device you risk losing your data.</p>
<p><strong>Final Thoughts</strong></p>
<p>Gtkpod is one of the most reliable iPod managing tools in Linux. Sure there are far better multi-media players (such as Banshee or Amarok), but their iPod support can be flakey at best. Give gtkpod a try. If you&#8217;re looking for a reliable way to sync your iPod in Linux, this might be it.</p>

	Tags: <a href="http://www.ghacks.net/tag/gtkpod/" title="gtkpod" rel="tag">gtkpod</a>, <a href="http://www.ghacks.net/tag/ipod/" title="iPod" rel="tag">iPod</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/mount/" title="mount" rel="tag">mount</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/06/replace-itunes-with-floola/" title="Replace iTunes with Floola (February 6, 2007)">Replace iTunes with Floola</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/12/28/configuring-gtkpod-for-music-playback/" title="Configuring gtkpod for Music Playback (December 28, 2008)">Configuring gtkpod for Music Playback</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/16/sync-itunes-with-non-ipod-mp3-players/" title="Sync iTunes with non iPod mp3 players (June 16, 2007)">Sync iTunes with non iPod mp3 players</a> (11)</li>
	<li><a href="http://www.ghacks.net/2008/04/24/sync-any-mp3-player-with-itunes/" title="Sync any mp3 player with iTunes (April 24, 2008)">Sync any mp3 player with iTunes</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/12/26/connect-ipod-to-gtkpod/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Mount Zip To Virtual Folders</title>
		<link>http://www.ghacks.net/2008/07/31/mount-zip-to-virtual-folders/</link>
		<comments>http://www.ghacks.net/2008/07/31/mount-zip-to-virtual-folders/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 10:04:16 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5533</guid>
		<description><![CDATA[Zip files usually have to be unpacked before the contents can be accessed. This is especially true for installation packages that come as a zip file. Executing the setup from within the zip file could lead to problems if other files contained in the package are required for the setup to execute properly.
Pismo File Mount [...]]]></description>
			<content:encoded><![CDATA[<p>Zip files usually have to be unpacked before the contents can be accessed. This is especially true for installation packages that come as a zip file. Executing the setup from within the zip file could lead to problems if other files contained in the package are required for the setup to execute properly.</p>
<p><a href="http://www.pismotechnic.com/pfm/ap/">Pismo</a> File Mount Audit Package can mount zip files but also iso, compact iso, compact file set and private folder files as virtual folders on the system. That&#8217;s an excellent way to access and execute the contents of a zip file without having to unpack it first.</p>
<p>The software supports a wide range of Windows operating systems including Windows 2000, Windows XP, Windows Server 2003, Windows Server 2008 and Windows Vista both in 32-bit and 64-bit editions.</p>
<p><span id="more-5533"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/07/mount_iso_zip.jpg" alt="mount iso zip" title="mount iso zip" width="472" height="450" class="alignnone size-medium wp-image-5744" /></p>
<p>It integrates itself nicely in the Windows Explorer right-click menu and becomes available only on supported file extensions. Files can be mounted from all available locations including network devices and removable media.</p>

	Tags: <a href="http://www.ghacks.net/tag/iso/" title="iso" rel="tag">iso</a>, <a href="http://www.ghacks.net/tag/mount/" title="mount" rel="tag">mount</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/zip/" title="zip" rel="tag">zip</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/06/burn-bin-images-without-cue/" title="How to burn Bin images without cue file (May 6, 2008)">How to burn Bin images without cue file</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/23/extract-archives-from-multiple-folders-at-once/" title="Extract archives from multiple folders at once (March 23, 2008)">Extract archives from multiple folders at once</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/06/08/zip-repair/" title="Zip Repair (June 8, 2008)">Zip Repair</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/07/15/zen-key-an-all-purpose-application-manager/" title="Zen Key An All Purpose Application Manager (July 15, 2008)">Zen Key An All Purpose Application Manager</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/13/youtube-batch-downloader/" title="Youtube Batch Downloader (May 13, 2008)">Youtube Batch Downloader</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/07/31/mount-zip-to-virtual-folders/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Daemon Tools 4</title>
		<link>http://www.ghacks.net/2005/11/18/daemon-tools-4/</link>
		<comments>http://www.ghacks.net/2005/11/18/daemon-tools-4/#comments</comments>
		<pubDate>Fri, 18 Nov 2005 10:48:41 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[daemon tools]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[emulate]]></category>
		<category><![CDATA[emulation]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=153</guid>
		<description><![CDATA[Finally, after a very long time, Daemon Tools 4 has been released. For those who never heard about this fine piece of freeware, it could be best described as a cd and dvd drive emulation software. It simulates up to four additional cd or dvd drives connected to your pc and uses cd or dvd images on your hard disk that contain the cd or dvd content.]]></description>
			<content:encoded><![CDATA[<p>Finally, after a very long time, Daemon Tools 4 has been released. For those who never heard about this fine piece of freeware, it could be best described as a cd and dvd drive emulation software. It simulates up to four additional cd or dvd drives connected to your pc and uses cd or dvd images on your hard disk that contain the cd or dvd content.</p>
<p>This procedure is really helpful if you are using cd or dvd media often but are to lazy to get them and put them into your drives. You create a image of it and place it on your hard disk. When you need to access data from the cd or dvd you don´t need to go and get it, its already setup.<br />
Daemon tools itself is not creating images, you need additional software like Nero for this.</p>
<p>The servers are really loaded at the moment, could be that you will have to wait until your download starts.</p>
<p><span id="more-153"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/cd/" title="cd" rel="tag">cd</a>, <a href="http://www.ghacks.net/tag/daemon-tools/" title="daemon tools" rel="tag">daemon tools</a>, <a href="http://www.ghacks.net/tag/dvd/" title="dvd" rel="tag">dvd</a>, <a href="http://www.ghacks.net/tag/emulate/" title="emulate" rel="tag">emulate</a>, <a href="http://www.ghacks.net/tag/emulation/" title="emulation" rel="tag">emulation</a>, <a href="http://www.ghacks.net/tag/mount/" title="mount" rel="tag">mount</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/08/13/why-drm-is-not-consumer-friendly/" title="Why DRM is not consumer friendly (August 13, 2007)">Why DRM is not consumer friendly</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/23/riaa-is-sueing-allofmp3/" title="Riaa is sueing Allofmp3 (December 23, 2006)">Riaa is sueing Allofmp3</a> (0)</li>
	<li><a href="http://www.ghacks.net/2007/03/17/print-covers-using-undercover-xp/" title="Print Covers using Undercover XP (March 17, 2007)">Print Covers using Undercover XP</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/12/17/print-covers-easily-with-undercover-xp/" title="Print Covers Easily With Undercover XP (December 17, 2008)">Print Covers Easily With Undercover XP</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/07/18/nero-burning-rom-autoloader-plugin/" title="Nero Burning Rom Autoloader Plugin (July 18, 2008)">Nero Burning Rom Autoloader Plugin</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2005/11/18/daemon-tools-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
