<?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>feisty-fawn &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/feisty-fawn/</link>
	<description>Feed of posts on WordPress.com tagged "feisty-fawn"</description>
	<pubDate>Sat, 26 Jul 2008 01:02:50 +0000</pubDate>

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

<item>
<title><![CDATA[Install SVN MPlayer + GMPlayer + ALL Codecs - From Ubuntuforums.org]]></title>
<link>http://mightykaobear.wordpress.com/?p=62</link>
<pubDate>Mon, 14 Jul 2008 14:23:46 +0000</pubDate>
<dc:creator>James Nealon</dc:creator>
<guid>http://mightykaobear.wordpress.com/?p=62</guid>
<description><![CDATA[======================
Introduction
=====================
This guide intends to show how to successf]]></description>
<content:encoded><![CDATA[<p>======================<br />
<strong>Introduction</strong><br />
=====================</p>
<p>This guide intends to show how to successfully compile a <em>fully featured</em> svn mplayer with <em>all</em> the codecs and with the GUI player gmplayer. It is designed to work with the Ubuntu distros Feisty Faun, Gutsy Gibbon and Hardy Heron. Mplayer is a bit of a difficult one to compile so first make yourself a cup of tea and then get your keyboard ready!!</p>
<p><strong>Note:</strong> This tutorial  is intended for <em>advanced users</em> and more specifically for those who are keen to use the command line interface. It installs a <em>pre-release</em> version of mplayer that can at times be unstable and at times simply not compile. If this is really not what you are after perhaps you could try the very popular: <a href="http://ubuntuforums.org/showthread.php?t=661833" target="_blank">Complete Streaming, Multimedia &#38; Video How-to</a> where Nathan will look after you <img class="inlineimg" src="http://ubuntuforums.org/images/smilies/icon_smile.gif" border="0" alt="" /></p>
<p>========================<br />
<strong>Some Preparation</strong><br />
========================<br />
Still with me?  Good!! You have made a wise choice <img class="inlineimg" src="http://ubuntuforums.org/images/smilies/icon_smile.gif" border="0" alt="" /> First to download some files in preparation for the upcoming work. By default Ubuntu does not come with compiling tools or subversion software but it is an easy matter to download these:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install build-essential subversion</pre>
</div>
<p>With the compiling tools in place next we set up the codec pack:</p>
<p>======================<br />
<strong>Set up the Codecs</strong><br />
======================</p>
<p>The codecs are the heart and soul of mplayer and we will be downloading the 'full' pack, decompressing it and placing it in the appropriate location. You will note that throughout this walkthrough I will be using $HOME/Desktop as a base, feel free to adjust this to your own working habits:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:98px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ wget http://www.mplayerhq.hu/MPlayer/releases/codecs/all-20071007.tar.bz2
$ sudo mkdir -pv /usr/local/lib/codecs
$ tar xjvf all-20071007.tar.bz2
$ sudo cp -v $HOME/all-20071007/* /usr/local/lib/codecs</pre>
</div>
<p>I should mention at this time that it is this codec pack that has caused a bit of discussion concerning copyright, only use it if the laws inyour country allow it. But now to set up the skin for mplayer:</p>
<p>=======================<br />
<strong>Set up the Skin</strong><br />
=======================</p>
<p>For the gui Gmplayer to work we need to download and install a skin. For this walkthrough we will be using the 'standard' skin but there are many to choose from:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:98px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ mkdir -pv $HOME/.mplayer/skins/default
$ wget http://www.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2
$ tar xjvf Blue-1.7.tar.bz2
$ cp -Rv $HOME/Blue/* $HOME/.mplayer/skins/default</pre>
</div>
<p>When all is up and running have a look at the mplayer web site which holds a multitude of other skins as well as instructions for making your own. But now to place a font for the On Screen Display (OSD):</p>
<p>=============================<br />
<strong>Place a font for the OSD</strong><br />
=============================</p>
<p>mplayer will choke unless a font is sourced for the On Screen Display and subtitles. Traditionally this is in the form of a link:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install ttf-bitstream-vera
$ ln -sv /usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf ~/.mplayer/subfont.ttf</pre>
</div>
<p>Feel free to choose your own font but this will certainly do to start with. I suspect this font is part of a default Ubuntu installation but I include directions for its installation anyway, just to be sure! Now to download the required development files:</p>
<p>====================================<br />
<strong>Download the 'Development' Files</strong><br />
====================================</p>
<p>By default Ubuntu does not offer a particularly rich development environment so we need to download the required -dev files plus a few extra programs. I offer here 3 sets of downloads, one for Feisty Fawn, one for Gutsy Gibbon and one for Hardy Heron:</p>
<p><strong>Development Files for Feisty Fawn</strong></p>
<p>Do not be alarmed if the repository suggests other files as well, or informs you that you already have some of this impressive list. And certainly feel free to add your own:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:322px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install avifile-divx-plugin avifile-xvid-plugin gawk \
ladspa-sdk liba52-0.7.4-dev libaa1-dev libartsc0-dev libasound2-dev \
libatk1.0-dev libaudiofile-dev libavcodec-dev libavformat-dev libavifile-0.7-dev \
libc6-dev libcaca-dev libcairo2-dev libcdparanoia0-dev libdbus-glib-1-dev \
libdfb++-0.9-25 libdfb++-dev libdirectfb-0.9-25 libdirectfb-dev libdts-dev \
libdv-dev libdv4-dev libdvdnav-dev libdvdnav4 libdvdplay0 libdvdread-dev \
libdvdread3-dev libenca-dev libesd0-dev libexpat1-dev libfaac-dev libfaad2-dev \
libfame-0.9 libfame-dev libflac++-dev libflac-dev libfontconfig-dev \
libfontconfig1-dev libfreetype6-dev libfribidi-dev libgdk-pixbuf-dev \
libggi2-dev libggimisc2 libggimisc2-dev libggiwmh0 libggiwmh0-dev \
libglu1-mesa-dev libgtk2.0-dev libice-dev libjpeg62-dev liblame-dev \
liblivemedia-dev liblzo-dev libmad0-dev libmatroska-dev libmikmod2-dev \
libmp4v2-dev libmp4v2-dev libmpcdec-dev libogg-dev liboggflac++-dev \
liboggflac-dev libpango1.0-dev libpng12-dev libpng12-dev libpopt-dev \
libpostproc-dev libsdl1.2-dev libsmbclient-dev libspeex-dev libsvga1 \
libsvga1-dev libtheora-dev libungif4-dev libungif4g libvorbis-dev libx264-dev \
libxcursor-dev libxfixes-dev libxinerama-dev libxv-dev libxvidcore4 libxvidcore4-dev \
libxvmc-dev libxxf86dga-dev libxxf86vm-dev sharutils toolame ttf-bitstream-vera \
x11proto-fixes-dev x11proto-xinerama-dev xlibs-dev zlib1g-dev zlib1g-dev</pre>
</div>
<p>This should be about 50 megs of files and will extend huge functionality to mplayer when it is compiled. You can skip over the Gutsy and Hardy dev files and go to the next section where we will download the svn source code.</p>
<p><strong>Development Files for Gutsy Gibbon</strong></p>
<p>Do not be alarmed if the repository suggests other files as well, or informs you that you already have some of this impressive list. And certainly feel free to add your own:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:498px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install avifile-divx-plugin avifile-xvid-plugin gawk \
libxcursor-dev ladspa-sdk liba52-0.7.4 liba52-0.7.4-dev libaa1-dev libartsc0 \
libartsc0-dev libasound2-dev libatk1.0-dev libaudiofile-dev libavcodec1d libavcodec-dev \
libavformat1d libavformat-dev libavifile-0.7c2 libavifile-0.7-dev libavutil1d \
libavutil-dev libcaca-dev libcairo2-dev libcdparanoia0-dev libcucul-dev libdv4-dev \
libdirectfb-dev libdirectfb-extra libdbus-1-dev libdbus-glib-1-dev libdc1394-13 \
libdc1394-13-dev libdfb++-0.9-25 libdfb++-dev libdts-dev libdvdnav4 libdvdnav-dev \
libdvdread3 libdvdread-dev libebml0 libebml-dev libenca0 libenca-dev libesd0-dev \
libexpat1-dev libfaac0 libfaac-dev libfaad2-0 libfaad2-dev libfame-0.9 libfame-dev \
libflac++6 libflac-dev libflac++-dev libfontconfig1-dev libfontenc-dev libfreetype6-dev \
libfribidi-dev libgdk-pixbuf2 libgdk-pixbuf-dev libgii1 libgii1-dev libgii1-target-x \
libgl1-mesa-dev libglib1.2 libglib1.2-dev libglib2.0-dev libglu1-mesa-dev \
libglu1-xorg-dev libgsm1 libgsm1-dev libgtk1.2 libgtk1.2-common libgtk1.2-dev \
libgtk2.0-dev libice-dev libggi2 libggi2-dev libggimisc2 libggimisc2-dev libggiwmh0 \
libggiwmh0-dev libjpeg62-dev liblame0 liblame-dev liblivemedia-dev liblzo1 liblzo-dev \
liblzo2-2 liblzo2-dev libmad0 libmad0-dev libmatroska0 libmatroska-dev libmikmod2 \
libmikmod2-dev libmp4v2-0 libmp4v2-dev libmpcdec3 libmpcdec-dev libncurses5-dev \
libogg-dev libpango1.0-dev libpng12-dev libpopt-dev libpostproc1d libpostproc-dev \
libraw1394-dev libsdl1.2-dev libslang2-dev libsmbclient-dev libsm-dev libspeex-dev \
libsvga1 libsvga1-dev libsysfs-dev libtheora-dev libungif4-dev libungif4g \
libvorbis-dev libx11-dev libx264-54 libx264-dev libxau-dev libxcomposite-dev \
libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxfont-dev libxft-dev \
libxi-dev libxinerama-dev libxrandr-dev libxrender-dev libxsharp-dev libxv-dev \
libxvidcore4 libxvidcore4-dev libxvmc1 libxvmc-dev libxxf86dga-dev libxxf86vm-dev \
mesa-common-dev pnet-interpreter sharutils toolame ttf-bitstream-vera \
x11proto-composite-dev x11proto-core-dev x11proto-damage-dev \
x11proto-fixes-dev x11proto-fonts-dev x11proto-input-dev x11proto-kb-dev \
x11proto-randr-dev x11proto-render-dev x11proto-video-dev x11proto-xext-dev \
x11proto-xf86dga-dev x11proto-xf86vidmode-dev x11proto-xinerama-dev \
xlibs-static-dev xtrans-dev zlib1g-dev</pre>
</div>
<p>This should be about 50 megs of files and will extend huge functionality to mplayer when it is compiled. You can skip over the Hardy dev files and prepare to download the svn mplayer.</p>
<p><strong>Development Files for Hardy Heron</strong></p>
<p>Do not be alarmed if the repository suggests other files as well, or informs you that you already have some of this impressive list. And certainly feel free to add your own:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:402px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install comerr-dev ladspa-sdk libaa1-dev libarts1c2a libarts1-dev \
libartsc0 libartsc0-dev libasound2-dev libaudio2 libaudio-dev libaudiofile-dev \
libavahi-client-dev libavahi-common-dev libcaca-dev libcairo-directfb2 \
libcairo-directfb2-dev libcdio-dev libcdparanoia0-dev libcucul-dev libcupsys2-dev \
libdbus-1-dev libdirectfb-dev libdirectfb-extra libdts-dev libdv4-dev libenca0 \
libenca-dev libesd0-dev libfaac0 libfaac-dev libfreebob0 libfribidi-dev \
libgcrypt11-dev libggi2 libggi2-dev libggiwmh0 libggiwmh0-dev libgii1 libgii1-dev \
libgii1-target-x libgl1-mesa-dev libglu1-mesa-dev libgnutls-dev libgnutlsxx13 \
libgpg-error-dev libgtk2.0-dev libgtk-directfb-2.0-0 libgtk-directfb-2.0-dev \
libjack0 libjack-dev libjpeg62-dev libkadm55 libkrb5-dev libladspa-ocaml \
libladspa-ocaml-dev liblame0 liblame-dev liblcms1-dev  \
liblivemedia-dev liblzo2-dev libmad0 libmad0-dev libmng-dev libmpcdec3 \
libmpcdec-dev libncurses5-dev libogg-dev libopenal-dev libopencdk10-dev \
libpng12-dev libpopt-dev libpulse-browse0 libpulse-dev libpulse-mainloop-glib0 \
libqt3-headers libqt3-mt libqt3-mt-dev libsdl1.2-dev libslang2-dev libsmbclient-dev \
libsmpeg0 libsmpeg-dev libspeex-dev libsvga1 libsvga1-dev libsysfs-dev libtasn1-3-dev \
libtheora-dev libtwolame0 libtwolame-dev libungif4-dev libungif4g libvorbis-dev \
libx11-dev libx264-57 libx264-dev libxcb-shm0 libxcb-shm0-dev libxcb-xv0 \
libxcb-xv0-dev libxcb-xvmc0 libxcb-xvmc0-dev libxext-dev libxi-dev libxinerama-dev \
libxmu-dev libxmu-headers libxss-dev libxt-dev libxv-dev libxvidcore4 libxvidcore4-dev \
libxvmc1 libxvmc-dev libxxf86dga-dev libxxf86vm-dev mesa-common-dev ocaml-base-nox \
ocaml-findlib ocaml-interp ocaml-nox qt3-dev-tools x11proto-core-dev \
x11proto-scrnsaver-dev x11proto-video-dev x11proto-xf86dga-dev \
x11proto-xf86vidmode-dev zlib1g-dev zlib1g-dev</pre>
</div>
<p>This should be about 50 megs of files and will extend huge functionality to mplayer when it is compiled. Now to download the svn mplayer, after a quick word about the '-dev' files:</p>
<p><strong>A Quick Word about the 'dev' Files</strong></p>
<p>There is no magic about these lists of dev files and it is possible to alter then to suit your own purposes. There are 3 sets of files that you need:</p>
<ol style="list-style-type:decimal;">
<li>X Window System development packages</li>
<li>GTK development packages</li>
<li>Specific needs development files</li>
</ol>
<p>For example perhaps you would like to use Twolame audio encoding and find that it is not available for your copy of mplayer. Fire up your terminal and type in:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ apt-cache search twolame &#124; grep dev</pre>
</div>
<p>and you then install the resulting files:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install libtwolame-dev</pre>
</div>
<p>as well as any other support files that apt suggests. You can then run ./configure and see if mplayer picks up the development file and extends the added functionality to mplayer. If so, compile again, if not try a different search. There is more than a little trial and error here, but this is how I have come up with the 3 huge lists seen above!</p>
<p>But now finally to the actual svn mplayer:</p>
<p>=================================<br />
<strong>Download the svn mplayer</strong><br />
=================================</p>
<p>Finally after all of the preparation it is time to download the cutting edge mplayer from the subversion repository:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer</pre>
</div>
<p>And now you have the source code sitting on your Desktop! You can update this source code at any time in the following way:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">$ cd $HOME/mplayer
$ svn update</pre>
</div>
<p>and a newer version will update your code. I would advise you to do this every week or so and then recompile as I demonstrate below. Just be aware as well that sometimes an update will break mplayer. But now to compile the source code:</p>
<p>===============================================<br />
<strong>Compiling and Installing the Source Code</strong><br />
===============================================</p>
<p>Now finally to actually compile the source code. If you wish to create a 'Debian' package full information can be seen on the <a href="http://www.mplayerhq.hu/DOCS/HTML/en/linux.html#debian" target="_blank">mplayer web site</a> but for this 'Howto' let us turn to the 'old fashioned' method of compiling. It can be a long process so might I suggest a cup of tea while waiting? The following commmands are needed:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:98px;text-align:left;margin:0;padding:6px;">$ cd $HOME/mplayer
$ ./configure --enable-gui --enable-menu
$ make
$ sudo make install
$ sudo make clean</pre>
</div>
<p>and the code will eventually be compiled and installed for you. To uninstall you simply do the following:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">$ cd $HOME/mplayer
$ sudo make uninstall</pre>
</div>
<p>and the program is gone. But would you actually ever <em>really</em> want to do that?</p>
<p>=============================<br />
<strong>And in conclusion.....</strong><br />
=============================</p>
<p>And so you have successfully installed the svn mplayer! You can check the options available for you with the following commands:</p>
<ol style="list-style-type:decimal;">
<li><strong>mplayer -vo help</strong> : Video output available to mplayer</li>
<li><strong>mplayer -ao help</strong> : Audio output available to mplayer</li>
<li><strong>mplayer -vc help</strong> : Available video codecs</li>
<li><strong>mplayer -ac help</strong> : Available audio codecs</li>
<li><strong>mencoder -ovc help</strong> : Video encoding available to mencoder</li>
<li><strong>mencoder -oac help</strong> : Audio encoding available to mencoder</li>
</ol>
<p>Start both from the command line, the player with the command <strong>mplayer</strong> and the movie encoder with <strong>mencoder</strong>. (The gui gmplayer should appear on your menu.)  And remember: "Have fun!".</p>
<p>Andrew</p>
<p>=======================<br />
<strong>Some appendices</strong><br />
=======================</p>
<p>I have decided to assemble some extra information below the main 'Howto'. This is useful information but it is not <em>essential</em> to know:</p>
<ol style="list-style-type:decimal;">
<li><strong>Appendix 1</strong>: Building the HTML help files.</li>
<li><strong>Appendix 2</strong>: Compiling against the svn x264.</li>
<li><strong>Appendix 3</strong>: Adding amr support.</li>
<li><strong>Appendix 4</strong>: Some patches of my own!</li>
</ol>
<p>Actually the coolest stuff seems to be in the Appendices <img class="inlineimg" src="http://ubuntuforums.org/images/smilies/icon_smile.gif" border="0" alt="" />.</p>
<p>------------------------------------------------<br />
<strong>Appendix 1: Building the HTML Help Files</strong><br />
------------------------------------------------</p>
<p>The svn mplayer comes with a huge number of help files in xml format covering about a dozen languages. It is an excellent idea spend a little time and effort to convert them to a single HTML file in English as I demonstrate here. First a few downloads:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install docbook docbook-xsl</pre>
</div>
<p>Then use the following commands to change to the appropriate directory, allow the configure process to find the relevant software and xls stylesheets and then generate a single HTML file in the English language:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:66px;text-align:left;margin:0;padding:6px;">$ cd $HOME/mplayer/DOCS/xml
$./configure
$ make html-single-en</pre>
</div>
<p>The 600kb document can then be transferred to your Desktop as follows:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:50px;text-align:left;margin:0;padding:6px;">$ cp -v $HOME/mplayer/DOCS/HTML-single/en/MPlayer.html $HOME/Desktop/
$ cp -v $HOME/mplayer/DOCS/HTML-single/en/default.css $HOME/Desktop/</pre>
</div>
<p>I would strongly suggest that the file should be read closely especially if you go to the mplayer-users list at any stage for advice as a little homework is usually expected <em>before </em>posting questions <img class="inlineimg" src="http://ubuntuforums.org/images/smilies/icon_smile.gif" border="0" alt="" /></p>
<p>--------------------------------------------------<br />
<strong>Appendix 2: Compiling against the svn x264</strong><br />
--------------------------------------------------</p>
<p>If you wish to compile mplayer against the very latest release of x264 to optimise <em>encoding</em> (this will make no difference to <em>decoding</em>) you will need to follow these steps <em>before</em> compiling the svn mplayer:</p>
<p>First download a few utilities that may or may not already be on your system:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ sudo apt-get install xmlto git-core gpac libgpac-dev libgpac0.4.4</pre>
</div>
<p>Next download and compile the assembler required for optimal x264 compilation. I could not get x264 to recognise the repository offerings in any shape or form so I suggest that you compile your own as I did:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:146px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.0.tar.gz
$ tar xvf yasm-0.7.0.tar.gz
$ cd yasm-0.7.0
$ ./configure
$ make
$ sudo make install
$ make clean</pre>
</div>
<p>Next to download the x264 source code from the videolan git repository, the svn repository now being only a memory. First uninstall the repository x264 dev file that was used previously when compiling the svn mplayer and then download, compile and install the x264 source code:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:146px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ sudo apt-get remove libx264-dev
$ git clone git://git.videolan.org/x264.git
$ cd x264
$ ./configure --prefix=/usr --enable-shared --enable-pthread --enable-mp4-output
$ make
$ sudo make install
$ make clean</pre>
</div>
<p>And finally compile the svn mplayer as before and the new x264 libraries should be picked up automagically. How easy is that! I would suggest the following steps as well so that when you wish to update x264 it can be done very simply. First set up an alias:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ git config --global alias.up "pull --rebase"</pre>
</div>
<p>and then you can update from the x264 directory as follows:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:34px;text-align:left;margin:0;padding:6px;">$ git up</pre>
</div>
<p>Further details about how to manipulate the videolan git repository can be found at: <a href="http://wiki.videolan.org/Git" target="_blank">http://wiki.videolan.org/Git</a> and an example of x264 encoding can be seen at: <a href="http://www.andrews-corner.org/matrix.html" target="_blank">The Matrix, MPlayer, Mencoder and Matroska</a>. Don't forget that x264 can be used as standalone program as well. Simply run x264 --help to see the options available.</p>
<p>-------------------------------------<br />
<strong>Appendix 3: Adding amr support</strong><br />
-------------------------------------</p>
<p>This describes the method to add amr support to your svn mplayer installation and is written especially for the father of 'the laughing girl'.</p>
<p><strong>1. amr narrow band:</strong></p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:178px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ wget http://ftp.penguin.cz/pub/users/utx/amr/amrnb-7.0.0.2.tar.bz2
$ tar xjvf amrnb-7.0.0.2.tar.bz2
$ cd amrnb-7.0.0.2
$ wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-700.zip
$ ./configure  --prefix=/usr --enable-shared --disable-static
$ make
$ sudo make install
$ sudo make clean</pre>
</div>
<p><strong>2. amr wide band:</strong></p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;overflow:auto;width:640px;height:162px;text-align:left;margin:0;padding:6px;">$ cd $HOME
$ wget http://ftp.penguin.cz/pub/users/utx/amr/amrwb-7.0.0.3.tar.bz2
$ tar xjvf amrwb-7.0.0.3.tar.bz2
$ cd amrwb-7.0.0.3
$ wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-700.zip
$ ./configure  --prefix=/usr --enable-shared --disable-static
$ make
$ sudo make install
$ sudo make clean</pre>
</div>
<p>With both installed you now need to recompile the svn mplayer source code. Mplayer will automatically pick up the amr libraries and allow their use in Mplayer. And all the best to the father of 'the laughing girl'!!</p>
<p>------------------------------------------<br />
<strong>Appendix 4: Some patches of my own</strong><br />
------------------------------------------</p>
<p>Below are a couple of very small patches of my own that have been incorporated into the svn mplayer code.</p>
<ol style="list-style-type:decimal;">
<li><a href="http://svn.mplayerhq.hu/mplayer?view=rev&#38;revision=26181" target="_blank">Revision 26181</a> Add some more paths to find tools on Slackware 12. This allows users of Slackware 12 to build the xml docs with existing tools.</li>
<li><a href="http://svn.mplayerhq.hu/mplayer?view=rev&#38;revision=26306" target="_blank">Revision 26306</a> This is a  workaround for the problem of gmplayer being unable to open files with spaces in their names.</li>
<li><a href="http://svn.mplayerhq.hu/mplayer?view=rev&#38;revision=26754" target="_blank">Revision 26754</a> This patch fixed a typo in install-gui target dependency in the makefile. The error was blocking the installation of the gmplayer.</li>
</ol>
<p>It is not hard to do this. Have a look at the file DOCS/tech/patches.txt for information.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Reinstall Ubuntu but keep your home folder]]></title>
<link>http://malocite.wordpress.com/?p=65</link>
<pubDate>Sun, 13 Jul 2008 23:40:21 +0000</pubDate>
<dc:creator>howardrabb</dc:creator>
<guid>http://malocite.wordpress.com/?p=65</guid>
<description><![CDATA[
This will be my first posting about Ubuntu Linux, the OS that I use on three of my four PCs at home]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://www.ubuntu.com"><img class="aligncenter size-medium wp-image-66" src="http://malocite.wordpress.com/files/2008/07/ubuntulogosn.png?w=296" alt="" width="178" height="180" /></a></p>
<p style="text-align:left;">This will be my first posting about Ubuntu Linux, the OS that I use on three of my four PCs at home.</p>
<p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Flinux_unix%2FReinstall_Ubuntu_but_keep_your_home_directory' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe>I have been an Ubuntu user for just over a year now.  I started with Feisty Fawn, and after upgrading once Gutsy Gibbon came out, I decided I never wanted to go through that pain again.  That was, until I discovered that you could move your /home folder and all of its contents to another hard drive.  I was thrilled.  This in of it self is actually the easy part.  Let's assume it is going on to its very own hard drive.  We'll call this drive sdb1.  First mount the drive (I'll skip all those steps and assume you already know how to do that.  If you don't, try <a href="http://ubuntuforums.org/showthread.php?t=403650" target="_blank">here</a> or google it.</p>
<blockquote><p>sudo cp -r /home /mount/newdrive</p></blockquote>
<p>Next, go and check to make sure all your files and directories have copied to the new drive.  DON'T Assume everything worked no problem.  If there's one thing I've learned from Ubuntu, its that you can't assume ANYTHING.</p>
<p>Next, we're going to move the current /home directory to a backup folder just in case.</p>
<blockquote><p>sudo mkdir /old_home<br />
sudo cp -r /home /old_home</p></blockquote>
<p>Once your satisfied that you're ready you can delete the old /home folder and recreate it.</p>
<blockquote><p>rm -rf /home<br />
mkdir /home</p></blockquote>
<p>Next we want to map the /home onto the new drive we do this in the fstab file.  We will want to add something onto the end.</p>
<p>First</p>
<blockquote><p>sudo pico /etc/fstab                  (Yes, I use pico, because I think it sounds cute... you can use whatever editor you want)</p></blockquote>
<p>Then add this:</p>
<blockquote><p>/dev/sdb1          /home               ext3        relatime          0             2</p></blockquote>
<p>Save and exit.  We can then test to make sure this has worked by typing:</p>
<blockquote><p>sudo mount /home</p></blockquote>
<p>Then go to your home directory and see if you can list your files.    If you can, give it a try and reboot.</p>
<p>That should work.  I hope I didn't leave out anything.</p>
<p>Next, how do we re-install linux, (or whatever) and then remap to that /home folder upon a new installation??</p>
<p>This step, wasn't so easy for me.  And I've done it three times now, and finally decided to write it down.  Thanks to the official IRC Support channel on irc.freenode.org in the #ubuntu chat room, I once again, have a working computer.</p>
<p>First - I have tested this with Hardy Heron, I have no reason to believe it shouldn't work on Gutsy Gibbon, or Feisty Fawn, but I haven't tested it, so if anyone knows this works on this, please let me know, and I'll mention it in this little guide.</p>
<p>During the installation phase it will ask you to partition your drives.  Choose MANUAL.</p>
<p>Then, choose the hard drive you want to have your OS and programs installed to.  I chose SDA1 (cause that was the first hard drive) and I chose the mount point of / and the file system of ext3</p>
<p>Then, I went to the second hard drive, and chose the mount point of /home and file system of ext3.</p>
<p>Then, I made sure I had enough swap space, and proceeded to install ubuntu.</p>
<p>After I was done however, I discovered that I could not login.  This was because something went wonky with the ownerships.  My friends in the #ubuntu room (especially unop) helped to get me going again.</p>
<p>Obviously we're going to use ME as the case study.</p>
<p>First type ALT F2 to get to the console, login... then</p>
<p>Is malocite your username?</p>
<blockquote><p>echo $user</p></blockquote>
<p>Yes, it was.  Am I part of the right groups?</p>
<blockquote><p>groups; id</p></blockquote>
<p>Yes I was.  Next Is this actually the right home directory?</p>
<blockquote><p>grep -i $USER /etc/passwd</p></blockquote>
<p>It was.  Now, we're going to set the ownership of the directory.</p>
<blockquote><p>chown malocite:malocite /home/malocite; chomod -Rv 750 /home/malocite</p></blockquote>
<p>And that should do her!  After that, I rebooted and was able to login to ubuntu no problem, and all of my home files were exactly as they were before.  The other great thing, was all my bookmarks, email, background prefs, settings, etc were also all exactly as they were before.</p>
<p>I hope this was helpful, please let me know, and PLEASE, if you see anything thats wrong, let me know so I can fix it.  This was my first attempt at such a guide, and I am sure it needs work :)</p>
<p>--malocite</p>
<p><a rel="tag" href="http://technorati.com/tag/Ubuntu">Ubuntu</a> <a rel="tag" href="http://technorati.com/tag/hardy+heron">hardy heron</a> <a rel="tag" href="http://technorati.com/tag/gutsy+gibbon">gutsy gibbon</a> <a rel="tag" href="http://technorati.com/tag/feisty+fawn">feisty fawn</a> <a rel="tag" href="http://technorati.com/tag/home+folder">home folder</a> <a rel="tag" href="http://technorati.com/tag/Linux">Linux</a></p>
<p>NEW<br />
<span class="sociallinks">Add to: &#124; <a href="http://technorati.com/faves?add=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F" target="_blank">Technorati</a> &#124;  <a href="http://digg.com/submit?phase=2&#38;url=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F" target="_blank">Digg</a> &#124;  <a href="http://del.icio.us/post?url=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F;title=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder" target="_blank">del.icio.us</a> &#124;  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder&#38;u=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F" target="_blank">Yahoo</a> &#124;  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Url=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F&#38;Title=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder" target="_blank">BlinkList</a> &#124;  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F&#38;title=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder" target="_blank">Spurl</a> &#124;  <a href="http://reddit.com/submit?url=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F&#38;title=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder" target="_blank">reddit</a> &#124;   <a href="http://www.furl.net/storeIt.jsp?t=Reinstall%20Ubuntu%20but%20keep%20your%20home%20folder&#38;u=http%3A%2F%2Fmalocite%2Ewordpress%2Ecom%2F2008%2F07%2F13%2Freinstall%2Dubuntu%2Dbut%2Dkeep%2Dyour%2Dhome%2Dfolder%2F" target="_blank">Furl</a> &#124; </span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubuntu primerizo]]></title>
<link>http://ubuntico.wordpress.com/?p=8</link>
<pubDate>Fri, 11 Jul 2008 00:03:43 +0000</pubDate>
<dc:creator>ubuntico</dc:creator>
<guid>http://ubuntico.wordpress.com/?p=8</guid>
<description><![CDATA[No conocía de Linux más allá de algún vago rumor. Toooooooda la vida usando Win2 ya que era como]]></description>
<content:encoded><![CDATA[<p>No conocía de Linux más allá de algún vago rumor. Toooooooda la vida usando Win2 ya que era como monótono y demasiado cansado lidiar con la famosa pantalla azul. Y pero estar pagando por soporte para que la solución fuese formatear y reinstalar.</p>
<p>En mi casa hay una modesta compu. Procesador Intel Celeron 2.8GHz, con 512 de memoria. Estaba media mala. Se apagaba a cada rato y la llevé al taller. El técnico me dijo que la fuente de poder estaba mala y se la cambiamos.</p>
<p>Aproveché y le dije que me la diera formateada porque decidí instalarle software libre.</p>
<p>Ya conocía a <a href="http://elopio.net/blog">Leo</a> y me puse de acuerdo para verlo en San Jose y así conseguí mis primeros CD's con programas libres. Leo me dio el Open CD y 2 CD's de Ubuntu 7.10</p>
<p>Con una compu abrí el chat mientras en la otra evangelizaba a mi PC. Así la jugamos porque en realidad ni siquiera conocía GNU/Linux. No sabía nada...solo que quería aprender.</p>
<p>Todo salió bien, la instalación, el cambiar el idioma, el instalar nuevos programas...</p>
<p>Ese día y esa semana, fue cuando esta fiebre inició.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux for the masses]]></title>
<link>http://simplelight.wordpress.com/?p=75</link>
<pubDate>Wed, 02 Jul 2008 03:45:03 +0000</pubDate>
<dc:creator>simplelight</dc:creator>
<guid>http://simplelight.wordpress.com/?p=75</guid>
<description><![CDATA[Every now and then it is forcefully driven home to me that Linux is not yet ready for mass adoption.]]></description>
<content:encoded><![CDATA[<p>Every now and then it is forcefully driven home to me that Linux is not yet ready for mass adoption. I have been trying to set up my back / forward mouse buttons on Feisty Fawn. There is no reason why this should be difficult but <a title="Configuring a Mouse on Ubuntu" href="https://help.ubuntu.com/community/ManyButtonsMouseHowto">the official instructions</a> are alarmingly non-deterministic! Exhortations to "experiment" are just plain annoying. Plug and Play (TM) might not be perfect but it gets the job done most of the time.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Stage 1: Portable Multi-Distro Linux USB Drive]]></title>
<link>http://vness.wordpress.com/?p=45</link>
<pubDate>Sat, 14 Jun 2008 07:09:50 +0000</pubDate>
<dc:creator>Nessa</dc:creator>
<guid>http://vness.wordpress.com/?p=45</guid>
<description><![CDATA[Like the title says, I want to install 5 Linux distributions on my USB drive. It is a Western Digita]]></description>
<content:encoded><![CDATA[<p>Like the title says, I want to install 5 Linux distributions on my USB drive. It is a Western Digital Scorpio drive with 80GB of space. I thought it was broken and unusable until I plugged it in recently. Seems it was the pc that wasn't reading it right after all. Now that I have a new power supply unit in this old box, everything seems peachy. I was using the drive as a back up but I already have 3 hard drives and only 2 are currently plugged in. I ran out of IDE connectors. Did I mention it's old? :p</p>
<p>I have my drives set up to work independently as I sometimes take them out and test them on other pc's. I don't need all of them to be hooked up just to boot up one drive or OS. I just invoke the BIOS Boot Menu using F11 during POST and pick the one I want. Simple and easy for me.</p>
<p>I used my GParted Live CD to make the partitions the way they are now. See image below. Shrunk my NTFS I use as a windows back up sometimes. Next up was 2 Gigs of swap then an extended 60GB partition for my /home and 5 partitions for the Linux distributions I want to try. Looks nice and organized and most importantly - it works fine.</p>
<p><img src="http://i115.photobucket.com/albums/n311/jgd0m/pc/splitgalore-1-1.png" alt="GParted Screenshot of USB Drive Partitions" /></p>
<p>I got the torrent from LinuxMint.com and got some rest while waiting for it to finish. Burned it at the lowest possible speed using the simple CD writer in Linux Ubuntu 8.04, my primary distribution. I had some issues booting up the Live CD. I got an "(initramfs)" prompt instead of a regular desktop. Using the Compatibility Mode, I found out that it was some error with it not detecting the floppy and SCSI devices. I used the Live CD troubleshooting guide provided by nice people in the Mint Forums. Pressed F6 during splash, pressed tab, deleted "quiet splash--" and entered "all_generic_ide". That worked and let me into the Live environment. I liked what I saw, was curious and proceeded.</p>
<p>The installation was smooth. My first boot was met with the famous Grub Error 17 and 18. The reason being how the BIOS and the Live CD arranged the drives. In the Live CD, the usb drive was third and my BIOS read it as the first drive. The solution was to edit the menu.lst and change all references to (hd2,4) to (hd0,4), which is where my Mint is.</p>
<p>Tried again and here I am posting the results. Four more distributions to go. I've narrowed down my choices based on release date, number of packages and most important is the community or support. I did not include Linux Ubuntu since I'm already using that and it has its own hard drive in my pc. The list goes:</p>
<ul>
<li>ArchLinux - 10/07/2007 with 15,000 packages</li>
<li>Debian - 04/08/2007 with 26,000 packages</li>
<li>Fedora - 05/13/2008 with 8,000 packages</li>
<li>Mandriva - 04/09/2008 with 16,000 packages</li>
<li>Sabayon - 09/07/2007 with 12,000 packages</li>
<li>Sidux - 04/12/2008 with 22,950 packages</li>
<li>[Simply]MEPIS - 12/23/2007 with 20,000 packages</li>
</ul>
<p>*data is based on http://en.wikipedia.org</p>
<p>I wanted the distribution to be recent, within the last year or 2 years, so I wouldn't be learning something that's at the end of its life cycle. I wanted as much packages as possible because... just because. I'm still a beginner and still have a lot to learn. Now I have not looked into the community or support sites for these distributions yet. Well, I went into Debian once but for after reading some threads, I felt unwelcome because of my choice of OS - Ubuntu. I will give it another go and keep an open mind.</p>
<p>That's about it for today. The rest is yet to be determined. Hopefully, I'll get more information in a few days and start installing a 2nd OS on my USB drive. Until then...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Next Project 0.2: Portable Multi-Distro Linux USB Drive]]></title>
<link>http://vness.wordpress.com/?p=44</link>
<pubDate>Fri, 13 Jun 2008 04:49:33 +0000</pubDate>
<dc:creator>Nessa</dc:creator>
<guid>http://vness.wordpress.com/?p=44</guid>
<description><![CDATA[Change of plans. Instead of a using only Ubuntu, I&#8217;ve decided to add other Linux flavors. I]]></description>
<content:encoded><![CDATA[<p>Change of plans. Instead of a using only Ubuntu, I've decided to add other Linux flavors. I'm currently downloading Linux Mint 5 Elyssa. I still have space for more Linux distributions in my 80GB Western Digital Scorpio drive. I like the Mint philosophy about ease of use. Maybe as I progress and learn more, I'll look into non-Debian based distributions. Aside from usability, my biggest issue will be community support. Mint has the same positive and helpful community that I like in Ubuntu. I've only been to their parent's forum once and it felt kinda hostile. I was disappointed since it came highly recommended by my fellow Ubuntu users. But I'll give it another look. Like everything else in life - gotta learn the roots.</p>
<p>I have an NTFS partition in my WD Scorpio that I've already backed up into my Ubuntu 8.04 Hardy Heron installation. I'm experiencing a lil sentimentality and hesitation in wiping it off the drive. There's still plenty of space though. I can shrink the NTFS and use the rest for swap, /home and an extended partition to house the distributions I would try.</p>
<p>I have another concern. These distributions usually have their own bootloader. Although I don't really use Grub that much as I use my hard drives independently by choosing which one to boot in the BIOS Boot Menu, that won't be possible in this planned drive. I guess I can pick only the ones that use Grub but I'm not sure how much variety that would give me. I'll have to look into that in the days that come. For now, looks like my partitions are set. Will try Mint first on my USB drive and go from there. Good luck to me.</p>
<p>(",)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Finished Upgrade: Gutsy Gibbon 7.10 to Hardy Heron 8.04]]></title>
<link>http://vness.wordpress.com/?p=34</link>
<pubDate>Fri, 30 May 2008 19:08:39 +0000</pubDate>
<dc:creator>Nessa</dc:creator>
<guid>http://vness.wordpress.com/?p=34</guid>
<description><![CDATA[Posting from Linux Ubuntu Hardy Heron 8.04, second try. My first try was doing an upgrade from the m]]></description>
<content:encoded><![CDATA[<p>Posting from Linux Ubuntu Hardy Heron 8.04, second try. My first try was doing an upgrade from the manager. After finishing that and booting up in Heron 8.04, 2 things caught my eye - the prompt for updates and a Crash Report. First thing I clicked on was the Crash Report but it does not respond. Clicking on Update Manager doesn't do anything either. I went in search for possible solutions but none came soon enough. I wanted to give Heron a try and the wait was not promising. So I went with the popular vote and did a clean install.</p>
<p>I made the mistake of doing it with my XP drive still plugged in. My boot setup is that of two drives operating independently of each other with XP being the primary drive. Both XP and Ubuntu booted up as it should but the problem starts when you remove one drive. Grub error 17 comes up whenever that's the case. Next order of battle is to fix the windows MBR. Luckily, when things were working I was able to burn a way out. I went into Recovery Mode DOS and entered "fixmbr". Once that was done, XP booted up nice in its own independent way.</p>
<p>I then took off the XP drive, leaving only the Linux drive and booted up the LiveCD. Reinstalled Linux and of course take a nap. Grub is safe and sound only in the Linux drive. Everything works peachy. As in my last post, there are 2 main things I want working. My Conky and Compiz-Fusion settings aren't up and running yet. But I will be working on those next. In the next release of Ubuntu, I will attempt the upgrade first and the clean install will be the last option. I just have to remember removing the XP drive if I end up doing it again.</p>
<p>To summarize: If upgrading does not work, remove the XP drive before doing a clean install. I'm glad to have kept a record of the changes I have made. At least I have some sort of guide to put my settings back the way they were in 7.10. I have XP and Linux Ubuntu 8.04 running as planned. Spent a good deal of time but definitely another learning experience worth the effort.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Upgrading Linux Ubuntu: Gutsy Gibbon 7.10 to Hardy Heron 8.04]]></title>
<link>http://vness.wordpress.com/?p=33</link>
<pubDate>Thu, 29 May 2008 06:15:43 +0000</pubDate>
<dc:creator>Nessa</dc:creator>
<guid>http://vness.wordpress.com/?p=33</guid>
<description><![CDATA[Currently waiting for the Update Manager do move my Linux installation another step to Hardy Heron 8]]></description>
<content:encoded><![CDATA[<p>Currently waiting for the Update Manager do move my Linux installation another step to Hardy Heron 8.04. My request for CD's from <a href="http://shipit.ubuntu.com">ShipIt</a> have been approved but I have some free time and I can't wait anymore. Gotta see what the chatter is all about. It has been a month and feedback from my fellow users in <a href="http://ubuntuforums.org">UbuntuForums</a> more or less say that it's safe to dive in. So here I go.</p>
<p>Internet speed is not at optimum at the moment since someone is playing an online game on the other PC. But I'm not in any hurry. Plenty of time to watch, wait and write. Estimated time to finish is in approximately 4 hours and 45 minutes. I think I should be able to catch a nap before any "Yes or No" dialog boxes come up.</p>
<p>There are a few things I'm concerned about. I wonder if my compiz-fusion and conky settings will be saved. Or any other setting for that matter. They're supposed to be intact after an upgrade. I'll know for sure once this is complete. I haven't really done a full diagnostic on this since I installed Linux Ubuntu Feisty 7.04 last year. I have plenty of unallocated space in my hard drive and I'm thinking about trying out another Linux flavor. Which one is yet to be decided. For now, shuteye...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gestión de CPU en Ubuntu]]></title>
<link>http://estudiantekt.wordpress.com/?p=43</link>
<pubDate>Tue, 20 May 2008 14:21:58 +0000</pubDate>
<dc:creator>kanotengu</dc:creator>
<guid>http://estudiantekt.wordpress.com/?p=43</guid>
<description><![CDATA[La gestión de energía de Ubuntu incorpora varios modos de funcionamiento en función del uso que l]]></description>
<content:encoded><![CDATA[<p>La gestión de energía de Ubuntu incorpora varios modos de funcionamiento en función del uso que le queramos dar al sistema. Estos son:</p>
<ul>
<li>Conservative</li>
<li>OnDemand (cuando se solicite)</li>
<li>Performance</li>
<li>PowerSave</li>
</ul>
<p>Se puede cambiar entre modos o incluso entre frecuencias (dentro de los estados soportados por la CPU) de una forma muy sencilla: Lo primero que debermos hacer será incluir (si aún no lo tenemos) el applet de Monitor de frecuencia de la CPU en la barra de Gnome; para ello hacemos click con el botón derecho en la barra superior de gnome y pulsamos Añadir al panel. Y luego buscamos y arrastramos el citado applet a la posición que deseemos. Si tenemos una CPU con dos o más cores (núcleos), podemos añadir varios applets y configurar cada uno para que monitorice un núcleo diferente ya que, en principio, podremos cambiar el modo de funcionamiento de cada core por separado.</p>
<p>En este momento el applet ya muestra la frecuencia del núcleo seleccionado, pero lo que nosotros queremos es poder modificarla. Para ello debemos darle permisos al applet, y esto lo hacemos reconfigurando el paquete de applets. Para ello, en un terminal escribimos:</p>
<p><strong>    sudo dpkg-reconfigure gnome-applets</strong></p>
<p>Respondemos que SI en la pregunta para que establezca el flag de SUID del cpufreq-selector. Ahora podemos cambiar el modo o la frecuencia de cada core sin más que hacer click en el applet del microprocesador.</p>
<p>Por otro lado, es interesante que el equipo funcione en un modo específico según arranca según esté funcionando con baterías o enchufado a la corriente eléctrica. Para esto abrimos el editor de configuración de gnome (gconf-editor) y editamos las entradas de <strong>/apps/gnome-power-manager/cpufreq</strong></p>
<ul>
<li><strong>policy_ac</strong> contiene el estado de los núcleos que queremos cuando esté enchufado.</li>
<li><strong>policy_battery</strong> contiene el estado de los núcleos que queremos cuando esté utilizando la batería.</li>
</ul>
<p><del datetime="00">Para que esto funcione deberemos reiniciar la máquina.</del></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[install vmware-tools on Guest OS Ubuntu 7.04]]></title>
<link>http://maxi326.wordpress.com/?p=60</link>
<pubDate>Sat, 03 May 2008 17:25:44 +0000</pubDate>
<dc:creator>maxi326</dc:creator>
<guid>http://maxi326.wordpress.com/?p=60</guid>
<description><![CDATA[My OS is windows XP, Guest OS is ubuntu Feisty Fawn.
I have try some solution from the web here and ]]></description>
<content:encoded><![CDATA[<p>My OS is windows XP, Guest OS is ubuntu Feisty Fawn.</p>
<p>I have try some solution from the web here and there.</p>
<p>The final working one is a hybrid. I don't know why.</p>
<p>Here it is.</p>
<p>First, run two command. (or three).</p>
<p>1.  uname -r --&#62; get something like 2.6.20-16-generic</p>
<p>2. sudo apt-get install build-essential</p>
<p>3. sudo apt-get install linux-headers-[2.6.20-16-generic]  --&#62;</p>
<p>put what you get from (1) inside [ ]</p>
<p>Then, click on your vmware menu VM-&#62;install VMware tools...</p>
<p>You should see a vmware CD mounted, it appears on your desktop.</p>
<p>open and copy that i385.rpm to your desktop.</p>
<p>extract it and go to this directory in your terminal.</p>
<p>The directory should be vmware-tools-distrib.</p>
<p>Then run the final command : ./vmware-install.pl</p>
<p>This is it.</p>
<p>You can now configure vmware tools using /usr/bin/vmware-toolbox</p>
<p>You have to keep this running if you want to have the auto 'jump' mouse feature.</p>
<p>That is no need to punch ctrl+alt anymore.</p>
<h4></h4>
<p>REMARK: If you are using 64bit OS like me, you should get the ia32-libs first.</p>
<p>vmware-tools don't have 64bit just like flash.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Still haven't used Hardy Heron...]]></title>
<link>http://adamcoster.wordpress.com/?p=104</link>
<pubDate>Wed, 30 Apr 2008 22:06:55 +0000</pubDate>
<dc:creator>adamcoster</dc:creator>
<guid>http://adamcoster.wordpress.com/?p=104</guid>
<description><![CDATA[It makes me sad. Every time I try to burn a new Ubuntu distro to try out my laptop, the stupid CD en]]></description>
<content:encoded><![CDATA[<p>It makes me sad. Every time I try to burn a new Ubuntu distro to try out my laptop, the stupid CD ends up with some sort of error. Without fail (or, actually, <em>with</em> fail). I've tried downloading with the browser, <a href="http://www.downthemall.net/">DownThemAll</a>, <a href="http://www.utorrent.com/">uTorrent</a>, as well as different computers, burners, and CDs. What can I be doing wrong for <em>all</em> of these situations?</p>
<p style="text-align:center;"><img class="aligncenter" src="http://lifehacker.com/assets/resources/2008/03/hardy_splash.jpg" alt="" /></p>
<p>Anyway, my previous <a href="http://www.xubuntu.org/">Xubuntu</a> installation broke somehow and so can't update to 8.04. Now my only option is to go back to the only working installation disks I have, from version 6.10 Feisty Fawn. I really should just use Feisty, as it works beautifully and never gave me any trouble (and the computer I'll be running it on is a bit slow), but I'd like to fiddle with the Heron. So I'm installing 6.10, and then I'll update it, and then upgrade to 7, and then update that, and then upgrade it to 8.04. I imagine the process will take something along the lines of, oh, <em><strong>500 years</strong></em>. But what can you do?</p>
<p>Also, apparently you can't buy single CDs from anywhere. You can get a $12 DVD from Amazon with all kinds of unnecessary bells and whistles or a pack of 20 from Canonical. Of course, I could also get the free CD, but that would take 6-10 weeks! I'd happily pay for a regular, old-fashioned alternate-install CD. That option is missing, and I imagine someone could make some money doing it.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[install Flash plugin on Ubuntu Feisty Fawn AMD64]]></title>
<link>http://maxi326.wordpress.com/?p=58</link>
<pubDate>Tue, 29 Apr 2008 13:48:24 +0000</pubDate>
<dc:creator>maxi326</dc:creator>
<guid>http://maxi326.wordpress.com/?p=58</guid>
<description><![CDATA[I just want to watch youtube on my ubuntu linux.
but then I found out it is troublesome on 64bit ubu]]></description>
<content:encoded><![CDATA[<p>I just want to watch youtube on my ubuntu linux.</p>
<p>but then I found out it is troublesome on 64bit ubuntu.</p>
<p>Here is the steps I follow on some tutorial online and it works.</p>
<p>First of all, you have to turn on some repository.</p>
<p>double click ./etc/apt/sources.list and turn on two Edgy repository.</p>
<p>And then run this command in terminal to get those 32bit libs</p>
<pre>sudo apt-get install ia32-libs ia32-libs-gtk linux32 lib32asound2</pre>
<p>and then install nspluginwrapper to wrap the 32bit flash plugin.</p>
<p>you can get it by adding repository from here <a href="http://www.janvitus.netsons.org/repository/" target="_blank">http://www.janvitus.netsons.org/repository/</a></p>
<p>and then run this command</p>
<pre>sudo apt-get install nspluginwrapper gsfonts-x11</pre>
<p>Next, download Flash player from Adobe <a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz" target="_blank">here</a>.</p>
<p>untar it, moves the 2 files "libflashplayer.so" and "flashplayer.xpt" from that folder into the /usr/lib/mozilla/plugins</p>
<p>run the last command</p>
<pre>nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so</pre>
<p>copy the file which we have just generated npwrapper.libflashplayer.so from</p>
<p>/usr/lib/mozilla/plugins to /usr/lib/mozilla-firefox/plugins/</p>
<p>Now you can enjoy youtube on AMD64 bit Ubuntu. ^^</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Por qué ya no pedire discos de ubuntu...]]></title>
<link>http://jaroche.wordpress.com/?p=1463</link>
<pubDate>Sat, 19 Apr 2008 06:46:16 +0000</pubDate>
<dc:creator>Javier Aroche</dc:creator>
<guid>http://jaroche.wordpress.com/?p=1463</guid>
<description><![CDATA[Seguramente ya sabrán que ya está disponible la preorden para el envío de discos de la siguiente ]]></description>
<content:encoded><![CDATA[<p>Seguramente ya sabrán que ya está disponible <a href="https://shipit.ubuntu.com/">la preorden para el envío de discos</a> de la siguiente versión de Ubuntu 8.04 (Hardy Heron). Yo en otras ocasiones lo he hecho, pedi <a href="http://javieraroche.com/2006/09/03/lo-que-me-vino-desde-suiza/">mi disco de 6.06</a> y <a>uno de 7.04</a>, también he bajado y quemado en CDs otras versiones. Cuando veo la cantidad de discos «utilizados» ni ganas me dan de pedir más:</p>
<p style="text-align:center;"><a href="http://www.flickr.com/photos/j_aroche/2424902146/"><img src='http://aroche.net/shared/imgs/screenshots/discos-ubuntu.jpg' alt='Discos de Ubuntu' /></a></p>
<p>Muchos de estos discos solo se usaron pocas veces, si es que pasaron de las 2 veces. También que Ubuntu ya no me parece una Distro interesante, se ha vuelto muy pesado, incluso más lento que un Windows XP en estado aceptable. </p>
<p>El ritmo al que se mueve Ubuntu, una nueva versión cada 6 meses, me parece demasiado rápido... entregan un producto con bastantes bugs en los primeros días de vida; Ni hablar de <strong>caer en la trampa</strong> de actualizar a los pocos días que sale una nueva versión, <a href="http://javieraroche.com/2007/10/18/actualizar-a-ubuntu-710-gutsy-gibbon-y-no-morir-en-el-intento/">te topas con servidores saturados</a>, o te <a href="http://javieraroche.com/2007/04/25/corriendo-en-ubuntu-feisty-fawn/">topas con molestos bugs de ultima hora</a>.</p>
<p>En la casa estoy corriendo un Ubuntu 6.10 que fue actualizado a 7.04, y hasta hace <strong>unos pocos días</strong> a 7.10, todavía me encontré con problemas al actualizar como que al iniciar sesión solo funciona el Failsafe GNOME, supongo que algo relacionado con el ATi Driver. Podría reconfigurar Xorg o investigar cual es el problema, pero la verdad instalo más rápido un Windows XP en lo que encuentro una solución en los foros de Ubuntu.</p>
<p>A este punto ya no me importa en que fecha saldrá Ubuntu 8.04, me actualizaré cuando <strong>me vea forzado</strong> ha hacerlo, al ver las «mejoras» o cuando otra aplicación no me deje alternativa. Por ahora le estoy dando otro uso a <a href="http://javieraroche.com/2008/02/04/reciclando-viejos-discos-de-ubuntu/">los discos de ubuntu, reciclándolos</a> :) </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Linux vs. Windows]]></title>
<link>http://endeavourpublish.wordpress.com/?p=7</link>
<pubDate>Mon, 17 Mar 2008 18:10:21 +0000</pubDate>
<dc:creator>endeavourpublish</dc:creator>
<guid>http://endeavourpublish.wordpress.com/?p=7</guid>
<description><![CDATA[Seit einiger Zeit bin ich begeisterter Linux-User. Besser gesagt Ubuntu User. Die einfache Handhabun]]></description>
<content:encoded><![CDATA[<p>Seit einiger Zeit bin ich begeisterter Linux-User. Besser gesagt <a href="http://www.ubuntuusers.de" target="_blank">Ubuntu User</a>. Die einfache Handhabung, vielfältigen Einsatzmöglichkeiten haben mich einfach überzeugt. Installation mit wenigen  Angaben und schon fertig. Nur noch wenig Software muss nachinstalliert werden um den Ansprüchen des täglichen Bedarfs gerecht zu werden. So nutze ich Feisty als Desktop-Betriebssystem und Fileserver.</p>
<p>Einen sehr treffenden <a href="http://wiki.ubuntuusers.de/Verwaltung/Ikhaya-Team/Brief_an_einen_Windowsnutzer" target="_blank">Brief</a> hat Dirk Deimeke im Wiki von Ubuntu geschrieben.</p>
<p>Im April plane ich ein Upgrade auf Hardy Heron, ein Release mit Longtime Support und dem Mac OS Theme von <a href="http://sourceforge.net/projects/mac4lin" target="_blank">mac4lin</a> für meinen Desktop PC. Die Fortschritte und Probleme werde ich hier dokumentieren.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Dapat paketan Ubuntu 7.04 Feisty Fawn]]></title>
<link>http://pinusdesember.wordpress.com/?p=10</link>
<pubDate>Fri, 07 Mar 2008 18:52:35 +0000</pubDate>
<dc:creator>pinusdesember</dc:creator>
<guid>http://pinusdesember.wordpress.com/?p=10</guid>
<description><![CDATA[Tanggal 2 November 2007 dapat telepon dari Pos Indonesia. Diberitahukan bahwa paket Ubuntu akan diki]]></description>
<content:encoded><![CDATA[<p>Tanggal 2 November 2007 dapat telepon dari Pos Indonesia. Diberitahukan bahwa paket Ubuntu akan dikirim ke alamat. Dengan biaya administrasi Rp. 6000. Dibandingkan dengan Windows dengan harga diatas 1 juta. Wah senang ternyata pihak Ubuntu telah menepati janjinya. Paket tersebut berisi 3 cd Ubuntu. Terima Kasih Ubuntu.</p>
<p>Sebenarnya Ubuntu yang Gutsy sudah saya peroleh dari Exanet dengan burning sendiri. Tapi nggak masalah. Dan cd kiriman tersebut saya bagi-bagikan ke teman-teman saya. Ternyata dengan spirit linux for human being saya telah berhasil mengajak satu teman untuk menggunakan linux. Senang rasanya bisa mengajak orang lain untuk berbuat kebaikan. Selama ini, saya dan teman saya sama-sama belajar untuk memahami dan mendalami linux khususnya ubuntu. Dan pada saat ini ada teman satu lagi yang bertanya-tanya tentang linux, dan ingin mencobanya untuk diinsatal di komputer. Terima kasih linux.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[مراجعة اوبنتو فيستي فون]]></title>
<link>http://dheeb.wordpress.com/?p=12</link>
<pubDate>Sun, 24 Feb 2008 06:39:22 +0000</pubDate>
<dc:creator>regex2008</dc:creator>
<guid>http://dheeb.wordpress.com/?p=12</guid>
<description><![CDATA[ بسم الله الرحمن الرحيم ,, 
سنتكلم في سلسة مواضيع عن بعض]]></description>
<content:encoded><![CDATA[<p><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;" dir="rtl"><font face="Times New Roman">بسم الله الرحمن الرحيم ,,</font></span><span style="font-size:18pt;" dir="rtl"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;" dir="rtl"></span><span style="font-size:18pt;" dir="rtl"><font face="Times New Roman">سنتكلم في سلسة مواضيع عن بعض توزيعات لينكس ... و ستقتصر المراجعات على التوزيعات التي اجربها شخصيا ...</font></span><span style="font-size:18pt;" dir="rtl"><font face="Times New Roman">كل المراجعات ستكون مجربة على جهاز واحد هو لابتوب ار 400</font></span><span style="font-size:18pt;" dir="rtl"><font face="Times New Roman">من شركة ال جي .. مواصفاته :-</font></span></p>
<p><span style="font-size:18pt;" dir="rtl"></span><font face="Times New Roman"><span style="font-size:18pt;" dir="rtl">المعالج : انتل كور 2 دو 2 جيجا</span></font></p>
<p><font face="Times New Roman"><span style="font-size:18pt;" dir="rtl"> 2</span></font><span style="font-size:18pt;"><font face="Times New Roman">جيجا رام .. كرت شاشة راديون.</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">المراجعة الاولى : توزيعة لينكس اوبونتو </font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الكود نيم : فيستي فون</font></span><span style="font-size:18pt;"><font face="Times New Roman"> <!--more--></font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"><font face="Times New Roman">التنصيب:</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">عملية التنصيب كانت سهلة و ممتازة و لا تحتاج لاي خبرة في تنصيب انظمة التشغيل . فقط ادخل الاسطوانة و اعد التشغيل و سيكون لديك خلال دقائق فقط نسخة تجريبية تعمل من على الاسطوانة ... هذه النسخة التجريبية ممتازة حيث انك ستعرف ما لك و ما عليك .. مثلا في حالتي تعرف الاوبنتو على كل الاجهزة و اهمها الوايرلس فكنت اتصفح الانترنت خلال عملية التنصيب !.</font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 10&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">النظام و تعرفه على الاجهزة :-</font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">الاوبنتو ربما ميزته الكبيرة انه يتعرف على اغلب الاجهزة المشكلة التي كنا نعاني منها كثيرا ... و بالرغم من انه تعرف على الوايرلس و التوشباد و الصوت و غيرها ، لاحظت انه لم يتعرف على بعض الاشياء اهمها انه لم يتعرف على الدقة المناسبة للشاشة و احتجت ان انزل تعريف مناسب من موقع اي تي اي .. اضف الى انه لم يتعرف على الكاميرا و المايك المدمجين باللابتوب... عدا هذه النقاط فالنظام ممتاز في تعرفه على الاجهزة و اهمها الوايرلس التي تلعب دور حيوي في تنزيل الحزم المهمة و الترقيات .</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 8&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الثبات :</font></span><span style="font-size:18pt;"><font face="Times New Roman">من ناحية الثبات فالحقيقة اني انبهرت بثبات الابنتو فقد جربت ان اشغل الكومبايز فشن و مؤثرات سطح المكتب و الافانت نفيجيتر و كلها شكليات ترهق النظام مــــــع سيرفر الاباتشي و قواعد البيانات و صفحات فايرفوكس و تشغيل الجيمب شوب و البليندر و قليل من سطر الاوامر مع بيرل و كان النظام يحدث قرابة 200 ميجا بايت و لم يتاثر الاداء و لا مقدار شعرة و خلال استخدامي للنظام لم تحدث لي مرة واحدة ان تنهار الواجهة الرسومية بل حتى البرامج لا اذكر انه يوجد برنامج توقف عن التشغيل .. و لكني لاحظت انه احيانا لا يخرج الاسطوانات او اليو اس بي بالشكل الامن ..</font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 9&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">البرامج :</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">من ناحية برامج التطوير و السيرفر فلا حاجة للكلام هنا كلها مجرد دقائق معدودة حتى كان الاباتشي يعمل مع قواعد البيانات و البي اتش بي و البيرل.</font></span><span style="font-size:18pt;"><font face="Times New Roman">و هناك برامج للبايثن و السي بلس بلس اعجبتني الحقيقة ..</font></span><span style="font-size:18pt;"><font face="Times New Roman">اما برامج التطبيقات المكتبية فكان ستار اوفس اكثر من كافي .. و برامج التعديل على الصور كانت لدي اربع برامج ممتازة اولها البيكاسا لتصفح الصور و الموثرات السريعة و الثاني الجمب شوب بديل الفوتوشوب و الثالث الساين بينت و الرابع اكزارا ...</font></span><span style="font-size:18pt;"><font face="Times New Roman">طبعا الاي ار سي و الماسنجرات كلها تعمل . الفيديو كان هناك الفي ال سي و طبعا هناك الكودكس جاهزة للتحميل ... و اما طريقة التنصيب في الاوبنتو فهي في الحقيقة ثورية و سهلة جدا ... اكتب اسم البرنامج ثم انقر على تركيب و انتهى الموضوع ...</font></span><span style="font-size:18pt;"><font face="Times New Roman">الالعاب في الحقيقة لا توجد العاب قوية كثيرة و ربما افضل تشغيل العاب الويندوز على<span>  </span>اللينكس ...</font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 8&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الانترنت:</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">تصفح الانترنت في البداية لم يعجبني ربما لاني معتاد على الاكسبلورر و لكن بعدما ان قمت بتركيب خطوط الويندوز على اللينكس بدا كل شي طبيعيا .. و استخدمت ايضا الاوبيرا لاول مرة و كانت تجربة جميلة ... السكايب كان حاضرا و الفلاش يعمل و الجافا تعمل بعد ان قمت بتركيب حزمها .. هناك برامج كثيرة للاف تي بي ... و لكن لم ار برنامجا يوازي الدريم ويفر في تصميم الصفحات طبعا هناك البلوفيش و سكريم و لكن مستواهما بعيد جدا عن الدريم ويفر ، مما حداني لتشغيل الدريم ويفر و كان الاداء ممتاز نسبيا ..</font></span></p>
<p><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 8&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الواجهة الرسومية :</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman">اذا كنا نتحدث عن واجهة جينوم الافتراضية فلا شيء يذكر و لكن ما ان تقوم بتنصيب الكومبايز فشن او البي رل او الكيبا دوك و موثرات سطح المكتب مع تغيير الثيم يبدا المرح الحقيقي,,,</font></span></p>
<p><span style="font-size:18pt;"><font face="Times New Roman"></font></span></p>
<p><span style="font-size:18pt;"><font face="Times New Roman">الدرجة 10&#124;10</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span></p>
<p><span style="font-size:18pt;"></span><span style="font-size:18pt;"><font face="Times New Roman">الخلاصة : نظام جميل و ممتاز و مناسب لمن يريد الانتقال من الويندوز و سهل للغاية مع وجود برامج سهلة التركيب تفوق ال 13000 برنامج !</font></span><span style="font-size:18pt;"><font face="Times New Roman">اضف الى ذلك الثبات و الانسيابية ... جرب تشغيل النظام من على الاسطوانة و اذا تعرف النظام على اجهزتك فستكون محظوظــــــــــا جدا لانك ستدخل عالم لن تنساه ابدا ....</font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
<p><span style="font-size:18pt;"></span></p>
<p><span style="font-size:18pt;"></span><font face="Times New Roman"><span style="font-size:18pt;">الدرجة النهائية : </span><span dir="ltr"></span><span dir="ltr"></span><span style="font-size:18pt;" dir="ltr"><span dir="ltr"></span><span dir="ltr"></span>8.83</span></font><span style="font-size:18pt;"><font face="Times New Roman"> </font></span><span style="font-size:18pt;"><font face="Times New Roman"> </font></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hiccups in Gutsy Upgrade]]></title>
<link>http://vness.wordpress.com/?p=25</link>
<pubDate>Tue, 29 Jan 2008 23:56:29 +0000</pubDate>
<dc:creator>Nessa</dc:creator>
<guid>http://vness.wordpress.com/?p=25</guid>
<description><![CDATA[*sighs* I just finished tinkering with one of my favorite applications in Linux Ubuntu&#8230; Conky!]]></description>
<content:encoded><![CDATA[<p>*sighs* I just finished tinkering with one of my favorite applications in Linux Ubuntu... Conky! Oh and I just upgraded to Gutsy a few hours ago. Hit a little bump at the beginning though.</p>
<p><code>Failed to fetch http://medibuntu.sos-sts.com/repo/dists/feisty/free/binary-i386/Packages.gz 302 Found<br />
Failed to fetch http://medibuntu.sos-sts.com/repo/dists/feisty/non-free/binary-i386/Packages.gz 302 Found<br />
Failed to fetch http://medibuntu.sos-sts.com/repo/dists/feisty/free/source/Sources.gz 302 Found<br />
Failed to fetch http://medibuntu.sos-sts.com/repo/dists/feisty/non-free/source/Sources.gz 302 Found</code></p>
<p>I got the following error when I went to the Upgrade Manager and clicked on the button to upgrade my beautiful Feisty 7.04 Fawn to Gutsy 7.10 Gibbon. Thinking it has been a few months and an upgrade is in order. I changed servers several times but kept getting that same message. After searching for similar issues in the <a href="http://ubuntuforums.org">Ubuntu Forum</a>, it turned out that I had 3rd party sources in the list. I commented them out by adding "#" at the beginning of their lines and I was on my merry way. It took about 5 hours to fetch all of the necessary files and a couple more to upgrade. Went smooth, no problems or error messages. And then my Feisty bid me goodbye and asked for a final reboot...</p>
<p>Hello Gutsy! First thing I noticed were the icons. They looked edgier and better in my imperfect vision. Next thing I noticed was... Where's my conky? Where's my 2 other unused desktop? Alas! I lost both in the midst of all the new and pretty things in my Linux box. On to the terminal I went and ran "conky".</p>
<p><code>Conky: can't open '/sys/bus/i2c/devices/9191-0290/temp1_input': No such file or directory<br />
please check your device or remove this var from Conky</code></p>
<p>And this is what came up. A smart fella looked at the error message and suggested I comment out the temp line since that was giving me the error. Back on the terminal, I did "sudo gedit ~./conkyrc" gave my password and made the changes. For some reason the comment wasn't working so I just took the whole line out, saved it, hit Alt+F2 and entered "conky". Lo and behold, it came up with all the little details I cared about except the temperatures in my gutsy box.</p>
<p>It was still there and working, only something with the temperature line was off. So I scoured the good old <a href="http://ubuntuforums.org">Ubuntu Forum</a> for some answers. With arguably the best community support (even beats paid ones!) on the web, I was not disappointed. After some posting back and forth, searching and experimenting, I finally found the key to my issue. One simple key word/command had to be replaced. Took out "i2c" and put "hwmon" in its place and there it was! My conky was running perfectly again with all the info I rely on to check my system. And like your usual infomercial..."And that's not all!"</p>
<p>While posting back and forth with one of the very many helpful people there, he gave me an idea to add my hard drive temperatures on conky as well. So I did and it worked like a charm. Not only do I have my conky back, I got something extra! This is Vness and I am a Ubuntu-holic!</p>
<p>Here's my final Linux Ubuntu 7.10 aka Gutsy Gibbon Conky code:<br />
<code>background yes<br />
use_xft yes<br />
xftfont HandelGotD:size=9<br />
xftalpha 0.5<br />
update_interval 1.0<br />
total_run_times 0<br />
own_window yes<br />
own_window_type normal<br />
own_window_transparent yes<br />
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager<br />
double_buffer yes<br />
minimum_size 200 5<br />
maximum_width 200<br />
draw_shades no<br />
draw_outline no<br />
draw_borders no<br />
draw_graph_borders yes<br />
default_color white<br />
default_shade_color red<br />
default_outline_color green<br />
alignment top_right<br />
gap_x 12<br />
gap_y 48<br />
no_buffers yes<br />
uppercase no<br />
cpu_avg_samples 2<br />
override_utf8_locale no</code></p>
<p>TEXT<br />
$sysname $kernel on $machine</p>
<p>Uptime $alignr $uptime<br />
Load $alignr $loadavg</p>
<p>Hostname $alignr $nodename<br />
eth0 $alignr ${addr eth0}<br />
Mobo CPU Temp $alignr ${hwmon temp 1}C ${hwmon temp 2}C<br />
HDDlinux $alignr /dev/hdb ${execi 300 nc localhost 7634 &#124; cut -c53-54 ;}C<br />
HDDwindows $alignr /dev/hda ${execi 300 nc localhost 7634 &#124; cut -c27-28 ;}C</p>
<p>CPU $alignr ${cpu cpu0}%<br />
${cpubar cpu0}</p>
<p>MEM $alignc $mem / $memmax $alignr $memperc%<br />
$membar</p>
<p>/root $alignc ${fs_used /} / ${fs_size /} $alignr ${fs_free_perc /}%<br />
${fs_bar /}</p>
<p>/disk $alignc ${fs_used /media/disk} / ${fs_size /media/disk} $alignr ${fs_free_perc /media/disk}%<br />
${fs_bar /media/disk}</p>
<p>swap $alignc $swap / $swapmax $alignr $swapperc%<br />
${swapbar}</p>
<p>$processes processes ($running_processes running)</p>
<p>${color white}Highest CPU:<br />
${color de0b0b}${top name 1}${top_mem cpu 1}<br />
${color white}${top name 2}${top cpu 2}<br />
${top name 3}${top cpu 3}<br />
${top name 4}${top cpu 4}<br />
${top name 5}${top cpu 5}</p>
<p>${color white}Highest MEM:<br />
${color de0b0b}${top_mem name 1}${top_mem mem 1}<br />
${color white}${top_mem name 2}${top_mem mem 2}<br />
${top_mem name 3}${top_mem mem 3}<br />
${top_mem name 4}${top_mem mem 4}<br />
${top_mem name 5}${top_mem mem 5}</p>
<p>${color}Networking:<br />
Down:${color} $alignr ${downspeed eth0} k/s${color} ${offset 80}<br />
$alignc ${downspeedgraph eth0 32,150 de0b0b de0b0b}<br />
Up:${color} $alignr ${upspeed eth0} k/s ${offset 80}<br />
$alignc ${upspeedgraph eth0 32,150 de0b0b de0b0b}</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Deluge 0.5.8 e la navigazione anonima.]]></title>
<link>http://lordneo.wordpress.com/2008/01/12/deluge-058-e-la-navigazione-anonima/</link>
<pubDate>Sat, 12 Jan 2008 10:58:12 +0000</pubDate>
<dc:creator>Lord_neo</dc:creator>
<guid>http://lordneo.wordpress.com/2008/01/12/deluge-058-e-la-navigazione-anonima/</guid>
<description><![CDATA[Il periodo natalizio è stato davvero produttivo per il mio client torrent preferito. Il chagelog de]]></description>
<content:encoded><![CDATA[<p>Il periodo natalizio è stato davvero produttivo per il mio client torrent preferito. Il chagelog dell'ultima versione stabile rilasciata poco prima di Capodanno, riporta elementi di grande carattere tecnico.</p>
<div style="text-align:center;"><img src="http://img257.imageshack.us/img257/2590/delugebrowseranonimoyo1.png" alt="Deluge Browser Anonimo" height="177" width="602" /></div>
<div style="text-align:center;"></div>
<div style="text-align:center;"><i>Il browser utilizza il motore di Gecko nelle versioni Unix, quello di Internet Explorer nella versione Windows.</i></div>
<p>Questo è l'elenco delle versioni RC che hanno preceduto il rilascio della 0.5.8. Potete notare come la novità più importante riguarda sicuramente l'implementazione di un <b>browser di navigazione anonima</b> all'interno di Deluge. In questa versione è implementato all'interno del core, nelle versioni future sembra potrebbe essere convertito in plugin, in modo da poterne disabilitare il funzionamento senza dover riavviare.<!--more--></p>
<p>Eccovi i changelog in cui ho evidenziato i bug più fastidiosi che sono stati corretti, e per l'appunto anche le nuove funzionalità:</p>
<p><font color="#3366ff"><b>Deluge 0.5.8</b></font> (29 December 2007)</p>
<ul>
<li>Fix handling of corrupt torrent files</li>
<li><b>Fix having two instances of Deluge running on Ubuntu</b></li>
<li>Fix problem relating to move torrent plugin not moving torrents before they get cleared</li>
</ul>
<p><font color="#3366ff"><b>Deluge 0.5.8RC2</b></font> (25 December 2007)</p>
<ul>
<li>Change add torrent to ctrl+n</li>
<li>Change notification plugin to not show the file list, but only the torrent name</li>
<li>Allow removal of browser icon from toolbar</li>
<li><b>Add buttons to browser to launch the main and footer frames into an external browser</b></li>
<li>Fix removing torrents from deluge template of webui - vonck7</li>
<li>Set the advanced webui template as default</li>
<li>Cut down significantly on the memory usage of the blocklist plugin</li>
<li>Fix some UPnP bugs</li>
<li>Fix "New version" alert from freezing sometimes</li>
<li>Prioritizes local peers over non-local ones when finding connect</li>
<li>Wish everyone a happy holiday :)</li>
</ul>
<p><font color="#3366ff"><b>Deluge 0.5.8RC1</b></font> (22 December 2007)</p>
<ul>
<li>Key bindings:<br />
ctrl+a adds a torrent<br />
ctrl+l adds a torrent via URL ctrl+p pauses torrent(s)<br />
ctrl+r resumes torrent(s)<br />
delete removes torrent(s)</li>
<li>Fix total uploaded display bug</li>
<li>Fix seeding ratio stop on finished torrents</li>
<li><b>Fix zombie processes from occuring</b></li>
<li>Fix saying goodbye to trackers</li>
<li>Increase auto remove ratio to 100</li>
<li>Fix problem on Windows with filenames that have special characters</li>
<li>Fix saving of which columns to show</li>
<li>Fix init script error on exotic systems</li>
<li><b>Add web seed to Torrent Creator plugin</b></li>
<li>TorrentSearch is now built-in</li>
<p><!-- google_ad_section_start(weight=ignore) --></p>
<li><b>Add internal anonymizing browser</b> - Key bindings for that are as follows:<br />
<!-- google_ad_section_stop(weight=ignore) --> ctrl+l focus on location bar<br />
ctrl+k focus on search bar<br />
ctrl+r refreshes current page<br />
ctrl+enter adds 'www.' and '.com' to url string<br />
shift+enter adds 'www.' and '.net' to url string</li>
</ul>
<p>Consultate la <a href="http://deluge-torrent.org/downloads.php">pagina dei download</a> per scaricare il sorgente o il pacchetto per la vostra architettura. Esistono i precompilati per Feisty, Gutsy e anche per la futura Hardy Heron ancora in fase alpha, che magari qualcuno sta già provando a testare.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to Enable 3D Desktop Effects]]></title>
<link>http://vipinmpd08.wordpress.com/2007/12/02/how-to-enable-3d-desktop-effects/</link>
<pubDate>Sun, 02 Dec 2007 03:41:21 +0000</pubDate>
<dc:creator>vipinmpd08</dc:creator>
<guid>http://vipinmpd08.wordpress.com/2007/12/02/how-to-enable-3d-desktop-effects/</guid>
<description><![CDATA[This article explains how to enable 3d desktop effects in GNOME via command promt.
Login to your acc]]></description>
<content:encoded><![CDATA[<p>This article explains how to enable 3d desktop effects in GNOME via command promt.</p>
<p>Login to your account using GNOME desktop environment and take a new console.</p>
<p>1) Press ALT + F2  (run command)</p>
<p>2) type console and enter</p>
<p>It will open a new consle</p>
<p>3) type the command  "desktop-effects" in the consle and press enter. It will open a window like below</p>
<p><a href="http://vipinmpd08.wordpress.com/files/2007/12/screenshot-desktop-effects.png" title="screenshot-desktop-effects.png"><img src="http://vipinmpd08.wordpress.com/files/2007/12/screenshot-desktop-effects.png" alt="screenshot-desktop-effects.png" /></a></p>
<p>4) Press on enable desktop effect button and you are done.</p>
<p>Enjoy the new style and let me know if issues :)</p>
<p>Thanks</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Releases di Ubuntu]]></title>
<link>http://socialinux.wordpress.com/2007/11/19/releases-di-ubuntu/</link>
<pubDate>Mon, 19 Nov 2007 20:51:39 +0000</pubDate>
<dc:creator>socialinux</dc:creator>
<guid>http://socialinux.wordpress.com/2007/11/19/releases-di-ubuntu/</guid>
<description><![CDATA[
Addì, 3 Frimaio CCXVI



Versione


Nome in codice
Traduzione



4.10
&nbsp;
&nbsp;
Warty Warthog
]]></description>
<content:encoded><![CDATA[<p><a href="http://socialinux.wordpress.com/files/2007/11/brumaio2.jpeg" title="Brumaio"><img src="http://socialinux.wordpress.com/files/2007/11/brumaio2.thumbnail.jpeg" alt="Brumaio" /></a></p>
<p><i><b>Addì, 3 Frimaio CCXVI</b></i></p>
<p><i><b></b></i></p>
<table class="prettytable" style="border:1px solid #cccccc;border-collapse:collapse;margin:0.5em 0.5em 0.5em 0;" border="1" cellpadding="3" cellspacing="0" width="588">
<tr>
<th>Versione</th>
<th></th>
<th></th>
<th>Nome in codice</th>
<th>Traduzione</th>
<th></th>
</tr>
<tr>
<td>4.10</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Warty Warthog</td>
<td><a href="http://it.wikipedia.org/wiki/Phacochoerus_africanus" title="Phacochoerus africanus">Facocero</a> Verrucoso</td>
<td>&#160;</td>
</tr>
<tr>
<td>5.04</td>
<td>&#160;</td>
<td>&#160;</td>
<td>&#160;</td>
<td><a href="http://it.wikipedia.org/wiki/Erinaceus_europaeus" title="Erinaceus europaeus">Riccio</a> Veterano</td>
<td>&#160;</td>
</tr>
<tr>
<td>5.10</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Breezy Badger</td>
<td><a href="http://it.wikipedia.org/wiki/Meles_meles" title="Meles meles">Tasso</a> Arioso</td>
<td>&#160;</td>
</tr>
<tr>
<td>6.06 LTS</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Dapper Drake</td>
<td><a href="http://it.wikipedia.org/wiki/Papero" title="Papero">Papero</a> Signorile</td>
<td>&#160;</td>
</tr>
<tr>
<td>6.10</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Edgy Eft</td>
<td><a href="http://it.wikipedia.org/wiki/Triturus" title="Triturus">Tritone</a> Tagliente</td>
<td>&#160;</td>
</tr>
<tr>
<td>7.04</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Feisty Fawn</td>
<td><a href="http://it.wikipedia.org/wiki/Cervus_elaphus" title="Cervus elaphus">Cerbiatto</a> Esuberante</td>
<td>&#160;</td>
</tr>
<tr>
<td>7.10</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Gutsy Gibbon</td>
<td><a href="http://it.wikipedia.org/wiki/Hylobatidae" title="Hylobatidae">Gibbone</a> Coraggioso</td>
<td>&#160;</td>
</tr>
<tr>
<td>8.04 LTS</td>
<td>&#160;</td>
<td>&#160;</td>
<td>Hardy Heron</td>
<td><a href="http://it.wikipedia.org/wiki/Ardeidae" title="Ardeidae">Airone</a> Audace</td>
</tr>
</table>
<p>Al posto di Panther, Tiger, Leopard  di  <a href="http://www.apple.com/it/" target="_blank">Apple</a> che evocano animali di altera bellezza noi ci accontentiamo di un Facocero Verrucoso o al massimo di in Papero Signorile, vuoi mettere la simpatia?</p>
<p>Ogni 6 mesi viene rilasciata una nuova versione di Ubuntu e l'uscita è in contemporanea di una nuova versione di <a href="http://www.it.gnome.org/index.php/Home" target="_blank">Gnome</a> il  <a href="http://it.wikipedia.org/wiki/Desktop_environment" title="Desktop environment">desktop environment</a> di default del Sistema Operativo, ogni releases è supportata con patch ed aggiornamenti per 18 mesi eccetto le versioni LTS (LTS, Long Term Support) che vengono aggiornate 3 anni per i desktop e 5 anni per i server.<br />
<!--more--><br />
Il numero di versione è basato sul mese ed anno di uscita così che la 5.04 Hoary Hedgehog venne rilasciata ad Aprile del 2005 mentre la 8.04 Hardy Heron uscirà ad Aprile del 2008.</p>
<p>Le versioni ufficiali di Ubuntu sono:</p>
<ul>
<li><a href="http://it.wikipedia.org/wiki/Kubuntu" title="Kubuntu">Kubuntu</a>, la versione di Ubuntu che usa l'ambiente desktop <a href="http://it.wikipedia.org/wiki/KDE" title="KDE">KDE</a> invece di GNOME.</li>
<li><a href="http://it.wikipedia.org/wiki/Xubuntu" title="Xubuntu">Xubuntu</a>, la versione leggera di Ubuntu basata sull'ambiente desktop <a href="http://it.wikipedia.org/wiki/XFCE" title="XFCE">XFCE</a>.</li>
<li><a href="http://it.wikipedia.org/wiki/Edubuntu" title="Edubuntu">Edubuntu</a>, Ubuntu con <a href="http://it.wikipedia.org/wiki/GNOME" title="GNOME">GNOME</a> progettata per ambienti scolastici e per bambini.</li>
<li><a href="http://it.wikipedia.org/wiki/Gobuntu" title="Gobuntu">Gobuntu</a>, Ubuntu privata di qualsiasi pacchetto proprietario, contenente quindi solo software libero. *Op.Cit. Wikipedia</li>
</ul>
<p>Le non ufficiali sono :</p>
<ul>
<li><a href="http://it.wikipedia.org/wiki/GNewSense" title="GNewSense">gNewSense</a>: include solo software con licenze <a href="http://it.wikipedia.org/wiki/Free_and_Open_Source_Software" title="Free and Open Source Software">F/OSS</a>.</li>
<li><a href="http://it.wikipedia.org/wiki/Ubuntu_Studio" title="Ubuntu Studio">Ubuntu Studio</a>: versione ottimizzata per l'uso, anche a livello professionale, di programmi multimediali.</li>
<li><a href="http://it.wikipedia.org/wiki/Ebuntu" title="Ebuntu">Ebuntu</a>: utilizza l'ambiente <a href="http://it.wikipedia.org/wiki/Enlightenment" title="Enlightenment">Enlightenment</a>.</li>
<li><a href="http://it.wikipedia.org/wiki/GOS_%28distribuzione_Linux%29" title="GOS (distribuzione Linux)">gOS</a>: altra variante che utilizza l'ambiente desktop "<a href="http://it.wikipedia.org/wiki/Enlightenment" title="Enlightenment">Enlightenment</a> E17".</li>
<li><a href="http://it.wikipedia.org/wiki/Fluxbuntu" title="Fluxbuntu">Fluxbuntu</a>: utilizza l'ambiente <a href="http://it.wikipedia.org/wiki/Fluxbox" title="Fluxbox">Fluxbox</a>.</li>
</ul>
<ul>
<li><a href="http://it.wikipedia.org/wiki/NUbuntu" title="NUbuntu">nUbuntu</a>: include molti strumenti per la sicurezza di rete.</li>
<li><a href="http://it.wikipedia.org/wiki/Ubuntu_Lite" title="Ubuntu Lite">Ubuntu Lite</a>: utilizza l'ambiente <a href="http://it.wikipedia.org/w/index.php?title=IceWm&#38;action=edit" class="new" title="IceWm">IceWm</a>.</li>
<li><a href="http://it.wikipedia.org/w/index.php?title=DevUbuntu&#38;action=edit" class="new" title="DevUbuntu">DevUbuntu</a>: include software preconfigurato per lo sviluppo software e web e tanta documentazione.</li>
<li><a href="http://it.wikipedia.org/w/index.php?title=Ubuntu_Christian_Edition&#38;action=edit" class="new" title="Ubuntu Christian Edition">Ubuntu Christian Edition</a>: include software a sfondo <a href="http://it.wikipedia.org/wiki/Cristianesimo" title="Cristianesimo">cristiano</a>.</li>
<li><a href="http://it.wikipedia.org/w/index.php?title=Ubuntu_Muslim_Edition&#38;action=edit" class="new" title="Ubuntu Muslim Edition">Ubuntu Muslim Edition</a>: include software a sfondo <a href="http://it.wikipedia.org/wiki/Islam" title="Islam">islamico</a>.</li>
<li><a href="http://it.wikipedia.org/wiki/Ufficio_Zero" title="Ufficio Zero">Ufficio Zero</a>: è una distribuzione italiana pensata per l'ufficio.</li>
<li><a href="http://it.wikipedia.org/w/index.php?title=Ubuntu-FF&#38;action=edit" class="new" title="Ubuntu-FF">Ubuntu-FF</a>: variante della versione 6.06 completamente in italiano con molti software inclusi per la programmazione.</li>
<li><a href="http://it.wikipedia.org/wiki/FUSS" title="FUSS">FUSS</a>: versione dedicata al mondo della scuola e ai suoi servizi.</li>
<li><a href="http://it.wikipedia.org/wiki/Geubuntu" title="Geubuntu">Geubuntu</a>: unisce GNOME ad Enlightenment, è veloce ed esteticamente molto gradevole.</li>
<li><a href="http://it.wikipedia.org/wiki/Goobuntu" title="Goobuntu">Goobuntu</a>: variante prodotta da <a href="http://it.wikipedia.org/wiki/Google" title="Google">Google</a> per usi interni all'azienda.</li>
</ul>
<p>La variante Goobuntu non è mai stata pubblicata ed è stata studiata per uso interno aziendale di Google, questa scelta la dice lunga sulle performance e affidabilità di questo sistema operativo preferito da questa azienda ad Apple.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing Xubuntu]]></title>
<link>http://xubuntublog.wordpress.com/2007/11/12/installing-xubuntu/</link>
<pubDate>Mon, 12 Nov 2007 16:40:05 +0000</pubDate>
<dc:creator>Vincent</dc:creator>
<guid>http://xubuntublog.wordpress.com/2007/11/12/installing-xubuntu/</guid>
<description><![CDATA[When I installed Xubuntu 7.10 &#8220;Gutsy Gibbon&#8220;, I could not resist the urge to create a wa]]></description>
<content:encoded><![CDATA[<p>When I installed Xubuntu 7.10 "<em>Gutsy Gibbon</em>", I could not resist the urge to create a walkthrough for installing Xubuntu. It took me a while to write it up, but here it is. (<strong>Note:</strong> I have also written a <a href="http://xubuntublog.wordpress.com/2007/10/14/this-is-gutsy/" title="Review of Xubuntu 7.10 Gutsy Gibbon">review of Xubuntu 7.10</a>)</p>
<p>Since Xubuntu uses the same installer as Ubuntu and Edubuntu, <em>Ubiquity</em>, this guide also applies to them, and Kubuntu's installer is basically the same, so it also gives you an overview of what Kubuntu's installation looks like. Also, the installer has not changed since the previous version, 7.04 "<em>Feisty Fawn</em>", so it applies to that version too.</p>
<p>To start the installation, you just click the <em>Install</em> icon on the desktop once it is booted. However, I wanted to configure my internet connection first, because that way I would immediately be able to install language packs and whatnot. Note, though, that you can also complete the installation without internet connection.</p>
<p>In order to configure my wireless connection, I click the NetworkManager icon in the top right-hand side. It then pops up a list of detected wireless networks and has an entry listing my wired card.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589726"><br />
   <img src="http://www.23hq.com/23666/2589726_05fca895b87b70d374ced085ab3daa69_standard.jpg" height="370" width="460"><br />
</a></p>
<p>Simply clicking the network I want to connect with, it prompts me for the passphrase. I can then click <em>Login to Network</em> and I am connected! It couldn't be easier :)</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589725"><br />
   <img src="http://www.23hq.com/23666/2589725_ad3e570b0242ea8618cf2f6dbd6becc3_standard.jpg" height="334" width="460"><br />
</a></p>
<p>Now that my network connection is all set, I can start Ubiquity (the installation application, remember?). The first screen allows you to select a language and links to Ubuntu's release notes.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589676"><br />
   <img src="http://www.23hq.com/23666/2589676_50b1d101b8cc99f00188346bc9c0df55_standard.jpg" height="401" width="460"><br />
</a></p>
<p>Clicking <em>Forward</em> brings us in the timezone selection screen, where we are presented with a map of the world.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589714"><br />
   <img src="http://www.23hq.com/23666/2589714_a13771f199df6c714cbb42deac875cee_standard.jpg" height="401" width="460"><br />
</a></p>
<p>Clicking the area on the map where you live zooms in the map making it easy to select your location.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589713"><br />
   <img src="http://www.23hq.com/23666/2589713_2417cd62473486b051cfee4855584d1b_standard.jpg" height="401" width="460"><br />
</a></p>
<p>Clicking <em>Forward</em> again presents us with a screen to select your keyboard layout. It includes many options, including many <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" title="Wikipedia on Dvorak">Dvorak</a> ones (note to self: get to learn to type using Dvorak). An input field allows you to test the selected layout.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589703"><br />
   <img src="http://www.23hq.com/23666/2589703_c201302ced089cda279e9f0b666bac94_standard.jpg" height="401" width="460"><br />
</a></p>
<p>Yet again clicking <em>Forward</em>, a dialog box pops up telling the partitioner is being started.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589711"><br />
   <img src="http://www.23hq.com/23666/2589711_d619100c752af7e7867d88947b8b51c7_standard.jpg" height="370" width="460"><br />
</a></p>
<p>When it has finished loading, you are presented with three partitioning options:</p>
<ol>
<li><strong>Guided</strong>, resizing your main hard drive using the freed up space to install Xubuntu.</li>
<li><strong>Guided - use entire disk</strong> to wipe a whole hard drive and install Xubuntu on it.</li>
<li><strong>Manual</strong></li>
</ol>
<p><a href="http://www.23hq.com/Vincentt/photo/2589705"><br />
   <img src="http://www.23hq.com/23666/2589705_4d3dbf23dd0fd9a937fa83c57fd9acc5_standard.jpg" height="401" width="460"><br />
</a></p>
<p>I opted for Manual.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589709"><br />
   <img src="http://www.23hq.com/23666/2589709_a99c32fdec5defc9eadba8f55c3896f7_standard.jpg" height="401" width="460"><br />
</a></p>
<p>The reason for me to select Manual was because I wanted a separate partition for <code>/home</code>, which allows me to keep all documents and settings for all user accounts were I to reinstall Xubuntu (i.e. when a new version is released). Adding the required root (<code>/</code>) and swap partition I ended up with a total of three partitions.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589708"><br />
   <img src="http://www.23hq.com/23666/2589708_be938897909007c4556e861eecd48b96_standard.jpg" height="401" width="460"><br />
</a></p>
<p>Then we need to provide Xubuntu with some user information for the first user account.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589702"><br />
   <img src="http://www.23hq.com/23666/2589702_921e360c14081796850503af24eb8684_standard.jpg" height="401" width="460"><br />
</a></p>
<p>And finally, just before the actual installation will start, you are presented with an overview of everything you have selected so you can check it.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589704"><br />
   <img src="http://www.23hq.com/23666/2589704_71fcf7da2c7eb3cf8c9b085bc69889c4_standard.jpg" height="401" width="460"><br />
</a></p>
<p>However, before you commence the installation, be sure to click the <em>Advanced</em> button in the bottom right-hand side. It allows you to set the location of the boot loader if you wish to, and enables you to opt in for the "Package usage survey". If you check the checkbox, Xubuntu will send anonymous application usage data to a central Ubuntu server, so they can generate statistics about which applications are most popular. Not only does this enable the developers to improve the distribution in general, it also influences e.g. the ratings of applications you see in Add/Remove...</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589677"><br />
   <img src="http://www.23hq.com/23666/2589677_e5743eb27be695070e262aef443313fc_standard.jpg" height="300" width="356"><br />
</a></p>
<p>It will then start the installation, which will take a while.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589682"><br />
   <img src="http://www.23hq.com/23666/2589682_06f21c4d74d14e2efed0018f09f4bd1d_standard.jpg" height="184" width="460"><br />
</a></p>
<p>Meanwhile, and this is an awesome feature, you can continue to use the system! You can browse the web using Firefox, heck, you can even install new applications for use during that session, all while the installation is progressing!</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589681"><br />
   <img src="http://www.23hq.com/23666/2589681_3377a5c1ca0c8b92175b3e93487ced2f_standard.jpg" height="370" width="460"><br />
</a></p>
<p>After a while you will be notified that the installation has finished, and that you should restart the computer to use it.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589678"><br />
   <img src="http://www.23hq.com/23666/2589678_6f33617dad8fc7d62d29d0bea9cd3424_standard.jpg" height="278" width="460"><br />
</a></p>
<p>When you have restarted, with your internet connection configured, you will mostly be notified that updates are available.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589724"><br />
   <img src="http://www.23hq.com/23666/2589724_28d0822405cf086a1faac35b13f6f39d_standard.jpg" height="370" width="460"><br />
</a></p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589723"><br />
   <img src="http://www.23hq.com/23666/2589723_f78d7d5cdac4ce35b54a50f2f29b1568_standard.jpg" height="460" width="342"><br />
</a></p>
<p>I was also notified that I had the option to enable a restricted driver. This driver is not open source, but as I would like to try out Compiz Fusion (more on that in a later post) I wanted to install the driver.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589722"><br />
   <img src="http://www.23hq.com/23666/2589722_41324c20d8e723559fa43ecb3bccf055_standard.jpg" height="422" width="460"><br />
</a></p>
<p>Enabling the driver was very easy - just check the box and it will start the installation.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589721"><br />
   <img src="http://www.23hq.com/23666/2589721_a7ab8b9ea66f97a811751a95b543ed0a_standard.jpg" height="373" width="460"><br />
</a></p>
<p>Once the installation completed, I was notified that I had to restart.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589720"><br />
   <img src="http://www.23hq.com/23666/2589720_04ed9e5b0ab5d0fc9bf3e9ec2f7a15ca_standard.jpg" height="120" width="460"><br />
</a></p>
<p>Clicking the notification gave me the option of deferring the restart to a later time, or to restart immediately.</p>
<p><a href="http://www.23hq.com/Vincentt/photo/2589719"><br />
   <img src="http://www.23hq.com/23666/2589719_545a88314c0ce4fd0b7a9948cd832e36_standard.jpg" height="304" width="460"><br />
</a></p>
<p>That restart was the last restart I had to do since :)</p>
<p>All in all, Xubuntu's installation process is a breeze. The partitioning part might be a bit scary (but hey, we've got <a href="http://wubi-installer.org/" title="Windows Ubuntu Installer homepage">Wubi</a> if it's <em>too</em> scary) but overall, it's very easy and even comfortable. Being able to use the system while it is installing is a feature that blows away every other operating system I'm aware of, apart from other Linux distributions :)</p>
]]></content:encoded>
</item>

</channel>
</rss>
