<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: AppleScript to mount/unmount a drive</title>
	<atom:link href="http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/feed/" rel="self" type="application/rss+xml" />
	<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 07:51:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Comparlo</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-22991</link>
		<dc:creator>Comparlo</dc:creator>
		<pubDate>Tue, 06 Dec 2011 17:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-22991</guid>
		<description>That is a clever bit of script. I wasn&#039;t sure if it would work on my current macbook pro as i noticed this post was over a year old but it works great still. Thanks</description>
		<content:encoded><![CDATA[<p>That is a clever bit of script. I wasn&#8217;t sure if it would work on my current macbook pro as i noticed this post was over a year old but it works great still. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy Hemmings</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-19258</link>
		<dc:creator>Guy Hemmings</dc:creator>
		<pubDate>Mon, 17 Oct 2011 09:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-19258</guid>
		<description>Brilliant! I have been looking for an easy way to mount my external Firewire drive only when needed, and this saves me a tedious trip to Disk Utility every time I need the disk available.

Thanks very much!

Guy</description>
		<content:encoded><![CDATA[<p>Brilliant! I have been looking for an easy way to mount my external Firewire drive only when needed, and this saves me a tedious trip to Disk Utility every time I need the disk available.</p>
<p>Thanks very much!</p>
<p>Guy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Susanette Marion</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-18672</link>
		<dc:creator>Susanette Marion</dc:creator>
		<pubDate>Thu, 06 Oct 2011 00:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-18672</guid>
		<description>Thanks for the post! After I modified it, it seems to be working great and good.This script solves all these problems!
Thanks for this script, its just what I am looking for. It works with my external USB disk perfectly. Now I can mount it without having to turn the switch on and off again, having to enter terminal lines, or fudge around in Disk Utility.</description>
		<content:encoded><![CDATA[<p>Thanks for the post! After I modified it, it seems to be working great and good.This script solves all these problems!<br />
Thanks for this script, its just what I am looking for. It works with my external USB disk perfectly. Now I can mount it without having to turn the switch on and off again, having to enter terminal lines, or fudge around in Disk Utility.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dae</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-18120</link>
		<dc:creator>Dae</dc:creator>
		<pubDate>Wed, 21 Sep 2011 09:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-18120</guid>
		<description>Have you managed to unmount the drive using Terminal? Why do you think its a cable issue of all sudden?</description>
		<content:encoded><![CDATA[<p>Have you managed to unmount the drive using Terminal? Why do you think its a cable issue of all sudden?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victor</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-18100</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Tue, 20 Sep 2011 23:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-18100</guid>
		<description>Do you think that this could be a problem with the Hard drive cable inside my computer? I was able to boot with my external drive as an internal on my sisters mac.</description>
		<content:encoded><![CDATA[<p>Do you think that this could be a problem with the Hard drive cable inside my computer? I was able to boot with my external drive as an internal on my sisters mac.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dae</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-18064</link>
		<dc:creator>Dae</dc:creator>
		<pubDate>Tue, 20 Sep 2011 07:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-18064</guid>
		<description>You could try this in Terminal:

&lt;pre&gt;&lt;code&gt;diskutil unmountDisk force ...&lt;/code&gt;&lt;/pre&gt;

Put your internal HDD name at the ellipsis, e.g.

&lt;pre&gt;&lt;code&gt;diskutil unmountDisk force &quot;Macintosh HD&quot;&lt;/code&gt;&lt;/pre&gt;

Make sure your current external drive is not called the same as your internal drive though.

You may also use a unix device path to it. (E.g. /dev/disk1). To find it, in Terminal, use 

&lt;pre&gt;&lt;code&gt;diskutil list&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>You could try this in Terminal:</p>
<pre><code>diskutil unmountDisk force ...</code></pre>
<p>Put your internal HDD name at the ellipsis, e.g.</p>
<pre><code>diskutil unmountDisk force "Macintosh HD"</code></pre>
<p>Make sure your current external drive is not called the same as your internal drive though.</p>
<p>You may also use a unix device path to it. (E.g. /dev/disk1). To find it, in Terminal, use </p>
<pre><code>diskutil list</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victor</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-18048</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Tue, 20 Sep 2011 00:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-18048</guid>
		<description>I am trying to partition my new internal hard disk so that I can install OS X on it. I am currently running my mac on an external drive. When I try to partition my drive, it get an error: &quot;Could not unmount disk.&quot; Can this script help me with my problem? Please help me.  :&#039;(</description>
		<content:encoded><![CDATA[<p>I am trying to partition my new internal hard disk so that I can install OS X on it. I am currently running my mac on an external drive. When I try to partition my drive, it get an error: &#8220;Could not unmount disk.&#8221; Can this script help me with my problem? Please help me.  :&#8217;(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dae</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-15133</link>
		<dc:creator>Dae</dc:creator>
		<pubDate>Sun, 24 Jul 2011 12:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-15133</guid>
		<description>What a stupid mistake. Thank you Lewis, I updated the above script.</description>
		<content:encoded><![CDATA[<p>What a stupid mistake. Thank you Lewis, I updated the above script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-12531</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 18 May 2011 23:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-12531</guid>
		<description>Fantastic script! I have a really fast drive that I use for music but it&#039;s way too loud and keeps spinning up/down. This script solves all these problems!</description>
		<content:encoded><![CDATA[<p>Fantastic script! I have a really fast drive that I use for music but it&#8217;s way too loud and keeps spinning up/down. This script solves all these problems!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pingfreak</title>
		<link>http://d43.me/blog/512/applescript-to-mount-unmount-a-drive/#comment-12222</link>
		<dc:creator>pingfreak</dc:creator>
		<pubDate>Tue, 10 May 2011 21:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://dae.cyberic.eu/?p=512#comment-12222</guid>
		<description>works like a charm
happy to have found this</description>
		<content:encoded><![CDATA[<p>works like a charm<br />
happy to have found this</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 276/276 objects using disk: basic

Served from: d43.me @ 2012-05-19 15:33:49 -->
