<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>aptitude &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/aptitude/</link>
	<description>Feed of posts on WordPress.com tagged "aptitude"</description>
	<pubDate>Tue, 07 Oct 2008 16:56:49 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[wicked wicd update]]></title>
<link>http://rixbuntu.wordpress.com/?p=32</link>
<pubDate>Wed, 01 Oct 2008 16:15:36 +0000</pubDate>
<dc:creator>Rix</dc:creator>
<guid>http://rixbuntu.pt-br.wordpress.com/2008/10/01/wicked-wicd-update/</guid>
<description><![CDATA[I wrote back in July about a wonderful wired and wireless network manager that made my life easy cal]]></description>
<content:encoded><![CDATA[<p>I <a href="/2008/07/27/woe-less-wireless/">wrote back in July</a> about a wonderful wired and wireless network manager that made my life easy called wicd (pronouced "wicked").  The best thing about it was that it just worked.  Well all that changed yesteday when my update manager pointed out that there was an update for wicd.  Naturally, I thought that the update would make the awesome software more awesome-er, so I installed it without hesitation.  Then I spent the rest of the night rueing my mistake.</p>
<p>I'll tell you how I fixed the problem, but first, let me tell you what doesn't work for me about the new 1.5.3 version of wicd:</p>
<p><!--more--></p>
<ol>
<li>The gui is laggy.  When you open it, it takes a while before any of the options will respond, and even when they do, they sometimes take awhile to start working.</li>
<li>I have a broadcom card (a source of woe within itself -- curse all those companies that refuse play nice with the open source community) and the new version of wicd didn't give an option to use the broadcom wpa supplicant driver.</li>
<li>The install moves files around.  You will get a few notifications after the upgrade telling you that things moved around, but being a total n00b, I didn't appreciate the gravity of this would bork the program.</li>
</ol>
<p>So after much googling, I eventually found out how to fix my problem.  To be specific, I figured out how to unstall version 1.5.3 and reinstall version 1.4.2.  Let somebody else beta test their bugs, I need my wireless to work.  <a href="http://ubuntuforums.org/showthread.php?t=933131">This thread on the Ubuntu forums</a> provided the answer.  Here are the steps I followed to restore my wireless and my sanity:</p>
<ul>
<li> Delete /var/lib/dpkg/info/wicd.prerm by entering the following in a terminal (found under Applications -&#62; Accessories -&#62; Terminal):</li>
</ul>
<blockquote><p>sudo rm /var/lib/dpkg/info/wicd.prerm</p></blockquote>
<ul>
<li>Purge the borked version by entering the following in the terminal:</li>
</ul>
<blockquote><p>sudo aptitude purge wicd</p></blockquote>
<ul>
<li>Download the deb package with the 1.4.2 version of wicd from <a href="http://ubuntuforums.org/showpost.php?p=5877680&#38;postcount=6">this post</a> in the thread.  Note that you will have to register on the forum in order to be able to download the package.</li>
<li>Install the 1.4.2 version by opening Thunar and exploring to where you downloaded the deb package.  Simply double-click it, and it the gdebi program will open and let you install the package.</li>
<li>Restart.</li>
</ul>
<p>After I restared, my wireless just worked fine again.  I hope the same holds true for you.  Beware that the Update Manager will keep bugging you about the new version of wicd.  Fight the urge to give in.  And if anyone knows how to keep Update Manager from nagging you about the upgrade, please let me know.</p>
<p style="padding-left:30px;">Thanks to <a href="http://xubuntunoob.blogspot.com/2006/11/install-deb-file-from-thunar.html">Noob on Xubuntu</a> for the tip about installing a deb package from Thunar, to <a href="http://ubuntuforums.org/showpost.php?p=5877680&#38;postcount=6">itsjareds</a> for sharing version 1.4.2, to <a href="http://ubuntuforums.org/showpost.php?p=5881926&#38;postcount=10">cutOff</a> for posting the full instructions for restoring the old version. And finally, Thanks to <a href="http://diva-urd.livejournal.com/55372.html">diva_urd</a> for expressing her indignation so well.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Instalação Ruby on Rails 1.2.6 no Ubuntu 8.04]]></title>
<link>http://patrickespake.wordpress.com/?p=159</link>
<pubDate>Tue, 30 Sep 2008 00:18:39 +0000</pubDate>
<dc:creator>patrickespake</dc:creator>
<guid>http://patrickespake.pt-br.wordpress.com/2008/09/30/instalacao-ruby-on-rails-126-no-ubuntu-804/</guid>
<description><![CDATA[Para instalar o Rails 1.2.6 no Ubuntu 8.04 siga os passos abaixo:
1) Primeiro instale o Ruby:


sudo]]></description>
<content:encoded><![CDATA[<p>Para instalar o Rails 1.2.6 no Ubuntu 8.04 siga os passos abaixo:</p>
<p>1) Primeiro instale o Ruby:</p>
<p>[sourcecode language="ruby"]<br />
sudo aptitude install ruby1.8-dev ruby1.8 ri1.8 rdoc1.8 irb1.8 libreadline-ruby1.8 libruby1.8<br />
[/sourcecode]</p>
<p>2) Mude as váriaveis simbólicas:</p>
<p>[sourcecode language="ruby"]<br />
sudo ln -s /usr/bin/ruby1.8 /usr/local/bin/ruby<br />
sudo ln -s /usr/bin/ri1.8 /usr/local/bin/ri<br />
sudo ln -s /usr/bin/rdoc1.8 /usr/local/bin/rdoc<br />
sudo ln -s /usr/bin/irb1.8 /usr/local/bin/irb<br />
[/sourcecode]</p>
<p>3) Instale o RUBYGEM:<br />
Baixe o arquivo no site do rubygem (<a href="http://www.rubygems.org/">http://www.rubygems.org/</a>), descompacte e dentro da pasta instale com:</p>
<p>[sourcecode language="ruby"]<br />
ruby setup.rb<br />
[/sourcecode]</p>
<p>4) Agora mude a variável simbólica deste:</p>
<p>[sourcecode language="ruby"]<br />
sudo ln -s /usr/bin/gem1.8 /usr/local/bin/gem<br />
[/sourcecode]</p>
<p>5) Instale a versão do Rails que você quiser (no meu caso 1.2.6):</p>
<p>[sourcecode language="ruby"]<br />
sudo gem install rails -v 1.2.6<br />
[/sourcecode]</p>
<p>Pronto!</p>
<p>Para criar um projeto com esta versão dê:</p>
<p>[sourcecode language="ruby"]<br />
rails _1.2.6_ "nome do projeto"<br />
[/sourcecode]</p>
<p>Obs: Você pode ter várias versões do Rails em sua máquina.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Usuwanie niepotrzebnych pakietów]]></title>
<link>http://sycu.wordpress.com/?p=11</link>
<pubDate>Wed, 24 Sep 2008 10:07:23 +0000</pubDate>
<dc:creator>sycu</dc:creator>
<guid>http://sycu.pt-br.wordpress.com/2008/09/24/usuwanie-niepotrzebnych-pakietow/</guid>
<description><![CDATA[Często podczas usuwania pakietów zdarza się, że apt-get/aptitude pozostawia biblioteki, które n]]></description>
<content:encoded><![CDATA[<p>Często podczas usuwania pakietów zdarza się, że apt-get/aptitude pozostawia biblioteki, które nie są już potrzebne. Większość z nich można łatwo usunąć poprzez polecenie:</p>
<pre>sudo apt-get autoremove</pre>
<p>Warto jednak, raz na jakiś czas, użyć specjalnego programu, który wyszuka 'osierocone' pakiety. Najbardziej znanym narzędziem jest deborphan.<!--more--></p>
<h1>Instalacja</h1>
<p>Deborphan znajduje się w standardowych repozytoriach Ubuntu/Debiana.</p>
<pre>sudo apt-get install deborphan</pre>
<h1>Użycie</h1>
<p>Deborphan jest programem konsolowym. Wpisanie samego 'deborphan' pokaże nam jedynie biblioteki, które nie są już potrzebne. Dostępnych jest jednak kilka opcji, które sprawią, że otrzymamy pełną listę osieroconych pakietów. Najefektywniejszym sposobem jest użycie opcji --guess-all (zachęcam do zapoznania się z deborphan --help i man deborphan). Wpisujemy więc w konsoli:</p>
<pre>deborphan --guess-all</pre>
<p>Warto teraz zauważyć dwie rzeczy:</p>
<ol>
<li>Do użycia polecenia deborphan nie potrzebujemy praw administratora.</li>
<li>Deborphan jedynie wyszukuje pakiety, nie usuwa ich.</li>
</ol>
<p>W przypadku, gdy program znalazł kilka pakietów, nie ma większego problemu. Co jednak zrobić, gdy znaleziono kilkadziesiąt pakietów? UWAŻNIE CZYTAMY LISTĘ ZNALEZIONYCH PAKIETÓW. Może się tak zdarzyć (mi się jeszcze nie zdarzyło), że przez częste zamienne używanie apt-get i aptitude 'posypały się' zależności. Warto więc chociaż przejrzeć listę paczek, aby sprawdzić, czy deborphan nie proponuje nam wyrzucić np. Gnome'a, Firefoksa, lub innego, ważnego dla nas, programu.<br />
Nie musimy każdej paczki usuwać ręcznie. Ja zawsze robię to w ten sposób:</p>
<pre>sudo apt-get remove --purge `deborphan --guess-all`</pre>
<p>W miejsce `deborphan --guess-all` zostanie wstawiony wynik tego polecenia (te 'pojedyncze ciapki' znajdują się przeważnie na klawiszu z tyldą).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Let's Talk About "Rights"]]></title>
<link>http://thetruthabout47.wordpress.com/?p=175</link>
<pubDate>Tue, 23 Sep 2008 13:27:33 +0000</pubDate>
<dc:creator>Carpenter Joe</dc:creator>
<guid>http://thetruthabout47.org/2008/09/23/lets-talk-about-rights/</guid>
<description><![CDATA[A &#8220;right&#8221; defined by Webster: &#8220;That which a person has a just claim to; it is powe]]></description>
<content:encoded><![CDATA[<p>A "right" defined by Webster: "That which a person has a just claim to; it is power or privilege that belongs to a person by law, nature, or tradition."</p>
<p>Does a Colorado worker have the right to work anywhere he/she wants? Provisionally, yes. What is the provision? It is several things.</p>
<ul>
<li>Can one do the job mentally, physically, emotionally?</li>
<li>Does one have the aptitude for the job?</li>
<li>Does one have the experience for the job?</li>
<li>Does one have the education for the job?</li>
<li>Does the worker have the capacity to promptly attend the job?</li>
<li>Can the person be trusted in the job?</li>
</ul>
<p>This list is not inclusive of all provisions employers place on the "right" someone has to work for their company. Here is a provision that proponents of 47, Ryan Frazier, Julian Jay Cole, and other supporters like Jonathan Coors and Bill Owens detest:</p>
<ul>
<li>Is the employee a union worker?</li>
</ul>
<p>Being a union worker is nothing more than a provision required for some jobs, just like all the other provisions listed above. If being a union member tramples the "right" of the employee, why don’t any of the other provisions above do the same thing?</p>
<p>The language of Colorado Amendment 47 is exclusively against unions and collective bargaining (read the bill under <a href="http://thetruthabout47.org/downloads/">Downloads</a>). No one is FORCED to join any union. Sometimes, it is a provision the EMPLOYER requires. Does an employer have that right? Absolutely.</p>
<p>47 attacks the rights of employees. 47 attacks the rights of employers who collectively bargain. 47 attacks the freedoms of all workers in Colorado. Attack 47. Vote NO.</p>
<p>Working hard to keep it simple,<br />
Carpenter Joe</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[aptitude als apt-get-Ersatz (endlich mal)?]]></title>
<link>http://kilux.wordpress.com/?p=33</link>
<pubDate>Mon, 22 Sep 2008 19:53:07 +0000</pubDate>
<dc:creator>vinci</dc:creator>
<guid>http://kilux.pt-br.wordpress.com/2008/09/22/aptitude-als-apt-get-ersatz-endlich-mal/</guid>
<description><![CDATA[Seit einiger Zeit gilt &#8220;aptitude&#8221; als empfohlenes Werkzeug zur Paketverwaltung anstelle ]]></description>
<content:encoded><![CDATA[<p>Seit einiger Zeit gilt "aptitude" als empfohlenes Werkzeug zur Paketverwaltung anstelle von "apt-get". Siehe dazu auch: <a href="http://wiki.debianforum.de/SoftwareVerwalten/AptitudeVsAptGet">AptitudeVsAptGet</a> im Wiki von debianforum.de. Dort werden einige Gründe genannt, die ich hier verkürzt wiedergebe, bzw. auch erweitert habe:</p>
<ol>
<li> <tt>aptitude</tt> lässt sich sowohl als Komandozeilenbefehl ausführen wie auch als Benutzeroberfläche.</li>
<li>In der Kommandozeile lassen sich verschiedene Aktionen in einem Befehl sehr einfach kombinieren , wie: "<tt>aptitude install PAKET1+ PAKET2- </tt>", wodurch das erste Paket installiert und das zweite deinstalliet wird.</li>
<li><tt>aptitude</tt> kennt erweiterte Statusinformationen für die installierten Pakete.</li>
<li>In <tt>aptitude</tt> kann eingestellt werden, ob nur abhängige, empfohlene oder auch vorgeschlagene Pakete automatisch installiert werden.</li>
<li> Sowohl in der Kommandozeile als auch in der Benutzeroberfläche lassen sich bestens Paketkategorien wie Name, Beschreibung, usw. filtern und suchen (es kann somit auch apt-cache zum Suchen ersetzen)</li>
<li>In der Benutzeroberfläche lassen sich <strong>Paketabhängigkeiten</strong> sehr gut zurückverfolgen - auch löst aptitude Abhängigkeiten sauberer auf.</li>
<li>Die Benutzeroberfläche lässt sich als unprivilegierter Nutzer starten; alle Aktionen können so gefahrlos simuliert werden, ohne dass man Gefahr läuft, sein System zu zerschießen.</li>
<li><tt>aptitude</tt>s Benutzeroberfläche vereinfacht den Überblick über veraltete Pakete, indem diese in einem eigenen Unterpunkt "Obsolete und lokale Pakete" einsortiert.</li>
<li><tt>aptitude</tt>s Oberfläche hat eine Schnittstelle zum Debian Task System, in welchem Tasks manuell konfiguriert werden können, wodurch es <tt>tasksel</tt> noch aussticht.</li>
<li>Die Oberfläche zeigt die verschiedenen Versionen aus verschiedenen Quellen an, wodurch ein upgrade/downgrade erleichtert wird.</li>
<li>... protokolliert seine Aktionen in <tt>/var/log/aptitude</tt></li>
<li>... geht sauber mit Empfehlungen (recommends) um</li>
<li>... erlaubt nichtstandardmäßige Versionen aus anderen Paketquellen als Bevorzugte zu installieren.</li>
</ol>
<p>Ich würde dazu einen wichtigen Punkt hinzufügen - nämlich die Tatsache das die Syntax der Basisbefehle m.W. fast identitisch ist. D.h. also "aptitude install", "aptitude remove" usw. sind möglich. D.h. eine Umstellung ist nicht schwer.</p>
<p>Ich habe mich da schon seit einiger Zeit drauf umgestellt und bin aber immer wieder erstaunt das einerseits im Ubuntu-Wiki noch apt-get empfohlen wird und andererseits sonst nicht viele User umgestellt haben. Daher dieses Posting.</p>
<p>Ich habe bereits einiges in<a href="http://re.search.wikia.com/search.html#aptitude"> Wikia Search zu aptitude</a> hinzugefügt.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mathematical Modelling Consultant, Dorset, UK]]></title>
<link>http://businessitjobs.wordpress.com/?p=12</link>
<pubDate>Thu, 18 Sep 2008 11:45:28 +0000</pubDate>
<dc:creator>mrcas</dc:creator>
<guid>http://business-it.net/2008/09/18/mathematical-modelling-consultant-dorset-uk/</guid>
<description><![CDATA[Mathematical Modelling Consultant
Reference: 1208262126
An experienced Mathematical Modelling Consul]]></description>
<content:encoded><![CDATA[<h1>Mathematical Modelling Consultant</h1>
<h3>Reference: 1208262126</h3>
<p class="datetime">An experienced Mathematical Modelling Consultant is required for an ERS Client's Dorset site. The successful applicant will provide scientific and technical consultancy to UK and overseas clients in the nuclear (and non-nuclear) sectors.</p>
<p> </p>
<p> </p>
<h3>Location</h3>
<p>Dorset</p>
<h3>Client Information</h3>
<p>Our Client's Nuclear Services (NSER) business provides consultancy advice to a variety of high technology users from within the nuclear and non-nuclear industries.</p>
<p>They provide scientific consultancy and software to many of the major players in the civil nuclear power industry, in the UK and overseas, and also support a number of large research programmes for the Ministry of Defence.</p>
<p>These posts represent an excellent opportunity for mathematicians, physicists, or engineers who wish to develop expertise in mathematical modelling in a diverse range of disciplines. These could include one or a combination of reactor physics, fluids and thermal modelling, radiation transport, aerosol transport, modelling chemical reactions and many others. Methods developments support safety and performance of power reactors, various nuclear facilities and other industrial plant operations.</p>
<p>NSER is a large department of experienced scientists and engineers, based at Winfrith and Harwell, working on a diverse range of projects for a broad portfolio of clients.</p>
<p>Working on these projects requires interaction with colleagues across the Groups, as well as supporting colleagues across the company. Many of their more experienced staff provide the technical lead on such projects, and this post offers the opportunity to develop into such a role.</p>
<p>Our client is committed to the training and continuing professional development of its staff; seeking to keep their skills up to date by appropriate training, attendance at conferences and liaison with universities. NSER has strong links with many science and engineering departments of a number of leading universities and retains access to state-of-the art research in these institutions.</p>
<h3>Requirements &#38; Responsibilities</h3>
<p>The provision of scientific and technical consultancy to UK and overseas clients in the nuclear (and non-nuclear) sectors, including analysing problems and developing solutions.</p>
<p>Developing, maintaining and validating the computer codes in their code products range.</p>
<p>Involvement in research tasks in the civil or defence nuclear sectors.</p>
<p>The production and presentation of technical reports to clients; Task management, including delivery of work to agreed timescales and budget; Leading/assisting with the production of contract proposals and bids, and identifying new technical business development opportunities</p>
<h3>Requirements: Education and Experience</h3>
<p>Educated to honours degree level (1 or 2:1) in mathematics, physics or engineering, coupled ideally with a relevant post graduate qualification. They are seeking high calibre candidates, who are flexible and keen to develop their skills in the above disciplines.</p>
<p>Some experience of FORTRAN and other high level programming languages, and also with modelling packages such as MATHMATICA or MATHCAD would be an advantage, as would previous experience within the civil nuclear industry or the defence nuclear sector.</p>
<p>Applications from any well qualified candidates in related scientific disciplines are welcome; such candidates will be considered if they can demonstrate a high level of commitment to learn new skills.</p>
<p>Security clearance to work on defence related projects would be desirable.</p>
<h3>Core Competences</h3>
<p>A strong mathematics, physics or engineering background; An aptitude for mathematical modelling including the ability to break down complex situations into tractable problems; An aptitude for computer code development and application; Good analytical skills and the ability to interpret a variety of technical information, distilling and conveying key information; Task management to deliver to time, budget and quality; The ability to work well in multi-disciplinary teams; Flexibility and adaptability, to be able to work on a variety of projects and good interpersonal and communication skills.</p>
<p><a name="OLE_LINK5"><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;color:black;font-family:Tahoma;">Contact ERS on 01454 203 460, or submit a CV to </span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></a><a href="mailto:cv@energyrs.co.uk"><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;font-family:Tahoma;">cv@energyrs.co.uk</span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></a><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;color:black;font-family:Tahoma;">, to register your interest or apply</span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;color:black;font-family:Tahoma;">, d</span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;color:black;font-family:Tahoma;">etails at www.ERSJobs.co.uk</span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><strong><span style="font-size:10pt;font-family:Tahoma;"></span></strong></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Afinando el uso de aptitude search]]></title>
<link>http://debianduim.wordpress.com/2008/09/06/afinando-el-uso-de-aptitude-search/</link>
<pubDate>Sat, 06 Sep 2008 16:31:41 +0000</pubDate>
<dc:creator>anduim</dc:creator>
<guid>http://debianduim.pt-br.wordpress.com/2008/09/06/afinando-el-uso-de-aptitude-search/</guid>
<description><![CDATA[El otro día estaba buscando una aplicación utilizando aptitude, que es la herramienta que habitual]]></description>
<content:encoded><![CDATA[<p>El otro día estaba buscando una aplicación utilizando <a target="_blank" href="http://www.esdebian.org/wiki/tutorial-aptitude">aptitude</a>, que es la herramienta que habitualmente utilizo para tal efecto. Antes siempre lo hacía con <a target="_blank" href="http://www.debian.org/doc/manuals/apt-howto/index.es.html">apt</a>, pero leí que <b>aptitude controlaba mejor el tema de las dependencias</b>, y desde entonces, no he vuelto a usar apt.</p>
<p>El caso es que realizando esa búsqueda observé algo curioso:</p>
<p><a href="http://www.flickr.com/photos/anduim/2833576472/" title="aptitude1 por anduim, en Flickr"><img src="http://farm4.static.flickr.com/3237/2833576472_d433b0aa45_o.jpg" alt="aptitude1" height="67" width="560" /></a></p>
<p>Estaba convencido de que al buscar algo con <b>aptitude</b> la búsqueda se hacía tanto <b>por el nombre como por la descripción</b>, y ha resultado no ser así. Esto no ocurre con <b>apt-cache</b>, que sí busca en ambos campos.</p>
<p><a href="http://www.flickr.com/photos/anduim/2833586202/" title="aptitude2 por anduim, en Flickr"><img src="http://farm4.static.flickr.com/3069/2833586202_6707d3589d_o.jpg" alt="aptitude2" height="203" width="562" /></a></p>
<p>Consultado el tema, me remitieron a la documentación de aptitude, localizada en <font color="#3333ff"><code>/usr/share/doc/aptitude/README</code></font> y descubrí varias cosillas útiles. Se pueden utilizar algunos argumentos para potenciar las búsquedas:
<ul>
<li><font color="#3333ff"><code>aptitude search ~ntexto</code></font>: buscará el texto que le pongamos en el nombre del paquete</li>
<li><font color="#3333ff"><code>aptitude search ~dtexto</code></font>: buscará el texto en la descripción del paquete</li>
</ul>
<p><a href="http://www.flickr.com/photos/anduim/2833608398/" title="aptitude3 por anduim, en Flickr"><img src="http://farm4.static.flickr.com/3283/2833608398_ccef8f25d3_o.jpg" alt="aptitude3" height="202" width="562" /></a></p>
<p>Ahora si ha funcionado la búsqueda. Hay otras opciones, como:
<ul>
<li><font color="#3333ff"><code>aptitude search ~itexto</code></font>: busqueda de paquetes instalados</li>
<li><font color="#3333ff"><code>aptitude search ~ctexto</code></font>: busqueda de paquetes desinstalados, pero no purgados</li>
</ul>
<p>Una de las recomendaciones que me hicieron era la de usar tanto aptitude como apt-cache para las búsquedas, ya que cada uno tiene sus ventajas. Y si teneis mas dudas, echad un vistazo al archivo <b>README</b> de aptitude que os comentaba antes.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Juegos para Ubuntu]]></title>
<link>http://frankgel.wordpress.com/?p=92</link>
<pubDate>Sat, 06 Sep 2008 16:31:04 +0000</pubDate>
<dc:creator>frankgel</dc:creator>
<guid>http://frankgel.pt-br.wordpress.com/2008/09/06/juegos-para-ubuntu/</guid>
<description><![CDATA[Para disfrutar del nuevo repositorio de juegos PlayDeb creado por la gente de GetDeb sólo debemos a]]></description>
<content:encoded><![CDATA[<p>Para disfrutar del nuevo repositorio de juegos PlayDeb creado por la gente de GetDeb sólo debemos agregar tal repositorio a nuestro sources.list. Para ello colocamos lo siguiente en un terminal (Aplicaciones -&#62; Accesorios -&#62; Terminal)</p>
<blockquote><p>sudo gedit /etc/apt/sources.list</p></blockquote>
<p>Colocamos la clave de administrador cuando la pida y luego agregamos la siguiente linea en el archivo que acabamos de abrir</p>
<blockquote><p>deb mirror://www.getdeb.net/playdeb-mirror/hardy/// hardy/</p></blockquote>
<p>Luego, nuevamente en el terminal, colocamos lo siguiente</p>
<blockquote><p>sudo aptitude update</p></blockquote>
<p>Y ahora contamos con una gran cantidad de juegos nuevos que podemos instalar.</p>
<p>Para ello vamos al menú Sistemas -&#62; Administración -&#62; Gestor de paquetes Synaptic, y alli hacemos click en Origen y seleccionamos en las categorias getdeb.net en donde encontraremos los nuevos juegos.</p>
<p>También podemos instalar los juegos a través de la linea de comandos de la siguiente manera</p>
<blockquote><p>sudo aptitude install &#60;nombre del paquete&#62;</p></blockquote>
<p>En donde reemplazaremos &#60;nombre del paquete&#62; por el que queremos instalar, aqui una lista de algunos de los juegos que podemos instalar:</p>
<table border="0" width="100%">
<tbody>
<tr>
<td width="33%">
<p style="text-align:center;"><img class="aligncenter size-full wp-image-94" title="Asalto - Primera persona" src="http://frankgel.wordpress.com/files/2008/09/alien-arena.png" alt="alien-arena" width="106" height="80" /> alien-arena</p>
</td>
<td width="34%">
<p style="text-align:center;"><img class="aligncenter size-full wp-image-95" title="Asalto - Primera persona" src="http://frankgel.wordpress.com/files/2008/09/assaultcube.png" alt="assaultcube" width="100" height="80" /> assaultcube</p>
</td>
<td width="33%">
<p style="text-align:center;"><img class="aligncenter size-full wp-image-96" title="Estrategia Simple" src="http://frankgel.wordpress.com/files/2008/09/atanks.png" alt="atanks" width="106" height="80" /> atanks</p>
</td>
</tr>
<tr>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-97" title="Estrategia" src="http://frankgel.wordpress.com/files/2008/09/boswars.png" alt="boswars" width="106" height="80" /> boswars</p>
</td>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-98" title="Estrategia" src="http://frankgel.wordpress.com/files/2008/09/glest.png" alt="glest" width="106" height="80" /> glest</p>
</td>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-99" title="Lógica" src="http://frankgel.wordpress.com/files/2008/09/interlogic.png" alt="interlogic" width="106" height="80" /> interlogic</p>
</td>
</tr>
<tr>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-100" title="Lógica" src="http://frankgel.wordpress.com/files/2008/09/phun.png" alt="phun" width="106" height="80" /> phun</p>
</td>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-101" title="Racing" src="http://frankgel.wordpress.com/files/2008/09/tileracer.png" alt="tileracer" width="106" height="80" /> tileracer</p>
</td>
<td>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-102" title="Asalto - Primera persona" src="http://frankgel.wordpress.com/files/2008/09/urbanterror.png" alt="urbanterror" width="106" height="80" /> urbanterror</p>
</td>
</tr>
</tbody>
</table>
<p>Sólo reemplazamos &#60;nombre del paquete&#62; por los nombres de esta lista tal y como aparecen y listo, a probar.</p>
<p>Recomiendo full UrbanTerror para jugar en red, excelente y realista como pocos...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Aptitude Test 1]]></title>
<link>http://snkblog.wordpress.com/?p=12</link>
<pubDate>Wed, 03 Sep 2008 16:37:10 +0000</pubDate>
<dc:creator>snkblog</dc:creator>
<guid>http://snkblog.pt-br.wordpress.com/2008/09/03/aptitude-test-1/</guid>
<description><![CDATA[Section-A Reasoning
 


Q. Read the information given below &amp; answer the question:
 
1. A,B,C,]]></description>
<content:encoded><![CDATA[<p class="MsoNormal" style="text-align:center;margin:0;" align="center"><strong><span style="text-decoration:underline;"><span style="font-size:18pt;"><span style="font-family:Times New Roman;"><span style="color:#333399;">Section-A Reasoning</span></span></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;color:#333399;font-family:Times New Roman;"> </span></p>
<div></div>
<p><span style="font-size:small;font-family:Times New Roman;"></p>
<p class="MsoNormal" style="margin:0;">Q. Read the information given below &#38; answer the question:</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">1. A,B,C,D,E,F are six members in a family in which there are two married couples. E, a professor is married to a doctor who is mother of C and F. B, the lawyer is married to A. A has one son and one grandson. Of the two married ladies one is a house wife. There is also one student and male engineer in the family.</p>
<p class="MsoNormal" style="margin:0;"><span>            </span></p>
<p class="MsoNormal" style="margin:0;"><span>            </span>1]<span>         </span>how is A related to C?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1. <span style="color:#ff0000;">Grandmother</span> <span>           </span>2.Grandfather <span>  </span>3.Mother <span>         </span>4. Sister</p>
<p class="MsoNormal" style="margin:0;"><span>            </span></p>
<p class="MsoNormal" style="margin:0;"><span>            </span>2]<span>         </span>Who among the following is the housewife?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1. <span style="color:#ff0000;">A</span> <span>    </span>2. B<span>      </span>3.C<span>      </span>4.D</p>
<p class="MsoNormal" style="margin:0;"><span>            </span></p>
<p class="MsoNormal" style="margin:0;"><span>            </span>3]<span>         </span>How is C related to F?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1. Brother<span>         </span>2. Sister<span>            </span>3. <span style="color:#ff0000;">brother or sister</span><span>        </span>4.data inadequate<span>         </span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">Q. There are six persons A,B,C,D,E,F. C is the sister of F. B is the brother of E’s husband. D is father of A and grandfather of F. There are two fathers, three brothers and a mother in the group.</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"><span>            </span>4]<span>         </span>Who is the mother ?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1.A<span>      </span>2.B<span>       </span>3.D<span>      </span>4.<span style="color:#ff0000;">E</span></p>
<p class="MsoNormal" style="margin:0;"><span>            </span>5]<span>         </span>Who is E’s husband?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1.B<span>       </span>2.C<span>      </span>3.<span style="color:#ff0000;">A</span><span>      </span>4.F</p>
<p class="MsoNormal" style="margin:0;"><span>            </span>6]<span>         </span>How is F related to E ?</p>
<p class="MsoNormal" style="margin:0;"><span>                        </span>1. Uncle<span>           </span>2.Husband<span>        </span>3.<span style="color:#ff0000;">Son</span><span>   </span>4.Daughter</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">Q. 7] Six persons A,B,C,D,E,F are standing in a circle. B is between F &#38; C .A is between E &#38; D. F is to the left of D. Who <span>  </span></p>
<p class="MsoNormal" style="margin:0;"><span>          </span>is between A &#38; F ?</p>
<p class="MsoNormal" style="margin:0;"><span>            </span>1. B<span>      </span>2.C<span>      </span>3.<span style="color:#ff0000;">D</span><span>      </span>4. Both B &#38; D</p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">Q.8]<span>  </span>If <span> </span>Neena says,” Anita’s <span>  </span>father Raman is the only son of my father-in-law Manipal”, then how is Bindu ,who is the sister</p>
<p class="MsoNormal" style="margin:0;"><span>         </span>of Anita, related to Manipal ?</p>
<p class="MsoNormal" style="margin:0;"><span>            </span>1. Niece<span>           </span>2.Daughter<span>       </span>3.Wife<span>              </span>4.<span style="color:#ff0000;">Grand-daughter</span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;">Q .9In a certain language FASHION is coded as FOIHSAN, how is PROBLEM coded in that?</p>
<p class="MsoNormal" style="margin:0;"><span>            </span>1.ROBLEMP<span>   </span>2. <span style="color:#ff0000;">PELBORM</span><span>  </span>3.PRBOELM<span>   </span>4.RBPOELM</p>
<p class="MsoNormal" style="margin:0;">Q. 10] If MACHINE is coded as 19-7-9-14-15-20-11, how will you code DANGER ?</p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:12pt;font-family:'Times New Roman';"><span>            </span>1.<span style="color:#ff0000;">10-7-20-13-11-24</span><span>    </span>2.11-7-20-16-11-24<span>    </span>3.13-7-20-9-11-25<span>      </span>4.13-7-20-10-11-25</span></p>
<p></span></p>
<p class="MsoNormal" style="text-align:center;"><span style="font-family:Times New Roman;"><strong><span style="text-decoration:underline;"><span style="font-size:14pt;"><span style="color:#333399;"><span style="font-size:14pt;"><strong><span style="text-decoration:underline;"><span style="font-size:13pt;color:#333399;"><span style="font-size:14pt;"><strong><span style="text-decoration:underline;"></span></strong></span></span></span></strong></span></span></span></span></strong></span></p>
<p class="MsoNormal" style="text-align:center;"><span style="font-family:Times New Roman;"><strong><span style="text-decoration:underline;"><span style="font-size:14pt;"><span style="color:#333399;"><span style="font-size:14pt;"><strong><span style="text-decoration:underline;"><span style="font-size:13pt;color:#333399;"><span style="font-size:14pt;"><strong><span style="text-decoration:underline;"><span style="font-size:13pt;color:#333399;">Section-B QUANTITATIVE APTITUDE</span></span></strong></span></span></span></strong></span></span></span></span></strong></span></p>
<div><span style="font-family:Times New Roman;"><font face="Times New Roman"></p>
<div><span style="font-size:14pt;"><span style="color:#333399;"><font face="Times New Roman"><span style="font-size:14pt;"><font color="#333399"></p>
<div><span style="font-size:14pt;"><span style="font-size:13pt;color:#333399;"><font face="Times New Roman"><span style="font-size:14pt;"><font color="#333399"><span style="font-size:14pt;"><font color="#333399"></font></span></font></span></font></span></span></div>
<p></font></span></font></span></p>
<div></div>
<p></span></div>
<p></font></span></p>
<div>
<div>
<div><span style="font-family:Times New Roman;"></p>
<div>
<div>
<div>
<div><span style="font-size:14pt;"><span style="font-size:small;color:#000000;font-family:Times New Roman;"><span style="color:#000000;">Q.11] A trader uses 960 gm in place of one kg to sell his goods. Find his actual profit or loss, when he sells his article at 4% loss on cost price.<font face="Times New Roman"><span style="font-size:14pt;"><font face="Times New Roman" size="3" color="#000000"><font color="#000000"></p>
<div>
<div><span style="font-size:small;color:#000000;font-family:Times New Roman;"><span style="color:#000000;"> </span></span></div>
</div>
<p></font></font></span></font></span><font face="Times New Roman"><span style="font-size:14pt;"><font face="Times New Roman" size="3" color="#000000"></p>
<div></div>
<p></font></span></font></span></span></div>
</div>
</div>
</div>
<p></span></div>
</div>
</div>
</div>
<div>
<div><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>     </span>1.Profit 5%<span>       </span>2. loss 5%<span>        </span>3.<span style="color:#ff0000;">neither loss nor profit<span>  </span></span>4.profit 10%</span></span></div>
</div>
<p class="MsoNormal" style="margin:0;"><span><span style="font-size:small;font-family:Times New Roman;">            </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.12] If Rs.160 is 2/5% of the value of a house, find the value of house</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.Rs. 25000<span>     </span>2.Rs.400<span>          </span>3.<span style="color:#ff0000;">RS.40000<span>     </span></span>4.Rs 4000</span></span></p>
<p class="MsoNormal" style="margin:0;"><span><span style="font-size:small;font-family:Times New Roman;">            </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.13] The height of a tree is 10 feet. Increases at a rate of 1% Find the height of the tree after 2 years </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.10.1 feet<span>        </span>2.<span style="color:#ff0000;">10.210 feet<span>    </span></span>3.10.101feet <span>    </span>4.9.5feet</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.14] A dishonest dealer sells goods at 7% loss on cost price but uses 12 gm instead of 16 gm. What is his % profit or loss?</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.<span style="color:#ff0000;">profit 24%</span><span>     </span>2.loss 24%<span>       </span>3.profit 25%<span>     </span>4.loss 25%</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.15] A man sells two items each at Rs.990. He gains 10% on one item and losses 10% on the other .Find his total gain or</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>          </span><span> </span>loss %</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.gain 1%<span>         </span>2. <span style="color:#ff0000;">loss 15</span><span> <span style="color:#ff0000;">%</span>       </span>3. gain 10%<span>      </span>4.loss 10%</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.16] The rate of flow of water in a pipe varies inversely as the square of the radius of the pipe. What is the ratio of the rates </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>           </span>of flow in two pipes of diameters 2 cm. &#38; 4 cm. respectively?</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.9<span>       </span>2.3<span>       </span>3.<span style="color:#ff0000;">6</span><span>       </span>4.12</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.17] A, B, C have a total sum of Rs.225. The ratio of A”S money to that of B &#38; C together is 1:2.Find amount of “A”</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.Rs.85<span>            </span>2.<span style="color:#ff0000;">Rs.75<span>            </span></span>3.Rs.65<span>            </span>4.Rs.55</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;">
<div class="MsoNormal" style="margin:0;"></div>
<p><span style="font-size:small;font-family:Times New Roman;"></p>
<p class="MsoNormal" style="margin:0;">Q.18] X:Y=5:2 then (8X+9Y):(8X+2Y) is</p>
<p class="MsoNormal" style="text-indent:0.5in;margin:0;">1.22:29<span>            </span>2.26:61<span>            </span>3.<span style="color:#ff0000;">29:22</span><span>            </span>4.61:26</p>
<div></div>
<p></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Q.19] If X:Y=3:4 then (2X+3Y):(3Y-2X)=?</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span>1.2:1<span>    </span>2.3:2<span>    </span>3.<span style="color:#ff0000;">3:1</span><span>    </span>4.21:1</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;">
<div class="MsoNormal" style="margin:0;"></div>
<p><span style="font-size:small;font-family:Times New Roman;"></p>
<p class="MsoNormal" style="margin:0;">Q.20]<span>   </span>What is % of a day is 3 hours?</p>
<div></div>
<p><span style="font-size:small;font-family:Times New Roman;"></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:12pt;font-family:&#34;"><span>            </span>1.<span style="color:#ff0000;">12.5%</span><span>           </span>2.16.66%<span>         </span>3.18.66%<span>         </span>4.22.5%</span></p>
<p> </p>
<p></span></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>            </span><span>            </span><span>           </span></span></span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="text-align:center;margin:0;" align="center"><strong><span style="font-size:14pt;"><span style="font-family:Times New Roman;"> </span></span></strong></p>
<p class="MsoNormal" style="text-align:center;margin:0;" align="center"><span style="text-decoration:underline;"><span style="font-size:18pt;"><span style="font-family:Times New Roman;"><span style="color:#333399;">Section-C<strong> Technical</strong></span></span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">1)<span>   </span>The change in length due to a tensile or compressive force acting on a body is given</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>       </span>by</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                       </span>1) P.l.A/E<span>                     </span>2<span style="color:#ff0000;">) Pl/AE</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) E/P.l.A<span>                     </span>4) AE/Pl</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Where<span>              </span>P = Tensile or compressive force acting on the body<span>      </span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>l = original length of the body</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>A =cross-sectional area of the body, and</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>E =Young’s modulus</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">2)<span>    </span>For a perfect gas, according to Boyle’s law</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>1) <span style="color:#ff0000;">pv =constant, if T = constant</span> <span>            </span>2) v/T=constant, If p=const </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span><span lang="FR">3) p/T=constant, if v=const<span>                   </span>4) T/p=constant, if v=const</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span lang="FR"><span style="font-size:small;font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Where<span>  </span><span>            </span>P = absolute<span lang="FR"> pressure</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span lang="FR"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>v = volume</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span lang="FR"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>T = absolute temperature</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span lang="FR"><span style="font-size:small;font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">3)<span>  </span>The working pressure and temperature inside the cylinder of an internal combustion <span>    </span>engine is …………as compared to a steam engine.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>1) <span style="color:#ff0000;">low</span><span>                          </span>2) very low</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) high <span>             </span>4) very high</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">4) Which of the following example of sliding pair?</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>1) <span style="color:#ff0000;">Piston &#38; cylinder of an reciprocating steam engine</span><span>                                         </span><span>            </span>2) Shaft with collars at both ends fitted in to a circular hole</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span> </span><span>                       </span>3) Lead screw of a lathe with nut<span>                                               </span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>4) Ball &#38; socket joint</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">5) The ratio of the specific weight of a liquid to the specific weight of<span>   </span>pure water at a standard temperature is called </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>1) density of liquid<span>                    </span>2) <span style="color:#ff0000;">specific gravity of liquid</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) compressibility of liquid<span>   </span>4) surface tension of liquid</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;">6) When a body, floating in a liquid, is given a small angular displacement, it starts oscillating about a point known as <span> </span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>    </span><span>                    </span>1) centre of pressure<span>                             </span>2) centre of gravity </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) centre of buoyancy <span>                          </span>4) <span style="color:#ff0000;">metacentre</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">7) The heat transferred by conduction, convection and radiation in </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>    </span><span>                    </span>1) Melting of ice<span>                                   </span>2) <span style="color:#ff0000;">boiler furnaces</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) both a &#38; b<span>   </span><span>                                   </span>4) none of these</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">8 )  Stoichiometric ratio is </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>    </span><span>                    </span>1) Chemically correct air-fuel ratio by weight<span>     </span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>2) <span style="color:#ff0000;">correct air-fuel ratio by volume</span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) actual air-fuel ratio for maximum efficiency</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>4) none of the above</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">9) During idling, a petrol engine requires……….mixture.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>    </span><span>                    </span>1) lean<span>                          </span>2) <span style="color:#ff0000;">rich </span></span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) chemically correct <span>    </span>4) very lean</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">10) The volume of air sucked by the compressor during its suction stroke is called</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>    </span><span>                    </span>1) free air delivery<span>                                 </span>2) compressor capacity</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"><span>                        </span>3) <span style="color:#ff0000;">swept volume</span> <span>                                  </span>4) none of these</span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">        </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">       </span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">  For any difficulty, contact <span style="color:#333399;">Dhage Sachin &#38; Raut Santosh</span> ( BE mech)</span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p> </p>
<p><span style="font-size:small;"><span style="font-family:Times New Roman;"> </span></span></p>
<p> </p>
<div><span style="font-size:small;"><span style="font-family:Times New Roman;"> </span></span></div>
<div><span style="font-size:small;"><span style="font-family:Times New Roman;"> </span></span></div>
<p><span style="font-size:small;"><span style="font-family:Times New Roman;"> </p>
<div></div>
<p></span><span style="font-size:small;"></p>
<p class="MsoNormal" style="margin:0;"> </p>
<p> </p>
<p> </p>
<p> </p>
<p></span> </p>
<p> </p>
<p> </p>
<p></span></p>
<p> </p>
<p class="MsoNormal" style="margin:0;"> </p>
<p> </p>
<p class="MsoNormal" style="margin:0;"> </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Downgraden van Ubuntu pakketten]]></title>
<link>http://lcardinaals.wordpress.com/?p=569</link>
<pubDate>Wed, 27 Aug 2008 19:19:34 +0000</pubDate>
<dc:creator>Leo</dc:creator>
<guid>http://lcardinaals.pt-br.wordpress.com/2008/08/27/downgraden-van-ubuntu-pakketten/</guid>
<description><![CDATA[
Soms wil je een update van een Ubuntu-pakket terugdraaien. Je gaat naar Synaptic pakkettenbeheer en]]></description>
<content:encoded><![CDATA[<p><img src="http://lcardinaals.wordpress.com/files/2008/02/ubuntu.jpg" border="0" alt="" width="30" height="25" /><img src="http://lcardinaals.wordpress.com/files/2008/02/logo_kubuntu.jpeg" border="0" alt="" width="25" height="25" /><br />
Soms wil je een update van een Ubuntu-pakket terugdraaien. Je gaat naar Synaptic pakkettenbeheer en dan kun je geen andere versie installeren omdat:</p>
<ul>
<li>je geen andere versie kunt forceren (Pakket --&#62; 'Versie forceren...'), of</li>
<li>je wel een andere versie kunt forceren, maar bij het installeren worden pakketten verwijderd die niet verwijderd mogen worden (bijv. ubuntu-desktop), of</li>
<li>je kan het pakket niet verwijderen, omdat er pakketten worden verwijderd die niet verwijderd mogen worden, om daarna een andere versie installeren.</li>
</ul>
<p>Dit artikel laat zien hoe je het wel voor elkaar krijgt.<br />
<!--more-->Eerst moet we bekijken of er wel een lagere versie van een pakket aanwezig is om te downgraden. Doe dit als volgt:</p>
<p>Ga naar Toepassingen --&#62; Hulpmiddelen --&#62; Terminalvenster (in KDE: K-Menu -–&#62; Systeem -–&#62; Konsole) en voer het volgende commando uit: <code>apt-cache showpkg &#60;pakketnaam&#62;</code><br />
We nemen als voorbeeld even het samba pakket. Het uit te voeren commando is dus: <code>apt-cache showpkg samba</code>. Dit commando geeft dan de volgende uitvoer:</p>
<blockquote><p>Package: samba<br />
Versions:<br />
3.0.28a-1ubuntu4.5 (/var/lib/apt/lists/nl.archive.ubuntu.com_ubuntu_dists_hardy-proposed_main_binary-i386_Packages) (/var/lib/dpkg/status)<br />
Description Language:<br />
File: /var/lib/apt/lists/nl.archive.ubuntu.com_ubuntu_dists_hardy-proposed_main_binary-i386_Packages<br />
MD5: 3ba3ba983bd5f035f874bc87c3b3f288</p>
<p>3.0.28a-1ubuntu4.4 (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_hardy-security_main_binary-i386_Packages) (/var/lib/apt/lists/nl.archive.ubuntu.com_ubuntu_dists_hardy-updates_main_binary-i386_Packages)<br />
Description Language:<br />
File: /var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_hardy-security_main_binary-i386_Packages<br />
MD5: 3ba3ba983bd5f035f874bc87c3b3f288</p>
<p>3.0.28a-1ubuntu4 (/var/lib/apt/lists/nl.archive.ubuntu.com_ubuntu_dists_hardy_main_binary-i386_Packages)<br />
Description Language:<br />
File: /var/lib/apt/lists/nl.archive.ubuntu.com_ubuntu_dists_hardy_main_binary-i386_Packages<br />
MD5: 3ba3ba983bd5f035f874bc87c3b3f288</p>
<p>Reverse Depends:<br />
winbind,samba 2.2.3-2<br />
swat,samba 3.0.28a-1ubuntu4.5<br />
smbclient,samba 2.999+3.0.alpha21-4<br />
samba-dbg,samba 3.0.28a-1ubuntu4.5<br />
samba-common,samba 3.0.20b-1<br />
libpam-smbpass,samba<br />
system-config-samba,samba<br />
winbind,samba 2.2.3-2<br />
swat,samba 3.0.28a-1ubuntu4.4<br />
smbclient,samba 2.999+3.0.alpha21-4<br />
samba-dbg,samba 3.0.28a-1ubuntu4.4<br />
samba-common,samba 3.0.20b-1<br />
libpam-smbpass,samba<br />
mythbuntu-live,samba<br />
system-config-samba,samba<br />
qtsmbstatus-server,samba<br />
qemu,samba<br />
lprfax,samba<br />
linpopup,samba<br />
gsambad,samba<br />
education-main-server,samba<br />
ebox-samba,samba<br />
dpsyco-samba,samba<br />
debian-edu-config,samba 3.0.0<br />
winbind,samba 2.2.3-2<br />
swat,samba 3.0.28a-1ubuntu4<br />
smbclient,samba 2.999+3.0.alpha21-4<br />
samba-dbg,samba 3.0.28a-1ubuntu4<br />
samba-common,samba 3.0.20b-1<br />
nautilus-share,samba 3.0.23<br />
libpam-smbpass,samba<br />
Dependencies:<br />
3.0.28a-1ubuntu4.5 - adduser (0 (null)) debconf (18 0.5) debconf-2.0 (0 (null)) libacl1 (2 2.2.11-1) libattr1 (2 2.4.4-1) libc6 (2 2.4) libcomerr2 (2 1.33-3) libcupsys2 (2 1.3.4) libgnutls13 (2 2.0.4-0) libkrb53 (2 1.6.dfsg.2) libldap-2.4-2 (2 2.4.7) libpam-modules (0 (null)) libpam-runtime (2 0.76-13.1) libpam0g (2 0.99.7.1) libpopt0 (2 1.10) logrotate (0 (null)) lsb-base (2 3.0-6) procps (0 (null)) samba-common (5 3.0.28a-1ubuntu4.5) update-inetd (0 (null)) zlib1g (2 1:1.2.3.3.dfsg-1) openbsd-inetd (16 (null)) inet-superserver (0 (null)) smbldap-tools (0 (null)) samba-common (1 2.0.5a-2)<br />
3.0.28a-1ubuntu4.4 - adduser (0 (null)) debconf (18 0.5) debconf-2.0 (0 (null)) libacl1 (2 2.2.11-1) libattr1 (2 2.4.4-1) libc6 (2 2.4) libcomerr2 (2 1.33-3) libcupsys2 (2 1.3.4) libgnutls13 (2 2.0.4-0) libkrb53 (2 1.6.dfsg.2) libldap-2.4-2 (2 2.4.7) libpam-modules (0 (null)) libpam-runtime (2 0.76-13.1) libpam0g (2 0.99.7.1) libpopt0 (2 1.10) logrotate (0 (null)) lsb-base (2 3.0-6) procps (0 (null)) samba-common (5 3.0.28a-1ubuntu4.4) update-inetd (0 (null)) zlib1g (2 1:1.2.3.3.dfsg-1) openbsd-inetd (16 (null)) inet-superserver (0 (null)) smbldap-tools (0 (null)) samba-common (1 2.0.5a-2)<br />
3.0.28a-1ubuntu4 - adduser (0 (null)) debconf (18 0.5) debconf-2.0 (0 (null)) libacl1 (2 2.2.11-1) libattr1 (2 2.4.4-1) libc6 (2 2.7-1) libcomerr2 (2 1.33-3) libcupsys2 (2 1.3.4) libgnutls13 (2 2.0.4-0) libkrb53 (2 1.6.dfsg.2) libldap-2.4-2 (2 2.4.7) libpam-modules (0 (null)) libpam-runtime (2 0.76-13.1) libpam0g (2 0.99.7.1) libpopt0 (2 1.10) logrotate (0 (null)) lsb-base (2 3.0-6) procps (0 (null)) samba-common (5 3.0.28a-1ubuntu4) update-inetd (0 (null)) zlib1g (2 1:1.2.3.3.dfsg-1) openbsd-inetd (16 (null)) inet-superserver (0 (null)) smbldap-tools (0 (null)) samba-common (1 2.0.5a-2)<br />
Provides:<br />
3.0.28a-1ubuntu4.5 -<br />
3.0.28a-1ubuntu4.4 -<br />
3.0.28a-1ubuntu4 -<br />
Reverse Provides:</p></blockquote>
<p><span style="color:#800000;">Versions</span> laat een lijst zien van de beschikbare versies in de cache, waar deze cache zich bevindt (folder) en de MD5-sum.<br />
<span style="color:#800000;">Dependencies</span> geeft per samba versie aan waar het pakket samba afhankelijk van is.<span style="color:#800000;"><br />
Reverse depends</span> geeft aan welke andere pakketten afhankelijk zijn van samba, maar hoeven niet geïnstalleerd te zijn.<br />
<span style="color:#800000;">Provides</span> geeft aan welke versies van samba in de cache aanwezig zijn en dus geïnstalleerd kunnen worden.</p>
<p>Stel je voor we willen de geïnstalleerde versie 4.5 downgraden naar versie 4.4. We moeten dan het commando 'aptitude install' uitvoeren met de versie van het te downgraden pakket. Dit doen we door achter de naam van het pakket een gelijkteken (=) met de versienaam te plaatsen. De versienaam vind je onder 'Provides:' in de uitkomst van het apt-cache commando zoals hierboven weergegeven. Het commando wat we dus in het terminalvenster gaan uitvoeren is <code>sudo aptitude install samba=3.0.28a-1ubuntu4.4</code> . <span style="color:#800000;">Zorg wel dat je de vragen die gesteld worden goed leest, anders kan je wel eens iets fout doen!</span> Dit geeft <span style="text-decoration:underline;">ongeveer</span> het volgende terug:</p>
<blockquote><p>Reading package lists... Done<br />
Building dependency tree... Done<br />
Reading extended state information<br />
Initializing package states... Done<br />
Building tag database... Done<br />
The following packages will be DOWNGRADED:<br />
samba<br />
0 packages upgraded, 0 newly installed, 1 downgraded, 0 to remove and 0 not upgraded.<br />
Need to get 223kB of archives. After unpacking 0B will be used.</p></blockquote>
<p>Let op het woord <span style="color:#800000;">DOWNGRADED</span>.<br />
Het voorgaande werkt alleen als de geïnstalleerde pakketten in de cache bewaard worden. De optie 'Opgehaalde pakketten verwijderen na installatie' in Systeem --&#62; Beheer --&#62; 'Synaptic pakketbeheer' --&#62; Instellingen --&#62; Voorkeuren --&#62; Bestanden tabblad mag niet aangevinkt zijn!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Difference between apt-get upgrade and apt-get dist-upgrade]]></title>
<link>http://davitenio.wordpress.com/?p=33</link>
<pubDate>Sun, 24 Aug 2008 11:59:55 +0000</pubDate>
<dc:creator>davitenio</dc:creator>
<guid>http://davitenio.pt-br.wordpress.com/2008/08/24/difference-between-apt-get-upgrade-and-apt-get-dist-upgrade/</guid>
<description><![CDATA[Imagine you have installed packages A-1.deb and B-1.deb
A-1.deb depends on packages Adep1-1.deb and ]]></description>
<content:encoded><![CDATA[<p>Imagine you have installed packages A-1.deb and B-1.deb<br />
A-1.deb depends on packages Adep1-1.deb and Adep2-1.deb while B-1.deb depends on package Bdep1-1.deb:</p>
<p>A-1.deb<br />
 &#124;<br />
 `----- Adep1-1.deb<br />
 `----- Adep2-1.deb</p>
<p>B-1.deb<br />
 &#124;<br />
 `------ Bdep1-1.deb</p>
<p>Now, there is a new package available for program A, namely A-2.deb. A-2.deb still depends on Adep1-1.deb but now it also depends on a new version of Adep2, namely Adep2-2.deb:</p>
<p>A-2.deb<br />
 &#124;<br />
 `----- Adep1-1.deb<br />
 `----- Adep2-2.deb</p>
<p>There is also a new package for program B, namely B-2.deb, and there is also a new version of B-2's dependency, namely Bdep1-2.deb. But contrary to the already installed version of B, B-1.deb, B-2.deb also depends on a new package: Bdep-new-1.deb</p>
<p>B-2.deb<br />
 &#124;<br />
 `------ Bdep1-2.deb<br />
 `------ Bdep-new-1.deb</p>
<p>If you now execute an apt-get upgrade you would see something like this:</p>
<pre>
     # apt-get upgrade
     Reading Package Lists... Done
     Building Dependency Tree... Done
     The following packages have been kept back
       B
     The following packages will be upgraded
       A Adep1 Adep2
     3 packages upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
     Need to get 5055B/5055kB of archives. After unpacking 1161kB will be used.
     Do you want to continue? [Y/n]
</pre>
<p>As you can see the package B is kept back. The reason is that in order to install the new version of B, B-2.deb, a new package must be installed, Bdep-new-1.deb, but apt-get upgrade doesn't install new packages, it only upgrades already installed packages.</p>
<p>On the other hand, apt-get dist-upgrade will also install new packages in order to resolve dependencies. So with a dist-upgrade you would get something like this:</p>
<pre>
     # apt-get dist-upgrade
     Reading Package Lists... Done
     Building Dependency Tree... Done
     Calculating Upgrade... Done
    The following NEW packages will be installed:
       Bdep-new
     The following packages will be upgraded
       A Adep1 Adep2 B Bdep1
     5 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
     Need to get 7055B/7055kB of archives. After unpacking 1161kB will be used.
     Do you want to continue? [Y/n]
</pre>
<p>In general, if you do an apt-get upgrade and a package is kept back:<br />
"This means that there are new versions of these packages which will not be installed for some reason. Possible reasons are broken dependencies (a package on which it depends doesn't have a version available for download) or [like in my example] new dependencies (the package has come to depend on new packages since the last version). " [<a href="http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html#s-upgrade">APT HOWTO<br />
Chapter 3 - Managing packages, section 3.4 Upgrading packages</a>]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Como evitar que algunos paquetes se actualicen]]></title>
<link>http://gonetil.wordpress.com/?p=166</link>
<pubDate>Sat, 16 Aug 2008 19:44:22 +0000</pubDate>
<dc:creator>gonetil</dc:creator>
<guid>http://gonetil.pt-br.wordpress.com/2008/08/16/como-evitar-que-algunos-paquetes-se-actualicen/</guid>
<description><![CDATA[Tenemos instalado Debian, Ubuntu o alguna distro que use apt, y queremos actualizar todos los paquet]]></description>
<content:encoded><![CDATA[<p>Tenemos instalado Debian, Ubuntu o alguna distro que use apt, y queremos actualizar todos los paquetes menos uno. Por ejemplo, tenemos instalado el apache2 y no queremos que se actualice a nuevas versiones. Nunca!</p>
<p><!--more--></p>
<p>Lo que tenemos que hacer es poner el paquete en hold, y listo. En nuestro ejemplo, esto se hace con el siguiente comando:</p>
<p><strong>echo “apache2 hold” &#124; dpkg <code>--set-selections</code></strong></p>
<p>Si queremos quitar el hold sobre el paquete, ejecutamos el siguiente comando:</p>
<p><strong></strong></p>
<p><strong>echo “apache2 install” &#124; dpkg <code>--set-selections</code></strong></p>
<p>Por último, para conocer todos los paquetes seleccionados, usamos el comando:</p>
<p><strong>dpkg <code>--set-selections</code></strong></p>
<p>Si estamos, acostumbrados a aptitud, la tenemos aún más facil. Les muestro como:</p>
<p><strong>aptitude hold/unhold apache2</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Website Optimization Know-How]]></title>
<link>http://kenpartain.wordpress.com/?p=89</link>
<pubDate>Wed, 13 Aug 2008 16:40:14 +0000</pubDate>
<dc:creator>Ken Partain</dc:creator>
<guid>http://gettopsearchresults.com/2008/08/13/website-optimization-know-how/</guid>
<description><![CDATA[Do you know how to optimize your website for top search engine ranking?
Knowledge and Aptitude are t]]></description>
<content:encoded><![CDATA[<p><strong>Do you know how to optimize your website for top search engine ranking?</strong></p>
<p>Knowledge and Aptitude are two completely different things!</p>
<p>There are thousands of sites and blogs that can teach you the technical aspects of website optimization, but do you really have an aptitude for it?</p>
<p>I like the definition of aptitude from <a title="Wikipedia definition of aptitude" href="http://en.wikipedia.org/wiki/Aptitude" target="_blank">wikipedia</a>:</p>
<blockquote><p>An aptitude is an innate, acquired, learned or developed component of a competency (the others being knowledge, understanding and attitude) to do a certain kind of work at a certain level.</p></blockquote>
<p>I talk with people every day that have a cursury knowledge of what SEO is and how to optimize their site.  What they don't have is the aptitude.  These are smart people (doctors, accountants, small business owners) but their aptitude lies within their specialty, what they are really good at and what they make their living from.</p>
<p>I realize that many budgets are tight these days, but if you want outstanding results from your web site optimization efforts, hire someone with an aptitude for it.  Hire an SEO expert, whether it is us or somebody else you trust.  You'll be glad you did!</p>
<p>One word of caution - don't get locked into any long-term contracts for SEO.  A reputable company will be able to get good results for you in 60-90 days and many times even sooner than that.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[At last .. my aptitude issues FIXED]]></title>
<link>http://superpinjal.wordpress.com/?p=93</link>
<pubDate>Sun, 10 Aug 2008 19:19:48 +0000</pubDate>
<dc:creator>superpinjal</dc:creator>
<guid>http://superpinjal.com/2008/08/11/at-last-my-aptitude-issues-fixed/</guid>
<description><![CDATA[After i browsed everywhere .. now i&#8217;ve fixed my aptitude packages ..
Actually the problem pers]]></description>
<content:encoded><![CDATA[<p>After i browsed everywhere .. now i've fixed my aptitude packages ..</p>
<p>Actually the problem persist after i remove my squid installation from my laptop (some bugz on aptitude i think .. already raised a call to launchpad) and then .. whenever i installed everything by aptitude / apt-get command, my HARDY always complaint like below :</p>
<blockquote><p>...</p>
<p>update-rc.d: /etc/init.d/squid: file does not exist<br />
invoke-rc.d: unknown initscript, /etc/init.d/squid not found.<br />
dpkg: error processing squid (--configure):<br />
subprocess post-installation script returned error exit status 100<br />
Errors were encountered while processing:<br />
squid<br />
E: Sub-process /usr/bin/dpkg returned an error code (1)<br />
...</p>
<p>...</p></blockquote>
<p>but i still can't fix it by implementing all suggestion that i found from all website which related with this.</p>
<p>So .. i tried by myself, since i found this line "/etc/init.d/squid: file does not exist" so i just try the dummy way by</p>
<p>1. touching an empty file as root "sudo touch /etc/init.d/squid", then after that ..</p>
<p>2. removing squid installation by "sudo aptitude remove squid" and voilaaaaaaaaaaaaaaaaa .. everything fine now ..</p>
<p>Buhuhuhhuuh .. hope everyone that having similar problem can fix it by reading this scratch pad.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Automatically update Ubuntu Hardy Heron server with a ruby script]]></title>
<link>http://lani78.wordpress.com/?p=10</link>
<pubDate>Wed, 06 Aug 2008 20:58:18 +0000</pubDate>
<dc:creator>lani78</dc:creator>
<guid>http://lani78.pt-br.wordpress.com/2008/08/06/automatically-update-ubuntu-hardy-heron-server-with-a-ruby-script/</guid>
<description><![CDATA[Needs
I wanted my newly installed Ubuntu server to check for updates every day and then automaticall]]></description>
<content:encoded><![CDATA[<p><strong>Needs</strong></p>
<p>I wanted my newly installed <a href="http://www.ubuntu.com/products/WhatIsUbuntu/serveredition" target="_blank">Ubuntu server</a> to check for updates every day and then automatically update itself if there were any new updates found. I search the web trying to find an existing solution that would work out of the box for me. But I am of course very picky of what I want, so I could not found anything that met all my needs:</p>
<ul>
<li>Automatically check for updates every day.</li>
<li>Automatically download and install any updates that were found.</li>
<li>Report both success and failures to my e-mail and show me in the subject if the update failed or succeeded.</li>
<li>Use an external smtp-server with authentication.</li>
</ul>
<p>As I am also trying to learn the <a href="http://www.ruby-lang.org/en/" target="_blank">Ruby programming language,</a> besides from Linux, I decided to use it to create my update script.</p>
<p><strong>Installing Ruby</strong></p>
<p>Ruby is not installed by default on Hardy Heron but can easily be installed from the Ubuntu repositories:</p>
<p><code>sudo apt-get install ruby</code></p>
<p><strong>The Script</strong></p>
<pre><font face="courier new">
#!/usr/bin/ruby
##### Information ##############################################
# DESC:	This is an update script for Ubuntu Hardy Heron 8.04.
#	It will fetch any availible updates with aptitude and
#	install them. An e-mail with the result is then sent
#	using the configured smtp-server.
# AUTH:	Niklas "Lani" Lagergren
# REV.:	1.0 2008-08-06
#	* Initial release.
#
# COPY: No copyright claimed. No rights reserved. No warranty
#       given.
################################################################</code>

##### Configurable mail server options: ########################
# These parameters needs to be changed to match your enviorment
################################################################
@mail_server = 'your.mail-server.com'
@mail_port   = 25
@mail_domain = 'your.mail-domain.com'
@mail_user   = 'username'
@mail_pass   = 'password'
@mail_from   = 'from@your.mail-domain.com'
@mail_to     = 'to@somewhere.nil'

require 'net/smtp'

# Format date according to rfc 2822, example:
# Fri, 11 Jul 2008 09:13:20 +0200
def time_to_rfc2822(time)
  time.strftime('%a, %d %b %Y %H:%M:%S ') +
    if time.utc?
      '-0000'
    else
      off = time.utc_offset
    sign = off &#60; 0 ? '-' : '+'
    format('%s%02d%02d', sign, *(off.abs / 60).divmod(60))
  end
end

# Send e-mail according to the configuration in the instance variables.
def send_mail(subject, body)
  msg = "From: Ubuntu Server &#60;#{@mail_from}&#62;\r\n" +
    "To: Server Administrator &#60;#{@mail_to}&#62;\r\n" +
    "Subject: #{subject}\r\n" +
    "Date: #{time_to_rfc2822(Time.new)}\r\n" +
    "Message-Id: &#60;#{Time.new}@#{@mail_domain}&#62;\r\n" +
    "\r\n#{body}\r\n"

    Net::SMTP.start(@mail_server, @mail_port, @mail_domain, @mail_user,
      @mail_pass) do &#124;smtp&#124;
      smtp.send_message msg, @mail_from, @mail_to
    end
end

# Run aptitude commands to update the system and capture it's output.
puts 'Running aptitude...'
body = `aptitude update 2&#62;&#38;1`
body &#60;&#60; `aptitude dist-upgrade -y 2&#62;&#38;1` if $? == 0
body &#60;&#60; `aptitude clean 2&#62;&#38;1` if $? == 0

subject = "#{@mail_domain} update #{$? == 0 ? 'succeded' : 'FAILED'} #{Time.new}"

puts 'Sending mail...'
send_mail subject, body
puts 'Mail sent.'
</font>
</pre>
<p><strong>Set the script to run every day</strong><br />
Obviously you need to change the mail settings in the script as the comment suggest. Then save the script, I named it <em>"autoupdate"</em>. To run the script on a daily basis copy it to <em>"/etc/cron.daily"</em>. And don't forget to set execute permissions on the script (and as I have the password stored in the file I also removed all <a href="http://www.zzee.com/solutions/linux-permissions.shtml" target="_blank">permissions</a> from <em>"others"</em>:<br />
<code><br />
sudo chmod 770 autoupdate<br />
</code></p>
<p><strong>Test the script</strong><br />
The easiest way to test the script is of course to just execute it:<br />
<code>sudo ./autoupdate</code></p>
<p>If you really want to make sure that it will execute when executed in the same way as when execute by the cron job you could run:</p>
<p><code>sudo run-parts /etc/cron.daily</code></p>
<p>Note that this will execute all scripts in the cron.daily folder. Another side note is that it probably won't  run with the same permissions as when executed from the cron job, and it will probably take a long time to execute.</p>
<p>Now check your mailbox or the log files for the result:</p>
<p><code>cat /var/log/aptitude</code></p>
<p>Hopefully someone out there can benefit from this script as it is, or if you're like me; tweak it to suite your own needs ;)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Aktualizacja (dist-upgrade)]]></title>
<link>http://wostal.wordpress.com/?p=207</link>
<pubDate>Wed, 06 Aug 2008 10:31:33 +0000</pubDate>
<dc:creator>wiking</dc:creator>
<guid>http://wostal.pt-br.wordpress.com/2008/08/06/aktualizacja-dist-upgrade/</guid>
<description><![CDATA[Z racji tego, że seria postów Perfekcyjny serwer &#8230; dotyczy stabilengo wydania Debiana (na dz]]></description>
<content:encoded><![CDATA[<p>Z racji tego, że seria postów Perfekcyjny serwer ... dotyczy stabilengo wydania Debiana (na dzień dzisiejszy jest to Etch), a będzie to długa seria (mam taką nadzieję) nastąpiła drobna zmiana planów.</p>
<p>Deweloperzy Debiana sprawili niespodziankę i zamrozili wydanie testowe. Oznacza to,  wersje pakietów w Lennym nie powinny się zmienić, więc będzie mi łatwiej dostosować to co mam zrobione do tej pory, niż walczyć później ze wszystkim.</p>
<p>Czekam z niecierpliwością na koniec aktualizacji i zabieram sie do testowania :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How To Install Programs In Ubuntu Hardy Heron]]></title>
<link>http://vitalbodies.wordpress.com/?p=373</link>
<pubDate>Sat, 19 Jul 2008 05:11:00 +0000</pubDate>
<dc:creator>vitalbodies</dc:creator>
<guid>http://vitalbodies.pt-br.wordpress.com/2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/</guid>
<description><![CDATA[How To Install Programs In Ubuntu Hardy Heron
Ubuntu is very different than Windows as far as instal]]></description>
<content:encoded><![CDATA[<p><strong>How To Install Programs In Ubuntu Hardy Heron</strong></p>
<p>Ubuntu is very different than Windows as far as installing programs.</p>
<p>Most of the time, installing programs in Ubuntu is very very easy.</p>
<p>Applications &#62; Add/Remove... &#62;</p>
<p><a href="http://vitalbodies.wordpress.com/files/2008/07/add_java.png"><img class="aligncenter size-full wp-image-208" src="http://vitalbodies.wordpress.com/files/2008/07/add_java.png" alt="" width="470" height="285" /></a></p>
<p>Show:</p>
<p>Supported Applications, All Open Source Applications, Third Party Applications or All Available Applications.</p>
<p>Then add a check to the check box of the application you want to install, click Apply Changes and then Apply and type you password and click Close.</p>
<p>Adding programs does not get much easier than this.</p>
<p>To remove a program un-check the check box.</p>
<p>NOTE: VitalBodies suggests not choosing All Available Applications and third party applications until you have more experience managing and maintaining Ubuntu. In fact, if you are really new, you might want to use only Supported Applications until you are really up and running. See the Final Note (below) for more info.</p>
<p>What if the program you want to install is not on the list?</p>
<p>In short, here are the main ways to add programs:</p>
<p><strong>ADDING PROGRAMS TO UBUNTU:</strong></p>
<ul>
<li><strong>Windows Programs: </strong>
<ul>
<li>
<p class="storytitle"><strong><a title="How To Install A Windows Program In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/13/how-to-install-a-windows-program-in-ubuntu-hardy-heron/">How To Install A Windows Program In Ubuntu Hardy Heron</a></strong></p>
</li>
</ul>
</li>
<li><strong>DEB Packages (Debian or Ubuntu):</strong>
<ul>
<li>
<p class="storytitle"><strong><a title="apt-get in Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/13/apt-get-in-ubuntu-hardy-heron/">apt-get in Ubuntu Hardy Heron</a></strong></p>
</li>
<li>
<p class="storytitle"><strong><a title="aptitude Help on Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/16/aptitude-help-on-ubuntu-hardy-heron/">aptitude Help on Ubuntu Hardy Heron</a></strong></p>
</li>
<li>
<p class="storytitle"><strong><a title="dpkg Help On Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/16/dpkg-help-on-ubuntu-hardy-heron/">dpkg Help On Ubuntu Hardy Heron</a></strong></p>
</li>
<li><strong>Synaptic Package Manager: </strong>
<ul>
<li>System &#62; Administration &#62; Synaptic Package Manager.</li>
</ul>
</li>
</ul>
</li>
<li><strong>Finding DEB Packages: </strong>
<ul>
<li><a href="http://www.getdeb.net/">http://www.getdeb.net/</a></li>
<li><a href="http://linuxappfinder.com/all">http://linuxappfinder.com/all</a></li>
</ul>
</li>
<li><strong>Advanced Ubuntu:</strong> (your on your own here...)<strong><br />
</strong></p>
<ul>
<li><strong>Ubuntu BackPorts: </strong>https://help.ubuntu.com/community/UbuntuBackports</li>
<li><strong>Compiling From Source: </strong>See Program For Details.
<ul>
<li>Usually you need to Build Essential to compile from source:
<ul>
<li>
<pre>sudo apt-get install build-essential</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p><strong>FINAL NOTE: </strong></p>
<p>In Ubuntu click the <strong>?</strong> (HELP) icon and then click <strong>Adding, Removing and Updating Applications</strong> to learn more...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[dpkg Help On Ubuntu Hardy Heron]]></title>
<link>http://vitalbodies.wordpress.com/?p=244</link>
<pubDate>Thu, 17 Jul 2008 01:54:33 +0000</pubDate>
<dc:creator>vitalbodies</dc:creator>
<guid>http://vitalbodies.pt-br.wordpress.com/2008/07/16/dpkg-help-on-ubuntu-hardy-heron/</guid>
<description><![CDATA[dpkg Help On Ubuntu Hardy Heron
This post is part of a series on How To Install Programs In Ubuntu H]]></description>
<content:encoded><![CDATA[<p><strong>dpkg Help On Ubuntu Hardy Heron</strong></p>
<p class="storytitle">This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron</a>.</p>
<p>Ubuntu is based upon Linux and Debian. Debian packages are files that can be software or components for the operating system packaged in such a way that they can installed or removed from the operating system. See the post on <a href="http://vitalbodies.wordpress.com/2008/07/16/aptitude-help-on-ubuntu-hardy-heron/">aptitude</a> also.</p>
<p><a href="http://vitalbodies.wordpress.com/files/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.wordpress.com/files/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<blockquote><p><strong>dpkg</strong> is a tool to install, build, remove and manage Debian packages.</p>
<p>The primary and more user-friendly front-end for dpkg is dselect. dpkg itself is controlled entirely via command line parameters, which consist of exactly one action and zero or more options.</p>
<p>The action-parameter tells dpkg what to do and options control the behavior of the action in some way.</p>
<p>NOTE: Use `dselect' or `<a href="http://vitalbodies.wordpress.com/2008/07/16/aptitude-help-on-ubuntu-hardy-heron/">aptitude</a>' for user-friendly package management.</p></blockquote>
<p>Normally one would use Applications &#62; Add/Remove... to install and remove programs. Sometimes though one has to go beyond that.</p>
<p>Like many of the commands you use in the terminal you can find HELP by typing the command and then –help.</p>
<p>Here is an example:</p>
<p>Applications &#62; Accessories &#62; Terminal</p>
<p>We typed</p>
<pre>dpkg --help</pre>
<p>Then pressed the Enter key on the keyboard<br />
Here is what we saw:</p>
<p>dpkg --help</p>
<pre>Usage: dpkg [&#60;option&#62; ...] &#60;command&#62;

Commands:
  -i&#124;--install       &#60;.deb file name&#62; ... &#124; -R&#124;--recursive &#60;directory&#62; ...
  --unpack           &#60;.deb file name&#62; ... &#124; -R&#124;--recursive &#60;directory&#62; ...
  -A&#124;--record-avail  &#60;.deb file name&#62; ... &#124; -R&#124;--recursive &#60;directory&#62; ...
  --configure&#124;--triggers-only &#60;package&#62; ... &#124; -a&#124;--pending
  -r&#124;--remove        &#60;package&#62; ... &#124; -a&#124;--pending
  -P&#124;--purge         &#60;package&#62; ... &#124; -a&#124;--pending
  --get-selections [&#60;pattern&#62; ...] Get list of selections to stdout.
  --set-selections                 Set package selections from stdin.
  --clear-selections               Deselect every non-essential package.
  --update-avail &#60;Packages-file&#62;   Replace available packages info.
  --merge-avail &#60;Packages-file&#62;    Merge with info from file.
  --clear-avail                    Erase existing available info.
  --forget-old-unavail             Forget uninstalled unavailable pkgs.
  -s&#124;--status &#60;package&#62; ...        Display package status details.
  -p&#124;--print-avail &#60;package&#62; ...   Display available version details.
  -L&#124;--listfiles &#60;package&#62; ...     List files `owned' by package(s).
  -l&#124;--list [&#60;pattern&#62; ...]        List packages concisely.
  -S&#124;--search &#60;pattern&#62; ...        Find package(s) owning file(s).
  -C&#124;--audit                       Check for broken package(s).
  --print-architecture             Print dpkg architecture.
  --compare-versions &#60;a&#62; &#60;op&#62; &#60;b&#62;  Compare version numbers - see below.
  --force-help                     Show help on forcing.
  -Dh&#124;--debug=help                 Show help on debugging.

  -h&#124;--help                        Show this help message.
  --version                        Show the version.
  --license&#124;--licence              Show the copyright licensing terms.

Use dpkg -b&#124;--build&#124;-c&#124;--contents&#124;-e&#124;--control&#124;-I&#124;--info&#124;-f&#124;--field&#124;
 -x&#124;--extract&#124;-X&#124;--vextract&#124;--fsys-tarfile  on archives (type dpkg-deb --help).

For internal use: dpkg --assert-support-predepends &#124; --predep-package &#124;
  --assert-working-epoch &#124; --assert-long-filenames &#124; --assert-multi-conrep.

Options:
  --admindir=&#60;directory&#62;     Use &#60;directory&#62; instead of /var/lib/dpkg.
  --root=&#60;directory&#62;         Install on a different root directory.
  --instdir=&#60;directory&#62;      Change installation dir without changing admin dir.
  -O&#124;--selected-only         Skip packages not selected for install/upgrade.
  -E&#124;--skip-same-version     Skip packages whose same version is installed.
  -G&#124;--refuse-downgrade      Skip packages with earlier version than installed.
  -B&#124;--auto-deconfigure      Install even if it would break some other package.
  [--no-]triggers            Skip or force consequential trigger processing.
  --no-debsig                Do not try to verify package signatures.
  --no-act&#124;--dry-run&#124;--simulate
                             Just say what we would do - don't do it.
  -D&#124;--debug=&#60;octal&#62;         Enable debugging (see -Dhelp or --debug=help).
  --status-fd &#60;n&#62;            Send status change updates to file descriptor &#60;n&#62;.
  --log=&#60;filename&#62;           Log status changes and actions to &#60;filename&#62;.
  --ignore-depends=&#60;package&#62;,...
                             Ignore dependencies involving &#60;package&#62;.
  --force-...                Override problems (see --force-help).
  --no-force-...&#124;--refuse-...
                             Stop when problems encountered.
  --abort-after &#60;n&#62;          Abort after encountering &#60;n&#62; errors.

Comparison operators for --compare-versions are:
  lt le eq ne ge gt       (treat empty version as earlier than any version);
  lt-nl le-nl ge-nl gt-nl (treat empty version as later than any version);
  &#60; &#60;&#60; &#60;= = &#62;= &#62;&#62; &#62;       (only for compatibility with control file syntax).

Use `dselect' or `<a href="http://vitalbodies.wordpress.com/2008/07/16/aptitude-help-on-ubuntu-hardy-heron/">aptitude</a>' for user-friendly package management.</pre>
<p>This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[aptitude Help on Ubuntu Hardy Heron]]></title>
<link>http://vitalbodies.wordpress.com/?p=245</link>
<pubDate>Wed, 16 Jul 2008 17:48:22 +0000</pubDate>
<dc:creator>vitalbodies</dc:creator>
<guid>http://vitalbodies.pt-br.wordpress.com/2008/07/16/aptitude-help-on-ubuntu-hardy-heron/</guid>
<description><![CDATA[aptitude Help on Ubuntu Hardy Heron
This post is part of a series on How To Install Programs In Ubun]]></description>
<content:encoded><![CDATA[<p><strong>aptitude Help on Ubuntu Hardy Heron</strong></p>
<p>This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron</a>.</p>
<p>If you are new to Ubuntu you might see posts on the forums about aptitude.</p>
<p>But what is aptitude and how can one find out more about it?</p>
<blockquote>
<p style="text-align:left;"><strong>aptitude - high-level interface to the package manager</strong></p>
<p style="text-align:left;"><strong>aptitude</strong> is a text-based interface to the Debian GNU/Linux package system.</p>
<p style="text-align:left;">It allows the user to view the list of packages and to perform package management tasks such as installing, upgrading, and removing packages. Actions may be performed from a visual interface or from the command-line.</p>
</blockquote>
<p><a href="http://vitalbodies.wordpress.com/files/2008/07/image_gif_icon_chocolate.gif"><img class="aligncenter size-full wp-image-218" src="http://vitalbodies.wordpress.com/files/2008/07/image_gif_icon_chocolate.gif" alt="" width="15" height="13" /></a></p>
<p>Normally one would use Applications &#62; Add/Remove... to install and remove programs. Sometimes though one has to go beyond that.</p>
<p>Like many of the commands you use in the terminal you can find HELP by typing the command and then --help.</p>
<p>Here is an example:</p>
<p>Applications &#62; Accessories &#62; Terminal</p>
<p>We typed</p>
<pre>aptitude --help</pre>
<p>Then pressed the Enter key on the keyboard<br />
Here is what we saw:</p>
<pre>aptitude --help
aptitude 0.4.9
Usage: aptitude [-S fname] [-u&#124;-i]
       aptitude [options] &#60;action&#62; ...
  Actions (if none is specified, aptitude will enter interactive mode):

 install      - Install/upgrade packages
 remove       - Remove packages
 purge        - Remove packages and their configuration files
 hold         - Place packages on hold
 unhold       - Cancel a hold command for a package
 markauto     - Mark packages as having been automatically installed
 unmarkauto   - Mark packages as having been manually installed
 forbid-version - Forbid aptitude from upgrading to a specific package version.
 update       - Download lists of new/upgradable packages
 safe-upgrade - Perform a safe upgrade
 full-upgrade - Perform an upgrade, possibly installing and removing packages
 forget-new   - Forget what packages are "new"
 search       - Search for a package by name and/or expression
 show         - Display detailed information about a package
 clean        - Erase downloaded package files
 autoclean    - Erase old downloaded package files
 changelog    - View a package's changelog
 download     - Download the .deb file for a package
 reinstall    - Download and (possibly) reinstall a currently installed package

  Options:
 -h             This help text
 -s             Simulate actions, but do not actually perform them.
 -d             Only download packages, do not install or remove anything.
 -P             Always prompt for confirmation or actions
 -y             Assume that the answer to simple yes/no questions is 'yes'
 -F format      Specify a format for displaying search results; see the manual
 -O order       Specify how search results should be sorted; see the manual
 -w width       Specify the display width for formatting search results
 -f             Aggressively try to fix broken packages.
 -V             Show which versions of packages are to be installed.
 -D             Show the dependencies of automatically changed packages.
 -Z             Show the change in installed size of each package.
 -v             Display extra information. (may be supplied multiple times)
 -t [release]   Set the release from which packages should be installed
 -q             In command-line mode, suppress the incremental progress indicators.
 -o key=val     Directly set the configuration option named 'key'
 --with(out)-recommends    Specify whether or not to treat recommends as
                strong dependencies
 -S fname       Read the aptitude extended status info from fname.
 -u             Download new package lists on startup.
 -i             Perform an install run on startup.</pre>
<p>This aptitude does not have Super Cow Powers.</p>
<p>This post is part of a series on <a title="How To Install Programs In Ubuntu Hardy Heron" rel="bookmark" href="../2008/07/18/how-to-install-programs-in-ubuntu-hardy-heron/">How To Install Programs In Ubuntu Hardy Heron</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[GowTo] Instalando VirtualBox]]></title>
<link>http://genlinux.wordpress.com/?p=184</link>
<pubDate>Thu, 10 Jul 2008 23:05:16 +0000</pubDate>
<dc:creator>Cross</dc:creator>
<guid>http://genlinux.pt-br.wordpress.com/2008/07/10/gowto-instalando-virtualbox/</guid>
<description><![CDATA[Aquí va este GowTo para instalar VirtualBox (VBox) en nuestros ordenadores. Lo primero que deberemo]]></description>
<content:encoded><![CDATA[<p>Aquí va este <strong>G</strong>owTo para instalar VirtualBox (VBox) en nuestros ordenadores. Lo primero que deberemos hacer es seleccionar cuál vamos a instalar, la <a href="http://www.virtualbox.org/wiki/Editions" target="_blank">versión <em>OSE</em></a> (<a href="http://www.gnu.org/philosophy/free-sw.es.html" target="_blank"><em>Open Source Edition</em></a>) o la <a href="http://www.virtualbox.org/wiki/Editions" target="_blank"><em>Closed-Source</em></a> (Código cerrado). En caso de que elijamos instalar la versión OSE (<a href="http://es.wikipedia.org/wiki/C%C3%B3digo_libre" target="_blank"><em>Open Source Edition</em></a>) tan solo deberíamos descargarla usando Aptitude o Synaptic, o también podemos descargarla desde la web oficial de <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>. En caso de que elijamos la edición <em>Closed-Source</em> bastaría con escribir;</p>
<p><code>sudo apt-get install virtualbox &#38;&#38; sudo adduser $USER vboxusers</code></p>
<p>Tendríamos instalado VirtualBox y nuestro usuario añadido a el grupo "vboxusers". Tan sólo tendríamos que re-logearnos para que los cambios tomen efecto.</p>
<p>En caso de que optes por la edición OSE (<em>Open Source Edition</em>) bastaría con escribir;</p>
<p><code>sudo apt-get install virtualbox-ose virtualbox-ose-modules &#38;&#38; adduser $USER vboxusers<br />
</code></p>
<p>Y ya estaría, podeis encontrar VirtualBox en <em>Aplicaciones -&#62; Herramientas del Sistema -&#62; Sun xVM VirtualBox</em>.</p>
<p>Espero que os haya servido de ayuda.</p>
<p><a href="http://genlinux.wordpress.com/gowto/" target="_self"><img class="alignnone size-full wp-image-51" src="http://genlinux.wordpress.com/files/2007/12/gowtotitle-copy.jpg" alt="" width="500" height="210" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Poderes de Super Vaca]]></title>
<link>http://pillateunlinux.wordpress.com/?p=379</link>
<pubDate>Mon, 07 Jul 2008 09:10:33 +0000</pubDate>
<dc:creator>pragmart</dc:creator>
<guid>http://pillateunlinux.pt-br.wordpress.com/2008/07/07/poderes-de-super-vaca/</guid>
<description><![CDATA[
&#8220;Este aptitude no tiene poderes de Super Vaca&#8221; y &#8220;este APT tiene poderes de Super]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://pillateunlinux.files.wordpress.com/2008/07/super-vaca.png"><img class="size-medium wp-image-380 aligncenter" src="http://pillateunlinux.wordpress.com/files/2008/07/super-vaca.png?w=286" alt="" width="160" height="150" /></a></p>
<p style="text-align:justify;"><strong>"Este aptitude no tiene poderes de Super Vaca"</strong> y <strong>"este APT tiene poderes de Super Vaca"</strong> son dos enigmáticas frases que un día, más tarde o más temprano, te puedes encontrar mientras gozas instalando con el Terminal al más puro estilo "geek".</p>
<p style="text-align:justify;">¿Qué será eso de la Super Vaca? Bueno, comprobarlo es sencillito y no deja de resultar divertido.</p>
<p style="text-align:justify;">Así averiguarás quien es la dichosa Super Vaca :)</p>
<h3 style="text-align:justify;">APT</h3>
<p style="text-align:justify;">Escribe en un Terminal (no hace falta que sea de "root"):</p>
<p style="text-align:justify;"><em>apt-get moo</em></p>
<h3 style="text-align:justify;">APTITUDE</h3>
<p style="text-align:justify;">(éste es más divertido) escribe (sucesivamente) en un Terminal:</p>
<p style="text-align:justify;"><em>aptitude moo</em></p>
<p style="text-align:justify;"><em>aptitude moo -v</em></p>
<p style="text-align:justify;"><em>aptitude moo -vv</em></p>
<p style="text-align:justify;"><em>aptitude moo -vvv</em></p>
<p style="text-align:justify;"><em>aptitude moo -vvvv</em></p>
<p style="text-align:justify;"><em>aptitude moo -vvvvv</em></p>
<p style="text-align:justify;"><em>aptitude moo -vvvvvv</em></p>
<p style="text-align:justify;">Está claro que los programadores son unos cachondos, ¿verdad? :D</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What if your kid was "discovered"?]]></title>
<link>http://parenting247.wordpress.com/2008/07/07/what-if-your-kid-was-discovered/</link>
<pubDate>Mon, 07 Jul 2008 09:09:53 +0000</pubDate>
<dc:creator>Aaron Ebata</dc:creator>
<guid>http://parenting247.pt-br.wordpress.com/2008/07/07/what-if-your-kid-was-discovered/</guid>
<description><![CDATA[My 14 year old daughter has been ‘discovered’ by a modeling agency and of course, wants to do it]]></description>
<content:encoded><![CDATA[<blockquote cite="http://modelmom.wordpress.com/"><p>My 14 year old daughter has been ‘discovered’ by a modeling agency and of course, wants to do it. The irony is that I am a child development professional, feminist and educator who teaches primarily parent and family education, but also about media representations of women, and has counseled women with eating disorders for many years (I have a graduate degree in nutrition). I have very mixed feelings about this whole thing…</p></blockquote>
<p class="citation"><cite><a href="http://modelmom.wordpress.com/">ModelMom</a></cite></p>
<p class="citation"><cite></cite></p>
<p>We all want to support and encourage our kids in their areas of interests - but what if they have a special "gift", talent, aptitude, or passion that "gets their motor running?  What if it requires “something extra” from parents?  What if we have mixed feelings or nagging doubts?</p>
]]></content:encoded>
</item>

</channel>
</rss>
