<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: I just installed Ubuntu, now how do I install programs?</title>
      <link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs/</link>
      <description>Comments on Ask MetaFilter post I just installed Ubuntu, now how do I install programs?</description>
	  	  <pubDate>Thu, 20 Jul 2006 10:50:29 -0800</pubDate>
      <lastBuildDate>Thu, 20 Jul 2006 10:50:29 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: I just installed Ubuntu, now how do I install programs?</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs</link>	
  	<description>I just installed Ubuntu, now how do I install programs? &lt;br /&gt;&lt;br /&gt; Right now im trying to install songbird, and I extracted it, but I don&apos;t see any notes about installing.</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.42575</guid>
  	<pubDate>Thu, 20 Jul 2006 10:48:04 -0800</pubDate>
  	<dc:creator>chuckforthought.com</dc:creator>
	
	<category>ubuntu</category>
	
	<category>linux</category>
	
	<category>install</category>
	
	<category>songbird</category>
	
</item>
<item>
  	<title>By: orthogonality</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654431</link>	
  	<description>apt-get from the command line, aptitude from the GUI.&lt;br&gt;
&lt;br&gt;
Or, download and compile source. (Often that&apos;s pretty easy: you run the app&apos;s configure script, them run make, then make install).</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654431</guid>
  	<pubDate>Thu, 20 Jul 2006 10:50:29 -0800</pubDate>
  	<dc:creator>orthogonality</dc:creator>
</item>
<item>
  	<title>By: paulsc</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654434</link>	
  	<description>The usual way to do this is to use the &lt;a href=&quot;http://www.debian.org/doc/manuals/apt-howto/&quot;&gt;package management utility, apt&lt;/a&gt;, which will take care of checking and installing dependent packages, and is also used to upgrade your system and apply security fixes. If you installed Ubuntu successfully, apt is already on your machine, configured, and was used in the final part of the installation to update your installation with the current security packages.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654434</guid>
  	<pubDate>Thu, 20 Jul 2006 10:52:28 -0800</pubDate>
  	<dc:creator>paulsc</dc:creator>
</item>
<item>
  	<title>By: agropyron</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654435</link>	
  	<description>Usually the best way to find answers to basic computer questions like this is to google your keyword, and &amp;quot;tutorial&amp;quot;. I found some nice sites by googling &amp;quot;ubuntu tutorial&amp;quot;. Like &lt;a href=&quot;http://paulstamatiou.com/2005/10/24/how-to-ubuntu-linux-for-novices/&quot;&gt;this one&lt;/a&gt;.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654435</guid>
  	<pubDate>Thu, 20 Jul 2006 10:53:33 -0800</pubDate>
  	<dc:creator>agropyron</dc:creator>
</item>
<item>
  	<title>By: turbodog</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654449</link>	
  	<description>&lt;a href=&quot;http://monkeyblog.org/ubuntu/installing/&quot;&gt;How to install &lt;em&gt;ANYTHING&lt;/em&gt; in Ubuntu!&lt;/a&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654449</guid>
  	<pubDate>Thu, 20 Jul 2006 11:06:37 -0800</pubDate>
  	<dc:creator>turbodog</dc:creator>
</item>
<item>
  	<title>By: dammitjim</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654472</link>	
  	<description>Songbird is not in the apt repositories yet, so you won&apos;t be able to do the simple install procedure that you do for most of Ubuntu software. You have downloaded the nightly build, I imagine. I would just run it from wherever you have extracted it for the time being, then when somebody build a .deb you can install it more properly. If you&apos;re new to linux, I wouldn&apos;t bother trying to &amp;quot;properly&amp;quot; install it yourself. &lt;br&gt;
&lt;br&gt;
So let&apos;s say that you have extracted the package to your home directory. From the command line, just invoke the executable. Let&apos;s pretend you start from you home directory:&lt;br&gt;
&lt;br&gt;
# cd Songbird_20060717&lt;br&gt;
# ./Songbird&lt;br&gt;
&lt;br&gt;
This will launch the application, and show you any crash messages that may come up in the terminal. If the program works, and you don&apos;t want to keep a terminal tied to the application, append an ampersand to the final command:&lt;br&gt;
&lt;br&gt;
# ./Songbird &amp;amp;&lt;br&gt;
&lt;br&gt;
This will allow the application to run in the background, so you can close the terminal or use it for something else. It&apos;s a messy way to launch an application, but package installation on linux is kinda complicated. Either read up on how it works (the proper locations for such applications, pathnames, etc.), or just wait until somebody rolls a .deb.&lt;br&gt;
&lt;br&gt;
As for installing other software that HAS been included in the apt repositories:&lt;br&gt;
&lt;br&gt;
I like Synaptic the best, unless I&apos;m doing specific updates or installs with apt-get (apt-get is much faster, of course). Synaptic offers the most information about the various packages,  and control over installs and deinstalls. I use Kubuntu, but I always install Synaptic and all the GTK stuff it needs, since the KDE analog is so crappy and slow (I forget the name).&lt;br&gt;
&lt;br&gt;
# sudo apt-get install synaptic</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654472</guid>
  	<pubDate>Thu, 20 Jul 2006 11:31:36 -0800</pubDate>
  	<dc:creator>dammitjim</dc:creator>
</item>
<item>
  	<title>By: blag</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654505</link>	
  	<description>If you&apos;re new to ubuntu, an installation script like &lt;a href=&quot;http://www.ubuntuforums.org/showthread.php?t=177646&quot;&gt;Automatix&lt;/a&gt; will do a lot of the installing and configuring automatically.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654505</guid>
  	<pubDate>Thu, 20 Jul 2006 11:50:38 -0800</pubDate>
  	<dc:creator>blag</dc:creator>
</item>
<item>
  	<title>By: chrisroberts</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654518</link>	
  	<description>While I am all for compiling stuff from source, I have to say use packages if you can. I try to install everything I can using apt (actually adept which is a kde tool much like synaptic) to make management easier. I prefer the two click upgrade path to downloading, compiling and installing programs. I save programs built from source for times when I absolutely must have the latest version or want an extremely customized version of something.&lt;br&gt;
&lt;br&gt;
Also, apt is a fantastic package management tool all around and with synaptic on top makes installing applications a piece of cake.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654518</guid>
  	<pubDate>Thu, 20 Jul 2006 12:05:50 -0800</pubDate>
  	<dc:creator>chrisroberts</dc:creator>
</item>
<item>
  	<title>By: concrete</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654607</link>	
  	<description>&lt;a href=&quot;http://www.ubuntuforums.org&quot;&gt;Ubuntu Forums &lt;/a&gt; is a really good source for program-specific installation instructions and for configuration instructions in general.  &lt;br&gt;
&lt;br&gt;
There isn&apos;t much on Songbird yet, but I did find &lt;a href=&quot;http://www.ubuntuforums.org/showthread.php?t=205153&amp;highlight=songbird&quot;&gt;this&lt;/a&gt;, which has basic installation instructions.  &lt;br&gt;
&lt;br&gt;
Being new to Linux, though, you might want to use one of the music players that are available in the repositories until you get the hang of things or until Songbird matures a little more.  Good players include XMMS, Rhythmbox (included with Ubuntu), Amarok.  Ubuntu Forums also has a number of threads with recommendations.  &lt;br&gt;
&lt;br&gt;
Finally, blag&apos;s recommendation to use Automatix is very important, not for the media player itself, but for mp3/dvd/other codecs that can&apos;t be installed with Ubuntu for various reasons.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654607</guid>
  	<pubDate>Thu, 20 Jul 2006 13:17:02 -0800</pubDate>
  	<dc:creator>concrete</dc:creator>
</item>
<item>
  	<title>By: Cosine</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654768</link>	
  	<description>This is a hilarious thread... explains very, very well the amazing user friendly nature of linux.&lt;br&gt;
&lt;br&gt;
&amp;quot;apt-get from the command line, aptitude from the GUI.&lt;br&gt;
&lt;br&gt;
Or, download and compile source. (Often that&apos;s pretty easy: you run the app&apos;s configure script, them run make, then make install).&amp;quot;&lt;br&gt;
&lt;br&gt;
or in Windows/Mac: double-click the install file.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654768</guid>
  	<pubDate>Thu, 20 Jul 2006 15:42:35 -0800</pubDate>
  	<dc:creator>Cosine</dc:creator>
</item>
<item>
  	<title>By: chuckforthought.com</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654821</link>	
  	<description>ok now im just trying to get anything that can play mp3&apos;s to work instead of songbird</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654821</guid>
  	<pubDate>Thu, 20 Jul 2006 16:44:55 -0800</pubDate>
  	<dc:creator>chuckforthought.com</dc:creator>
</item>
<item>
  	<title>By: Aquaman</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654829</link>	
  	<description>Defintely go with XMMS for MP3 et al.  A VERY nice little app with lots of power under the hood.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654829</guid>
  	<pubDate>Thu, 20 Jul 2006 16:53:07 -0800</pubDate>
  	<dc:creator>Aquaman</dc:creator>
</item>
<item>
  	<title>By: pompomtom</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#654925</link>	
  	<description>The usual way is Synaptic, which should already be installed. &lt;br&gt;
&lt;br&gt;
For Songbird specifically, it seems that the best thing to do is to &lt;a href=http://www.songbirdnest.com/node/558&gt;build it from source&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
You&apos;ll probably need to install the build-essentials package, with &amp;quot;sudo apt-get install build-essentials&amp;quot;, or finding it in Synaptic, and then consult the Songbird forums.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-654925</guid>
  	<pubDate>Thu, 20 Jul 2006 18:40:33 -0800</pubDate>
  	<dc:creator>pompomtom</dc:creator>
</item>
<item>
  	<title>By: concrete</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#655068</link>	
  	<description>&lt;em&gt;ok now im just trying to get anything that can play mp3&apos;s to work&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
If I&apos;m reading this correctly and you&apos;ve got a player installed and it won&apos;t play mp3s, you likely don&apos;t have the correct codecs installed.&lt;br&gt;
&lt;br&gt;
Ubuntu doesn&apos;t include a lot of codecs because they are proprietary; you&apos;ll need to install them yourself.  Instructions are available on the &lt;a href=&quot;https://help.ubuntu.com/community/RestrictedFormats&quot;&gt;Ubuntu Wiki&lt;/a&gt;.  You can also use an automated configuration script like &lt;a href=&quot;null&quot;&gt;&lt;a href=&quot;http://www.ubuntuforums.org/showthread.php?t=177646&quot;&gt;Automatix&lt;/a&gt; or &lt;a href=&quot;http://easyubuntu.freecontrib.org/&quot;&gt;Easy Ubuntu&lt;/a&gt;, which will also help you set up a lot of other components that are either proprietary or difficult to install.&lt;/a&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-655068</guid>
  	<pubDate>Thu, 20 Jul 2006 21:19:16 -0800</pubDate>
  	<dc:creator>concrete</dc:creator>
</item>
<item>
  	<title>By: chrisroberts</title>
  	<link>http://ask.metafilter.com/42575/I-just-installed-Ubuntu-now-how-do-I-install-programs#686494</link>	
  	<description>&lt;i&gt;This is a hilarious thread... explains very, very well the amazing user friendly nature of linux.&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
While that was really a very snarky comment, try this. Using a single program, synaptic or adept, I can upgrade my complete system, including all of my installed programs, with three clicks. Please tell me how you can do this with the &amp;quot;easy to use&amp;quot; Windows/Mac.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.42575-686494</guid>
  	<pubDate>Sun, 20 Aug 2006 09:15:55 -0800</pubDate>
  	<dc:creator>chrisroberts</dc:creator>
</item>

    </channel>
</rss>
