<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
		>
<channel>
	<title>Comments on: Ubuntu Guide For Windows Users: How To Change File Type Associations</title>
	<atom:link href="http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html</link>
	<description>Computer - Internet - Technology Tips And Tutorials</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:05:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Daniel U. Thibault</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54443</link>
		<dc:creator>Daniel U. Thibault</dc:creator>
		<pubDate>Fri, 04 Mar 2011 02:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54443</guid>
		<description>If whereis returned a blank line, it&#039;s because it did not find blender on the path.  For instance, on one of my systems if I ask for eclipse&#039;s path, I get

eclipse: /etc/eclipse.ini /usr/lib/eclipse /usr/lib64/eclipse

Note how the non-executable file &quot;eclipse.ini&quot; was also found and returned.  If eclipse had not been found, maybe because it had been installed as, for instance, /home/daniel/test/eclipse, I would then add /home/daniel/test to the path.  My example of &quot;/blender/path&quot; was meant to be replaced by the actual path to the blender executable.</description>
		<content:encoded><![CDATA[<p>If whereis returned a blank line, it&#039;s because it did not find blender on the path.  For instance, on one of my systems if I ask for eclipse&#039;s path, I get</p>
<p>eclipse: /etc/eclipse.ini /usr/lib/eclipse /usr/lib64/eclipse</p>
<p>Note how the non-executable file &#034;eclipse.ini&#034; was also found and returned.  If eclipse had not been found, maybe because it had been installed as, for instance, /home/daniel/test/eclipse, I would then add /home/daniel/test to the path.  My example of &#034;/blender/path&#034; was meant to be replaced by the actual path to the blender executable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: norvman</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54386</link>
		<dc:creator>norvman</dc:creator>
		<pubDate>Thu, 03 Mar 2011 19:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54386</guid>
		<description>Okay ... even though I&#039;m very very lost on the whys and whyfores...

typing in whereis blender returned this...

blender:

so I assumed that was all the file path I needed....

so I then typed in PATH=$PATH:/blender/path just as in structed... in the terminal window...
I then went over and tried opening a .blender file... and I got the error message just as before except this time I typed in PATH=$PATH:/blender/path into the &quot;custom&quot; entry field and tried opening a file and sure enough Blender did suddenly start opening it&#039;s own files... 

Thanks for the Great Information!!!

I am steadily falling in love with Linux!</description>
		<content:encoded><![CDATA[<p>Okay &#8230; even though I&#039;m very very lost on the whys and whyfores&#8230;</p>
<p>typing in whereis blender returned this&#8230;</p>
<p>blender:</p>
<p>so I assumed that was all the file path I needed&#8230;.</p>
<p>so I then typed in PATH=$PATH:/blender/path just as in structed&#8230; in the terminal window&#8230;<br />
I then went over and tried opening a .blender file&#8230; and I got the error message just as before except this time I typed in PATH=$PATH:/blender/path into the &#034;custom&#034; entry field and tried opening a file and sure enough Blender did suddenly start opening it&#039;s own files&#8230; </p>
<p>Thanks for the Great Information!!!</p>
<p>I am steadily falling in love with Linux!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel U. Thibault</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54342</link>
		<dc:creator>Daniel U. Thibault</dc:creator>
		<pubDate>Thu, 03 Mar 2011 13:05:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54342</guid>
		<description>First step is to find the Blender app.  If it is named &quot;blender&quot;, then asking &quot;whereis blender&quot; will return its location *if* it lies on the PATH.  As long as it is in the path, you need only invoke &quot;blender&quot; (no need to give a full path).  If it is not on the path, add its path to the path environment variable.  To find blender, use &quot;sudo find / -name blender&quot;.

As https://help.ubuntu.com/community/EnvironmentVariables shows, you then add the path you found to /etc/environment through &quot;sudo gedit /etc/environment&quot; by adding (at its end) something like &quot;PATH=$PATH:/blender/path&quot;.

Another way, perhaps more elegant, to get blender &quot;on the path&quot; is to add a link to the blender app somewhere in the pre-existing path ---typically in /usr/bin or /usr/local/bin.

(Use gksudo instead of sudo if it is installed; it is more GUI-friendly)

I think that once blender is on the path it&#039;ll show up in the list of possible applications to associate .blender with.</description>
		<content:encoded><![CDATA[<p>First step is to find the Blender app.  If it is named &#034;blender&#034;, then asking &#034;whereis blender&#034; will return its location *if* it lies on the PATH.  As long as it is in the path, you need only invoke &#034;blender&#034; (no need to give a full path).  If it is not on the path, add its path to the path environment variable.  To find blender, use &#034;sudo find / -name blender&#034;.</p>
<p>As <a href="https://help.ubuntu.com/community/EnvironmentVariables" rel="nofollow">https://help.ubuntu.com/community/EnvironmentVariables</a> shows, you then add the path you found to /etc/environment through &#034;sudo gedit /etc/environment&#034; by adding (at its end) something like &#034;PATH=$PATH:/blender/path&#034;.</p>
<p>Another way, perhaps more elegant, to get blender &#034;on the path&#034; is to add a link to the blender app somewhere in the pre-existing path &#8212;typically in /usr/bin or /usr/local/bin.</p>
<p>(Use gksudo instead of sudo if it is installed; it is more GUI-friendly)</p>
<p>I think that once blender is on the path it&#039;ll show up in the list of possible applications to associate .blender with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: norvman</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54182</link>
		<dc:creator>norvman</dc:creator>
		<pubDate>Wed, 02 Mar 2011 16:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54182</guid>
		<description>aaaah... okay... I see... 

Okay so I open the mimapps.list file and I edit that? 
that is to say I add a line that says something to the effect of ... 
(I&#039;m not sure what it should say...)
I&#039;m still a little lost here... 

let me add some information... 
when I double click on a .blend file (which is the type of file that blender creates) 
I get the following message...

***Could not display&quot;/home/norvman/111_BlenderWork...oket/ArrayedSproket_017.blend.
There is no application installed for Blender scene files***

if I then click on the &quot;select Application&quot; button 
it gives me long list of all the Apps on my Ubuntu install but Blender 2.56 is not on this list...

So perhaps the more proper question to ask then is Why is Blender 2.56 not on that list and how to get it on that list? 

again... I did not &quot;install&quot; Blender 2.56 thru Ubuntu Software Center nor did I use Synaptic Package Manager... I merely downloaded the Blender 2.56 files, unpacked them into a folder and made a link to the main executable file to a desktop icon...

but that has obviously left the file associations disconnected...

 perhaps this is an off topic problem now... ? 

Any suggestions are appreciated.</description>
		<content:encoded><![CDATA[<p>aaaah&#8230; okay&#8230; I see&#8230; </p>
<p>Okay so I open the mimapps.list file and I edit that?<br />
that is to say I add a line that says something to the effect of &#8230;<br />
(I&#039;m not sure what it should say&#8230;)<br />
I&#039;m still a little lost here&#8230; </p>
<p>let me add some information&#8230;<br />
when I double click on a .blend file (which is the type of file that blender creates)<br />
I get the following message&#8230;</p>
<p>***Could not display&#034;/home/norvman/111_BlenderWork&#8230;oket/ArrayedSproket_017.blend.<br />
There is no application installed for Blender scene files***</p>
<p>if I then click on the &#034;select Application&#034; button<br />
it gives me long list of all the Apps on my Ubuntu install but Blender 2.56 is not on this list&#8230;</p>
<p>So perhaps the more proper question to ask then is Why is Blender 2.56 not on that list and how to get it on that list? </p>
<p>again&#8230; I did not &#034;install&#034; Blender 2.56 thru Ubuntu Software Center nor did I use Synaptic Package Manager&#8230; I merely downloaded the Blender 2.56 files, unpacked them into a folder and made a link to the main executable file to a desktop icon&#8230;</p>
<p>but that has obviously left the file associations disconnected&#8230;</p>
<p> perhaps this is an off topic problem now&#8230; ? </p>
<p>Any suggestions are appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel U. Thibault</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54100</link>
		<dc:creator>Daniel U. Thibault</dc:creator>
		<pubDate>Wed, 02 Mar 2011 04:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54100</guid>
		<description>The tilde (~) means the /home/username folder, so you should look for ~/.local by going to your home folder (if your user name is &quot;Steve&quot;, then that folder will be &quot;/home/Steve&quot;), turning on the display of hidden files, and looking for &quot;.local&quot; (the leading period makes it hidden).  I very much doubt you have a &quot;usr&quot; folder in your home folder.

For those reasons I do not think you found the same file at all.  :-)</description>
		<content:encoded><![CDATA[<p>The tilde (~) means the /home/username folder, so you should look for ~/.local by going to your home folder (if your user name is &#034;Steve&#034;, then that folder will be &#034;/home/Steve&#034;), turning on the display of hidden files, and looking for &#034;.local&#034; (the leading period makes it hidden).  I very much doubt you have a &#034;usr&#034; folder in your home folder.</p>
<p>For those reasons I do not think you found the same file at all.  <img src='http://www.watchingthenet.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: norvman</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-54055</link>
		<dc:creator>norvman</dc:creator>
		<pubDate>Tue, 01 Mar 2011 21:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-54055</guid>
		<description>Daniel U. Thibault @ Thanks for the helpful info.....

I&#039;m having some trouble find this file...
~/.local/share/applications/mimeapps.list

what I did find was ~/usr/share/applications/mimeinfo.cache

is that the same file?

(I&#039;&#039;m using Ubuntu10.4) Which by the way does not display a &quot;Custom&quot; window to enter any kind of a special terminal commands...
What it does do is give a list of all applications... however just as I described... I did not &#039;install&#039; Blender 2.56... I merely downloaded it, unpacked it into a folder and made a link to it&#039;s executable file... 

Also I kind of have an inkling that what is needed is some Blender associative files in these locations you&#039;ve named however how to create those and were all to put them... being new to Using Linux full time (almost a year now of usage) I simply have not had time to get failure with it all... (it does remind me a lot of old AmigaDos however.</description>
		<content:encoded><![CDATA[<p>Daniel U. Thibault @ Thanks for the helpful info&#8230;..</p>
<p>I&#039;m having some trouble find this file&#8230;<br />
~/.local/share/applications/mimeapps.list</p>
<p>what I did find was ~/usr/share/applications/mimeinfo.cache</p>
<p>is that the same file?</p>
<p>(I&#034;m using Ubuntu10.4) Which by the way does not display a &#034;Custom&#034; window to enter any kind of a special terminal commands&#8230;<br />
What it does do is give a list of all applications&#8230; however just as I described&#8230; I did not &#039;install&#039; Blender 2.56&#8230; I merely downloaded it, unpacked it into a folder and made a link to it&#039;s executable file&#8230; </p>
<p>Also I kind of have an inkling that what is needed is some Blender associative files in these locations you&#039;ve named however how to create those and were all to put them&#8230; being new to Using Linux full time (almost a year now of usage) I simply have not had time to get failure with it all&#8230; (it does remind me a lot of old AmigaDos however.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beelissa</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-53914</link>
		<dc:creator>Beelissa</dc:creator>
		<pubDate>Tue, 01 Mar 2011 00:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-53914</guid>
		<description>Wow, thanks, this is exactly what I wanted to know. Great screen shots!</description>
		<content:encoded><![CDATA[<p>Wow, thanks, this is exactly what I wanted to know. Great screen shots!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel U. Thibault</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-46569</link>
		<dc:creator>Daniel U. Thibault</dc:creator>
		<pubDate>Thu, 20 Jan 2011 17:18:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-46569</guid>
		<description>The system-wide file associations are stored in /usr/share/applications/defaults.list

The file associations created by each user are stored in ~/.local/share/applications/mimeapps.list

Each association is stored in a .desktop file.  For instance, if I create an association for .info files, mimeapps.list will add a line like:

application/x-extension-info=userapp-gnome-terminal-DR3APV.desktop;

(It reads &quot;userapp-gnome-terminal...&quot; because I used a command line that begins with &quot;gnome-terminal&quot;; see below)

The &quot;Custom command&quot; you enter during association creation has an &quot; %f&quot; argument added automatically to it, representing the file being opened.  Things get tricky if you want the &quot;%f&quot; elsewhere than at the end.  For instance, if I enter the following custom command for .info files:

gnome-terminal --command=&quot;info %f&quot;

The .desktop will store this line:

Exec=gnome-terminal --command=&quot;info %f&quot; %f

The additional %f is ignored by gnome-terminal, but this may not be the case for other applications you may use in the custom command line.  Your best bet may very well be to edit the .desktop Exec line after creating the association.

You can use the occasion to change the name that appears in the contextual menu.  In our example, the menu will read &quot;Open with gnome-terminal&quot;.  To change this, edit the Name line in the .desktop file.  Thus:

Name=info

Will make the menu read &quot;Open with info&quot;.  This Name is also the one used in the list of applications shown by the &quot;Open with...&quot; dialog.</description>
		<content:encoded><![CDATA[<p>The system-wide file associations are stored in /usr/share/applications/defaults.list</p>
<p>The file associations created by each user are stored in ~/.local/share/applications/mimeapps.list</p>
<p>Each association is stored in a .desktop file.  For instance, if I create an association for .info files, mimeapps.list will add a line like:</p>
<p>application/x-extension-info=userapp-gnome-terminal-DR3APV.desktop;</p>
<p>(It reads &#034;userapp-gnome-terminal&#8230;&#034; because I used a command line that begins with &#034;gnome-terminal&#034;; see below)</p>
<p>The &#034;Custom command&#034; you enter during association creation has an &#034; %f&#034; argument added automatically to it, representing the file being opened.  Things get tricky if you want the &#034;%f&#034; elsewhere than at the end.  For instance, if I enter the following custom command for .info files:</p>
<p>gnome-terminal &#8211;command=&#034;info %f&#034;</p>
<p>The .desktop will store this line:</p>
<p>Exec=gnome-terminal &#8211;command=&#034;info %f&#034; %f</p>
<p>The additional %f is ignored by gnome-terminal, but this may not be the case for other applications you may use in the custom command line.  Your best bet may very well be to edit the .desktop Exec line after creating the association.</p>
<p>You can use the occasion to change the name that appears in the contextual menu.  In our example, the menu will read &#034;Open with gnome-terminal&#034;.  To change this, edit the Name line in the .desktop file.  Thus:</p>
<p>Name=info</p>
<p>Will make the menu read &#034;Open with info&#034;.  This Name is also the one used in the list of applications shown by the &#034;Open with&#8230;&#034; dialog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: norvman</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-30201</link>
		<dc:creator>norvman</dc:creator>
		<pubDate>Sat, 18 Sep 2010 02:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-30201</guid>
		<description>this was good information and I did get this to work on most of my FileAssos
but... I could not seem to get this too work with my Blender programs...
I origonaly installed blender 4.49b through UbuntuSoftwareCenter... the Orginal FileAsso was made there... but now I&#039;m using Blender 2.54beta... an can&#039;t get Ununtu to make the proper FileAsso... I was not able to use the Software Center to install Blender 2.54 I&#039;m simply running it out of a folder in Home/Apps(I made this folder myself)/Blender-2.54-beta-linux-glibc27-i686(which is the downloaded folder I got from the blender website) 
Understand... I can Run Blender 2.54 buy running the blender executable file in that folder were it is at... So what I&#039;m not understanding is why unbuntu is not make that same connection...
Thanks for any info on this you can give</description>
		<content:encoded><![CDATA[<p>this was good information and I did get this to work on most of my FileAssos<br />
but&#8230; I could not seem to get this too work with my Blender programs&#8230;<br />
I origonaly installed blender 4.49b through UbuntuSoftwareCenter&#8230; the Orginal FileAsso was made there&#8230; but now I&#039;m using Blender 2.54beta&#8230; an can&#039;t get Ununtu to make the proper FileAsso&#8230; I was not able to use the Software Center to install Blender 2.54 I&#039;m simply running it out of a folder in Home/Apps(I made this folder myself)/Blender-2.54-beta-linux-glibc27-i686(which is the downloaded folder I got from the blender website)<br />
Understand&#8230; I can Run Blender 2.54 buy running the blender executable file in that folder were it is at&#8230; So what I&#039;m not understanding is why unbuntu is not make that same connection&#8230;<br />
Thanks for any info on this you can give</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter L Collins</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-20998</link>
		<dc:creator>Peter L Collins</dc:creator>
		<pubDate>Mon, 09 Nov 2009 22:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-20998</guid>
		<description>Ubuntu isn&#039;t Microsoft, so we should expect things to be different. Guides like this really help in making the transition. Thank you.</description>
		<content:encoded><![CDATA[<p>Ubuntu isn&#039;t Microsoft, so we should expect things to be different. Guides like this really help in making the transition. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jonny rocket</title>
		<link>http://www.watchingthenet.com/ubuntu-guide-for-windows-users-how-to-change-file-typs.html#comment-17767</link>
		<dc:creator>jonny rocket</dc:creator>
		<pubDate>Sun, 15 Mar 2009 01:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.watchingthenet.com/?p=813#comment-17767</guid>
		<description>great!  thanks for the info.</description>
		<content:encoded><![CDATA[<p>great!  thanks for the info.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

