<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Want Linux &#187; Ubuntu Desktop</title>
	<atom:link href="http://www.wantlinux.net/category/ubuntu-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wantlinux.net</link>
	<description>WantLinux.net Ubuntu the way I like it.</description>
	<lastBuildDate>Tue, 22 Dec 2009 16:08:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Installing Vista Fonts in Ubuntu</title>
		<link>http://www.wantlinux.net/2009/04/installing-vista-fonts-in-ubuntu/</link>
		<comments>http://www.wantlinux.net/2009/04/installing-vista-fonts-in-ubuntu/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 14:26:50 +0000</pubDate>
		<dc:creator>Darrell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://www.wantlinux.net/?p=132</guid>
		<description><![CDATA[Installing Vista Fonts in Ubuntu Microsoft’s new ClearType fonts for Vista are great. The fonts include Constantia, Corbel, Calibri, Cambria, Candara and Consolas. Getting them installed in Ubuntu is a breeze, thanks to a script I found. To install the Vista ClearType fonts in Ubuntu, you need to install cabextract first. Cabextract is a utility [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Vista Fonts in Ubuntu<br />
Microsoft’s new <a href="http://www.microsoft.com/typography/ClearTypeFonts.mspx">ClearType fonts for Vista</a> are great. The fonts include Constantia, Corbel, Calibri, Cambria, Candara and Consolas.<br />
<img src="http://ubuntu.files.wordpress.com/2007/09/vista-fonts.jpg" alt="Microsoft Vista Fonts" width="400" />
<p>Getting them installed in Ubuntu is a breeze, thanks to a script I found.<br />
To install the Vista ClearType fonts in Ubuntu, you need to install cabextract first. <a href="http://packages.ubuntu.com/cgi-bin/search_packages.pl?keywords=cabextract&amp;searchon=names&amp;subword=1&amp;version=feisty&amp;release=all">Cabextract</a> is a utility found in the universe repository, so before you run the following command, make sure you have universe enabled in your repository list. Once this is done, install cabextract using:</p><p style="float: left;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-1842667318455177";
/* wantlinux 336x280 */
google_ad_slot = "9922757146";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wantlinux.net/2009/04/installing-vista-fonts-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 Converting an ext3 filesystem to ext4</title>
		<link>http://www.wantlinux.net/2009/04/ubuntu-904-converting-an-ext3-filesystem-to-ext4/</link>
		<comments>http://www.wantlinux.net/2009/04/ubuntu-904-converting-an-ext3-filesystem-to-ext4/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 18:47:55 +0000</pubDate>
		<dc:creator>Darrell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://www.wantlinux.net/?p=112</guid>
		<description><![CDATA[Converting an ext3 filesystem to ext4 It is possible to mount both ext3 (and ext2, in kernels 2.6.28 and later) filesystems directly using the ext4 filesystem driver. This will allow you to use many of the in-core performance enhancements such as delayed allocation (delalloc) and multi-block allocation (mballoc), and large inodes if your ext3 filesystem [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-114" title="Ubuntu 9.04" src="http://www.wantlinux.net/wp-content/uploads/2009/04/ubuntu_904.png" alt="Ubuntu 9.04" width="225" height="59" /></p>
<p>Converting an ext3 filesystem to ext4</p>
<p>It is possible to mount both ext3 (and ext2, in kernels 2.6.28 and later) filesystems directly using the ext4 filesystem driver. This will allow you to use many of the in-core performance enhancements such as delayed allocation (delalloc) and multi-block allocation (mballoc), and large inodes if your ext3 filesystem have been formatted with large inodes as is the default with newer versions of e2fsprogs. Simply mounting an ext3 (or ext2) filesystem with a modern (2.6.27+) version of ext4 will not change the on-disk structures, and it is possible to revert to the ext3 (or ext2) driver should there be any problem with ext4.</p>
<p>In addition to the in-core performance enhancements, there are additional features which modify the on-disk format from what ext3 understands, such as extents, which can significantly improve the ext4 filesystem performance, but mean the filesystem cannot be mounted by kernels that do not support ext4. There are additional ext4 features, such as flex_bg and &gt; 16TB filesystem support that can only be enabled at format time via mke2fs.</p>
<p>To change an ext2 filesystem (should you still have one) to ext3 (enabling the journal feature), use the command:</p>
<p># tune2fs -j /dev/DEV</p>
<p>To enable the ext4 features on an existing ext3 filesystem, use the command:</p>
<p># tune2fs -O extents,uninit_bg,dir_index /dev/DEV</p>
<p>WARNING: Once you run this command, the filesystem will no longer be mountable using the ext3 filesystem!</p>
<p>After running this command, you MUST run fsck to fix up some on-disk structures that tune2fs has modified:</p>
<p># e2fsck -fD /dev/DEV</p>
<p>NOTE: by enabling the extents feature new files will be created in extents format, but this will not convert existing files to use extents. Non-extent files can be transparently read and written by Ext4.</p>
<p>WARNING: It is NOT recommended to resize the inodes using resize2fs with e2fsprogs 1.41.0 or later, as this is known to corrupt some filesystems.</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-1842667318455177";
/* wantlinux 234x60 */
google_ad_slot = "7210436948";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>]]></content:encoded>
			<wfw:commentRss>http://www.wantlinux.net/2009/04/ubuntu-904-converting-an-ext3-filesystem-to-ext4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu upgrade from 8.10 to 9.04 Desktop and Server</title>
		<link>http://www.wantlinux.net/2009/04/ubuntu-upgrade-from-810-to-904-desktop-and-server/</link>
		<comments>http://www.wantlinux.net/2009/04/ubuntu-upgrade-from-810-to-904-desktop-and-server/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 18:29:08 +0000</pubDate>
		<dc:creator>Darrell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://www.wantlinux.net/?p=109</guid>
		<description><![CDATA[Upgrading from Ubuntu 8.10 Desktop to Ubuntu 9.04 Desktop To upgrade from Ubuntu 8.10 on a desktop system, press Alt+F2 and type in &#8220;update-manager -d&#8221; (without the quotes) into the command box. Update Manager should open up and tell you: New distribution release &#8217;9.04&#8242; is available. Click Upgrade and follow the on-screen instructions. Upgrading from [...]]]></description>
			<content:encoded><![CDATA[<p>Upgrading from Ubuntu 8.10 Desktop to Ubuntu 9.04 Desktop</p>
<p>To upgrade from Ubuntu 8.10 on a desktop system, press Alt+F2 and type in &#8220;update-manager -d&#8221; (without the quotes) into the command box. Update Manager should open up and tell you: New distribution release &#8217;9.04&#8242; is available. Click Upgrade and follow the on-screen instructions.</p>
<p>Upgrading from Ubuntu 8.10 Server to Ubuntu 9.04 Server</p>
<p>To upgrade from Ubuntu 8.10 on a server system: install the update-manager-core package if it is not already installed; edit /etc/update-manager/release-upgrades and set Prompt=normal; launch the upgrade tool with the command sudo do-release-upgrade; and follow the on-screen instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wantlinux.net/2009/04/ubuntu-upgrade-from-810-to-904-desktop-and-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Xten X-lite install on Ubuntu 9.04</title>
		<link>http://www.wantlinux.net/2009/04/xten-x-lite-install-on-ubuntu-904/</link>
		<comments>http://www.wantlinux.net/2009/04/xten-x-lite-install-on-ubuntu-904/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 10:37:02 +0000</pubDate>
		<dc:creator>Darrell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://www.wantlinux.net/?p=100</guid>
		<description><![CDATA[Installing Xten X-lite on Ubuntu 9.04 Jaunty Jackalope. The other day I was looking for a soft phone on my Ubuntu 9.04 desktop, and am used to X-lite on my windows machines, but have not found a soft phone that i like on Linux yet. Ekiga is to commercial, and Twinkle very basic. So I [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Xten X-lite on Ubuntu 9.04 Jaunty Jackalope.<br />
<img class="alignnone size-full wp-image-103" title="Xten X-lite" src="http://www.wantlinux.net/wp-content/uploads/2009/04/xten_x-lite.jpg" alt="Xten X-lite" width="412" height="262" /><br />
The other day I was looking for a soft phone on my Ubuntu 9.04 desktop, and am used to X-lite on my windows machines, but have not found a soft phone that i like on Linux yet.  Ekiga is to commercial, and Twinkle very basic.  So I decided to try the Xten X-lite install on my Ubuntu Jaunty Jackalope desktop.  I ran into so issues, and have provided instructions for a Xten X-lite install on Ubuntu 9.04.  Please follow my steps closely, and your Xten X-lite Ubuntu 9.04 setup will be completed in no time.</p>
<p>1.) Aquire Xten X-lite from Counterpaths website.</p>
<p>$ wget http://counterpath.s3.amazonaws.com/downloads/X-Lite_Install.tar.gz</p>
<p>2.) Untar X-lite_install.tar.gz for use.</p>
<p>$ tar -xzvf X-Lite_Install.tar.gz</p>
<p>This will create a  xten-xlite directory with a README file, and the xtensoftphone binary.</p>
<p>3.) Install libstdc++5 which is required to run the xtensoftphone binary.</p>
<p>$ sudo apt-get install libstdc++5</p>
<p>4.) Start the Xten X-lite software on Ubuntu 9.04 and configure it for your phone system.</p>
<p>$ xten-xlite/xtensoftphone</p>
<p>I was not very pleased with this version of Xten X-lite for Linux, but I do like the windows version, and I guess I will be sticking to my twinkle soft phone for now.  When Counterpath gets off it&#8217;s butt and builds a newer version of the X-lite for Linux I will try to install it again on my Ubuntu 9.04 Desktop. Please let me know if you have any questions or issues with these instructions and feel free to look at some of my other pages. <a href="http://www.wantlinux.net/2009/04/nvidia-6200-xorgconf-twinview-setup-ubuntu-904-juanty-jackalope/"> Nvidia 6200 Xorg.conf with Twinview setup Ubuntu 9.04 Juanty Jackalope</a> or <a hred="http://www.wantlinux.net/2009/04/ubuntu-904-bind-dns-caching-server/">Ubuntu 9.04 BIND DNS Caching server</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wantlinux.net/2009/04/xten-x-lite-install-on-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Nvidia 6200 Xorg.conf with Twinview setup Ubuntu 9.04 Juanty Jackalope</title>
		<link>http://www.wantlinux.net/2009/04/nvidia-6200-xorgconf-twinview-setup-ubuntu-904-juanty-jackalope/</link>
		<comments>http://www.wantlinux.net/2009/04/nvidia-6200-xorgconf-twinview-setup-ubuntu-904-juanty-jackalope/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 21:01:37 +0000</pubDate>
		<dc:creator>Darrell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://www.wantlinux.net/?p=62</guid>
		<description><![CDATA[I had some issues setting up the Nvidia 6200 xorg.conf with Twinview since I went from 7.10 Gutsy Gibbon to 9.04 Jaunty Jackalope alpha 6. My previous video card lost a fan over the weekend while I was gone, and overheated. I purchased the Nvidia 6200 AGP card cause I thought I would have not [...]]]></description>
			<content:encoded><![CDATA[<p>I had some issues setting up the Nvidia 6200 xorg.conf with Twinview since I went from 7.10 Gutsy Gibbon to 9.04 Jaunty Jackalope alpha 6.  My previous video card lost a fan over the weekend while I was gone, and overheated.  I purchased the Nvidia 6200 AGP card cause I thought I would have not issues setup up my xorg.conf twinview. I remember when I installed 7.10 Gutsy Gibbon on my work desktop, and I had no issues once I installed the Nvidia drivers using apt-get install nvidia-kernel-common.  Going into this install I thought it was going to be a breeze to configure the Nvidia 6200  xorg twinview. I was wrong, and am just putting up my xorg.conf, and creating a place for you all to ask some questions about my Nvidia 6200 xorg.conf Twinview setup.  I love Nvidia, xorg, and twinview, and I know you will also.  So good luck configuring your twin monitors with your Nvidia 6200.  Below is my /etc/X11/xorg.conf please feel free to take what you like, and bitch about what I did wrong.</p>
<p>$ cat /etc/X11/xorg.conf<br />
Section &#8220;Monitor&#8221;<br />
Identifier     &#8220;Monitor0&#8243;<br />
VendorName     &#8220;Unknown&#8221;<br />
ModelName      &#8220;Samsung SyncMaster&#8221;<br />
HorizSync       30.0 &#8211; 81.0<br />
VertRefresh     56.0 &#8211; 75.0<br />
Option         &#8220;DPMS&#8221;<br />
# HorizSync source: edid, VertRefresh source: edid<br />
EndSection</p>
<p>Section &#8220;Screen&#8221;<br />
Identifier     &#8220;Screen0&#8243;<br />
Device         &#8220;Device0&#8243;<br />
Monitor        &#8220;Monitor0&#8243;<br />
Option         &#8220;TwinView&#8221; &#8220;1&#8243;<br />
Option         &#8220;TwinViewXineramaInfoOrder&#8221; &#8220;CRT-0&#8243;<br />
Option         &#8220;metamodes&#8221; &#8220;CRT-0: 1280&#215;1024 +0+0, CRT-1: nvidia-auto-select +1280+0; CRT-0: 1280&#215;1024 +0+0, CRT-1: 1280&#215;1024 +1280+0; CRT-0: 1024&#215;768 +0+0, CRT-1: 1024&#215;768 +1024+0; CRT-0: 1024&#215;768 +0+0, CRT-1: NULL&#8221;<br />
DefaultDepth	24<br />
SubSection &#8220;Display&#8221;<br />
Depth       24<br />
EndSubSection<br />
EndSection</p>
<p>Section &#8220;Module&#8221;<br />
Load           &#8220;dbe&#8221;<br />
Load           &#8220;extmod&#8221;<br />
Load           &#8220;type1&#8243;<br />
Load           &#8220;freetype&#8221;<br />
Load           &#8220;glx&#8221;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Identifier     &#8220;Mouse0&#8243;<br />
Driver         &#8220;mouse&#8221;<br />
Option         &#8220;Protocol&#8221; &#8220;auto&#8221;<br />
Option         &#8220;Device&#8221; &#8220;/dev/psaux&#8221;<br />
Option         &#8220;Emulate3Buttons&#8221; &#8220;no&#8221;<br />
Option         &#8220;ZAxisMapping&#8221; &#8220;4 5&#8243;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Identifier     &#8220;Keyboard0&#8243;<br />
Driver         &#8220;kbd&#8221;<br />
# generated from default<br />
EndSection</p>
<p>Section &#8220;ServerLayout&#8221;<br />
Identifier     &#8220;Layout0&#8243;<br />
Screen      0  &#8220;Screen0&#8243; 0 0<br />
InputDevice    &#8220;Keyboard0&#8243; &#8220;CoreKeyboard&#8221;<br />
InputDevice    &#8220;Mouse0&#8243; &#8220;CorePointer&#8221;<br />
EndSection</p>
<p>Section &#8220;Device&#8221;<br />
Identifier     &#8220;Device0&#8243;<br />
VendorName     &#8220;NVIDIA Corporation&#8221;<br />
BoardName      &#8220;GeForce 6200&#8243;<br />
Driver	&#8220;nvidia&#8221;<br />
Option	&#8220;NoLogo&#8221;	&#8220;True&#8221;<br />
EndSection</p>
<p>Section &#8220;ServerFlags&#8221;<br />
Option         &#8220;Xinerama&#8221; &#8220;0&#8243;<br />
EndSection</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wantlinux.net/2009/04/nvidia-6200-xorgconf-twinview-setup-ubuntu-904-juanty-jackalope/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
