<?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>Linux and Virtualization &#187; gnome</title>
	<atom:link href="http://fclose.com/b/linux/tag/gnome/feed/" rel="self" type="application/rss+xml" />
	<link>http://fclose.com/b/linux</link>
	<description>Clear solutions, tutorials and tips on Linux and virtualization from the author&#039;s experience with clusters.</description>
	<lastBuildDate>Thu, 09 Feb 2012 14:49:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Vim as Thunderbird&#8217;s External Editor in Linux</title>
		<link>http://fclose.com/b/linux/3301/vim-as-thunderbirds-external-editor-in-linux/</link>
		<comments>http://fclose.com/b/linux/3301/vim-as-thunderbirds-external-editor-in-linux/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 12:42:08 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://fclose.com/b/linux/?p=3301</guid>
		<description><![CDATA[Vim is an excellent editor which I use every day. Thunderbird is a nice email application. However, Thunderbird&#8217;s integrated editor is not efficient enough to a Vim user. Why not use Vim as Thunderbird&#8217;s editor? In this tutorial, we will introduce how to integrate Vim with Thunderbird together in Linux. Install the &#8220;External Editor&#8221; Thunderbird [...]]]></description>
			<content:encoded><![CDATA[<p>Vim is an excellent editor which I use every day. Thunderbird is a nice email application. However, Thunderbird&#8217;s integrated editor is not efficient enough to a Vim user. Why not use Vim as Thunderbird&#8217;s editor? In this tutorial, we will introduce how to integrate Vim with Thunderbird together in Linux.</p>
<h3>Install the &#8220;External Editor&#8221; Thunderbird extension</h3>
<p>Download <a href="http://fclose.com/t/go/linux/external-editor-download/" rel="nofollow external">the &#8220;External Editor&#8221; plugin</a>.</p>
<p>And install it to Thunderbird.</p>
<h3>Configure the external editor</h3>
<h4>Option 1: use gvim</h4>
<p>This is an easy method which use gvim.</p>
<p>In External Editor&#8217;s Preference, set the Text Editor to:</p>
<pre>gvim -f</pre>
<h4>Option 2: use vim in gnome-terminal</h4>
<p>If you prefer to use vim in a terminal as me, you may consider this option. Setting vim in the editor will simply fail. We may use &#8216;xterm -e vim&#8217; as the editor, but xterm looks ugly in a modern computer compared to shells like gnome-terminal. However, we need a little trick to use vim inside gnome-terminal.</p>
<p>First, create a script &#8220;callvim&#8221;:</p>
<pre>#!/bin/bash

gnome-terminal --geometry=80x40 --disable-factory -e "vim $*"</pre>
<p>Save it to a directory in your $PATH, such as ~/bin/, and remember to give it executable by &#8216;chmod +x callvim&#8217;.</p>
<p>Then, set the Text Editor in External Editor&#8217;s Preference to</p>
<pre>callvim</pre>
<h3>How to use it</h3>
<p>When creating or editing email, invoke vim to edit it by the keyboard shortcut Ctrl+E.</p>
<p>Edit the email in Vim and save and exit. The email in Thunderbird&#8217;s editor is changed.</p>
<h3>Customize Vim for editing email</h3>
<p>We can customize Vim to be a better email editor by set email-specific configuration in ~/.vimrc. Below is my configuration in .vimrc which set the text width to 68 charactors, set automatic spell check, default file encoding to be iso8859-1 and utf-8. Abbreviation is also available, which may be frequently used in writing email.</p>
<p>My email configuration in ~/.vimrc</p>
<pre>au FileType mail call FT_mail()

function FT_mail()
    set nocindent
    set noautoindent
    set textwidth=68
    " reformat for 72 char lines
    " normal gggqGgg
    " settings
    setlocal spell spelllang=en
    " setlocal fileencoding=iso8859-1,utf-8
    set fileencodings=iso8859-1,utf-8
    " abbreviations
    iabbr  gd Good Day!
endfunction</pre>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/3301/vim-as-thunderbirds-external-editor-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improving Font Rendering for Fedora Using Bytecode Interpreter</title>
		<link>http://fclose.com/b/linux/2805/improving-font-rendering-for-fedora-using-bytecode-interpreter/</link>
		<comments>http://fclose.com/b/linux/2805/improving-font-rendering-for-fedora-using-bytecode-interpreter/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 18:46:50 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Xorg]]></category>

		<guid isPermaLink="false">http://fclose.com/b/?p=2805</guid>
		<description><![CDATA[Fedora&#8217;s font rendering isn&#8217;t very nice. At least on my laptop with Fedora 12. Bytecode Interpreter (BCI for shot) is disabled by default because of patent issues. As the TrueType bytecode patents have expired, it&#8217;s legal for us to enable BCI in Fedora now. TrueType announced that BCI is enabled by default from 2.4. Fedora [...]]]></description>
			<content:encoded><![CDATA[<p>Fedora&#8217;s font rendering isn&#8217;t very nice. At least on my laptop with Fedora 12. Bytecode Interpreter (BCI for shot) is disabled by default because of patent issues. As the TrueType bytecode patents have <a href="http://www.freetype.org/patents.html">expired,</a> it&#8217;s legal for us to enable BCI in Fedora now. TrueType announced that BCI is enabled by default from 2.4. Fedora 12&#8242;s TrueType version is 2.3 which disabled BCI. We can use rpmfusion&#8217;s font rendering package freetype-freeworld instead. On my laptop, BCI with <a href="https://fedorahosted.org/liberation-fonts/">liberation fonts</a> looks quite nice.</p>
<p>Let&#8217;s use Fedora 12 as the example to introduce how to use bytecode interpreter font rendering algorithm</p>
<h3>1. Add rpmfusion repositories</h3>
<p><a href="http://fclose.com/t/go/enable-rpmfusion/">Enable RPM Fusion repositories</a></p>
<h3>2.Install freetype-freeworld</h3>
<pre># yum install freetype-freeworld</pre>
<h3>3. Install liberation fonts</h3>
<pre># yum install liberation-sans-fonts
liberation-mono-fonts liberation-serif-fonts</pre>
<p>We may set the default font in Gnome&#8217;s &#8220;Appearance&#8221; configuration tools. We may also map &#8220;sans&#8221; &#8220;sans serif&#8221; and &#8220;mono&#8221; fonts&#8217; default to liberation: Download my <a href="https://github.com/zma/config_files/raw/master/.fonts.conf.libration">fonts configuration file</a>, and save it to ~/.fonts.conf</p>
<h3>4. Change Gnome&#8217;s font rendering</h3>
<p>In &#8220;System &gt; Preferences &gt; Appearance&#8221;, select the font and rendering. &#8220;Subpixel smoothing (LCDs)&#8221; looks best on my latptop with LCD.</p>
<h3>5. Restart X server</h3>
<p>All the applications&#8217; fonts should look much better now. Enjoy it!</p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/2805/improving-font-rendering-for-fedora-using-bytecode-interpreter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Fedora Live USB Media</title>
		<link>http://fclose.com/b/linux/2463/creating-fedora-live-usb-media/</link>
		<comments>http://fclose.com/b/linux/2463/creating-fedora-live-usb-media/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:45:43 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://pkill.info/b/?p=2463</guid>
		<description><![CDATA[How to create a Fedora live USB media is introduced in this post. We can boot to Fedora operating system environment through a live USB system in the USB flash media on a USB-bootable computer without writing the computer&#8217;s hard disk. We can also install Fedora operating system from the live system environment. Remember to [...]]]></description>
			<content:encoded><![CDATA[<p>How to create a Fedora live USB media is introduced in this post. We can boot to Fedora operating system environment through a live USB system in the USB flash media on a USB-bootable computer without writing the computer&#8217;s hard disk. We can also install Fedora operating system from the live system environment.</p>
<p>Remember to backup data in the USB stick before proceeding the method below.</p>
<h3>Command line method</h3>
<h4>Download the Fedora Live ISO image</h4>
<p>We can download Fedora Live ISO image of different releases version can be found from: <a href="http://fedoraproject.org/en/get-fedora">http://fedoraproject.org/en/get-fedora</a></p>
<p>You can even download an <em>boot.iso</em> and <em>netinst.iso</em> with smaller size if you want to install from network of local image. The method in this part works with these images too.</p>
<h4>Directly copy the image to USB media</h4>
<p>We can use <em>dd</em> to make a direct copy from the image to USB media. Remember to backup your data on the USB media since all data will be lost after <em>dd.</em></p>
<pre># dd if=./Fedora-Live-i686.iso of=/dev/sdX bs=8M
</pre>
<p><em>/dev/sdX</em> is device name of the USB stick instead of the partition name (sdc is right, sdc1 is wrong).</p>
<h4>Test the Live USB media</h4>
<p>We can use <em>qemu</em> or other virtualization tools to try boot from the Live USB media we created.</p>
<pre># umount /dev/sdbX
# qemu -hda /dev/sdX -m 256 -vga std
</pre>
<p>/dev/sdX is the Live USB media&#8217;s device name.</p>
<h3>Graphical method with liveusb-creator</h3>
<p>This method can be used on both Linux and Windows. For windows users the <em>liveusb-creator</em> application can be downloaded from: <a href="http://fedorahosted.org/liveusb-creator" target="_blank">http://fedorahosted.org/liveusb-creator</a></p>
<p>For Fedora users, <em>liveusb-creator </em>is already in the repository.</p>
<pre># yum install liveusb-creator
</pre>
<p>Run<em> liveusb-creator </em>and select the &#8220;Live CD image&#8221; path and the &#8220;Target Device&#8221;, and then click &#8220;Create Live USB&#8221;. The application will write the Live image to the USB stick.</p>
<p>After it finishes, we can also use <em>qemu </em>as described above to test the Live USB media.</p>
<p>&#8212;-</p>
<p>Update history<br />
Apr. 2, 2011. Adapt it to not rely on specific Fedora version.</p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/2463/creating-fedora-live-usb-media/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Two Gnome Easter Eggs: &#8220;free the fish&#8221; and &#8220;gegls from outer space&#8221;</title>
		<link>http://fclose.com/b/linux/2451/two-gnome-easter-eggs-free-the-fish-and-gegls-from-outer-space/</link>
		<comments>http://fclose.com/b/linux/2451/two-gnome-easter-eggs-free-the-fish-and-gegls-from-outer-space/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 22:41:11 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[gnome]]></category>

		<guid isPermaLink="false">http://pkill.info/b/?p=2451</guid>
		<description><![CDATA[There are funny Gnome easter eggs. One is &#8220;free the fish&#8221;, and another one is &#8220;gegls from outer space&#8221;. &#8220;free the fish&#8221; Press Alt+F2 to open &#8220;Run Application&#8221; dialog Enter &#8220;free the fish&#8221; Hit Enter &#8220;geglx from outer space&#8221; Press Alt+F2 to open &#8220;Run Application&#8221; dialog Enter &#8220;gegls from outer space&#8221; Hit Enter]]></description>
			<content:encoded><![CDATA[<p>There are funny Gnome easter eggs. One is &#8220;free the fish&#8221;, and another one is &#8220;gegls from outer space&#8221;.</p>
<h3>&#8220;free the fish&#8221;</h3>
<ol>
<li>Press <em>Alt+F2</em> to open &#8220;Run Application&#8221; dialog</li>
<li>Enter <em>&#8220;free the fish&#8221;</em></li>
<li>Hit Enter</li>
</ol>
<h3>&#8220;geglx from outer space&#8221;</h3>
<ol>
<li>Press <em>Alt+F2</em> to open &#8220;Run Application&#8221; dialog</li>
<li>Enter <em>&#8220;gegls from outer space&#8221;</em></li>
<li>Hit Enter</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/2451/two-gnome-easter-eggs-free-the-fish-and-gegls-from-outer-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Mouse Cursor Style for GTK Applications in KDE Desktop</title>
		<link>http://fclose.com/b/linux/2186/configuring-mouse-cursor-style-for-gtk-applications-in-kde-desktop/</link>
		<comments>http://fclose.com/b/linux/2186/configuring-mouse-cursor-style-for-gtk-applications-in-kde-desktop/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 17:28:41 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://pkill.info/b/?p=2186</guid>
		<description><![CDATA[Update on Jan. 7, 2012: The package for the gtk application style setting on KDE 4.7 is kcm-gtk. The command to install this package is: &#8220;# yum install kcm-gtk&#8221;. One annoying thing when using KDE desktop is that the theme and style of GTK applications differ from KDE&#8217;s. The gtk-qt-engine can let us select the [...]]]></description>
			<content:encoded><![CDATA[<p>Update on Jan. 7, 2012: The package for the gtk application style setting on KDE 4.7 is kcm-gtk. The command to install this package is: &#8220;# yum install kcm-gtk&#8221;.</p>
<p>One annoying thing when using KDE desktop is that the theme and style of GTK applications differ from KDE&#8217;s. The <em>gtk-qt-engine</em> can let us select the theme for GTK applications in KDE desktop environment. But the mouse cursors for GTK application and QT applications are different if we set the cursor style in KDE&#8217;s setting tools. The cursor for GTK application changes to the default one when moving cursor from the desktop to GTK application such as Firefox. The is quite annoying. In this article, we will introduce a piece of tip to make the cursor the same style in both GTK and QT applications.</p>
<p>First, the <em>gtk-qt-engine</em> should have been installed to configure the theme for GTK application. If not, install it like this:</p>
<pre># yum install gtk-qt-engine</pre>
<p>You can find the cursor icons which you are using in KDE under <em>/usr/share/icons/</em>. Let&#8217;s use &#8220;<em>Oxygen_Blue&#8221; </em>which is my favourite one as the example.</p>
<p>After installing <em>gtk-qt-engine</em>, there is one configuration file for it: <em>~/.gtkrc-2.0-kde4</em>. It may be a little different depending on the package version.</p>
<p>To set the cursor icon theme for GTK application to <em>&#8220;Oxygen_Blue&#8221;</em>, add this line into <em>~/.gtkrc-2.0-kde4</em>:</p>
<pre>gtk-cursor-theme-name="Oxygen_Blue"</pre>
<p>It can be changed to any icon theme&#8217;s name that we like. We may need to reload the KDE desktop after changing it. After reloading the desktop environment, try to open a GTK application and see whether the icons are the same in both kind of applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/2186/configuring-mouse-cursor-style-for-gtk-applications-in-kde-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OSX-like Gnome Theme Style</title>
		<link>http://fclose.com/b/linux/1873/mac-osx-like-gnome-theme-style/</link>
		<comments>http://fclose.com/b/linux/1873/mac-osx-like-gnome-theme-style/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 12:08:13 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://pkill.info/b/?p=1873</guid>
		<description><![CDATA[The design of Mac OSX&#8217;s theme is very nice. I am always looking for a good theme for my Linux desktop. There are designs influenced by Mac&#8217;s style which looks pretty good in Gnome. Screenshots These are screenshots of my desktop. How to set it up This theme is a mixture of Mac OS X [...]]]></description>
			<content:encoded><![CDATA[<p>The design of Mac OSX&#8217;s theme is very nice. I am always looking for a good theme for my Linux desktop. There are designs influenced by Mac&#8217;s style which looks pretty good in Gnome.</p>
<h3>Screenshots</h3>
<p>These are screenshots of my desktop.</p>
<p><a href="http://picasaweb.google.com/lh/photo/pZp4da8Y-t4yi2yeKAVseQ?feat=embedwebsite"><img src="http://lh5.ggpht.com/_9GCSB4c6Upw/TDSwRq3yAyI/AAAAAAAAA9k/j1kLkkyfLXk/s400/mac-osx-like-gnome-theme-1.png" alt="" /></a><br />
<a href="http://picasaweb.google.com/lh/photo/XrBcvMPkjt7c2W-zIjzXng?feat=embedwebsite"><img src="http://lh5.ggpht.com/_9GCSB4c6Upw/TDSwR-gh97I/AAAAAAAAA9o/XwDrg6opTzA/s400/mac-osx-like-gnome-theme-2.png" alt="" /></a><br />
<a href="http://picasaweb.google.com/lh/photo/nua_wcBQNKjel8Ueude7zw?feat=embedwebsite"><img src="http://lh6.ggpht.com/_9GCSB4c6Upw/TDSwR6UG2GI/AAAAAAAAA9s/WxBBjEWQQ4I/s400/mac-osx-like-gnome-theme-4.png" alt="" /></a><br />
<a href="http://picasaweb.google.com/lh/photo/GJGlPCSTMTo7djFQnq8TTA?feat=embedwebsite"><img src="http://lh5.ggpht.com/_9GCSB4c6Upw/TDSwSMeI5NI/AAAAAAAAA9w/E99yXEBiOSs/s400/mac-osx-like-gnome-theme-5.png" alt="" /></a><br />
<a href="http://picasaweb.google.com/lh/photo/D6HPa439X1cGdPljtDZU3A?feat=embedwebsite"><img src="http://lh5.ggpht.com/_9GCSB4c6Upw/TDSwmMvIvjI/AAAAAAAAA90/8csNOnL9nEU/s400/mac-osx-like-gnome-theme-3.png" alt="" /></a></p>
<h3>How to set it up</h3>
<p>This theme is a mixture of <strong>Mac OS X Bundle 2.1, iRaveH20 3 Icon Theme (Full Gnome/XFCE) Lights 3.0 </strong>and<strong> Oxygen-cursor-themes 4.4.4</strong> which is originally designed for  KDE desktop.</p>
<h4>Installation</h4>
<p>The theme controls, the window border and the desktop background comes from <a href="http://gnome-look.org/content/show.php?content=28686" rel="nofollow">Mac OS X Bundle</a>. Download the package from the link in gnome-look.org and unpack it. You can get one picture and two tarballs. Then they can be easily installed by using the &#8220;install&#8221; button in Gnome&#8217;s &#8220;Appearance Preference&#8221; tool. For the background picture, just copy it somewhere.</p>
<p>The <a href="http://gnome-look.org/content/show.php?content=119776" rel="nofollow">iRaveH20 Icon theme</a> can also be installed by the &#8220;install&#8221; button. The Oxygen cursor theme is already in Fedora&#8217;s repository. If you use another Linux distribution that have KDE desktop environment which is the usual case, you can easily install the cursor theme which is a part of KDE. In my box, I can install it by:</p>
<pre># yum install oxygen-cursor-themes</pre>
<h4>Configuration</h4>
<p>After installing them, select any theme in the theme window and then click the &#8220;customize&#8221; button. The &#8220;Customize theme&#8221; window will appears. Select &#8220;mac-osx-controls&#8221; in the &#8220;Controls&#8221; tab, select &#8220;mac-osx-window&#8221; in &#8220;Window Border&#8221; tab, select &#8220;iRaveH20 3 Lights Edition&#8221; for icons and choose &#8220;Oxygen_Blue&#8221; for cursor them. The background can be added by clicking &#8220;add&#8221; button and choose the picture stored before.</p>
<p>This the style of my favourite. It&#8217;s stable and making me happy with my terminal. Of course, there are lots of other combination of these themes or others. Choose the one that you prefer ;) Linux is free and open for everyone.</p>
<p><span style="font-size: x-small;"><strong>Update history</strong><br />
Oct. 17, 2010. Insert links to body; add titles</span></p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/1873/mac-osx-like-gnome-theme-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Google Apps Account for GTalk in Pidgin</title>
		<link>http://fclose.com/b/linux/1641/using-google-apps-account-for-gtalk-in-pidgin/</link>
		<comments>http://fclose.com/b/linux/1641/using-google-apps-account-for-gtalk-in-pidgin/#comments</comments>
		<pubDate>Tue, 11 May 2010 06:01:05 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://zhiqiangma.info/?p=1641</guid>
		<description><![CDATA[I believe many users are using pidgin and google apps. Google apps support Google Talk. Can we use it in Pidgin? The answer is yes. How to use Google apps account for Google Talk in Pidgin will be introduced in this post. Let&#8217;s use my email address as the exapmle: eric[at]zhiqiangma.info First add a new [...]]]></description>
			<content:encoded><![CDATA[<p>I believe many users are using pidgin and google apps. Google apps support Google Talk. Can we use it in Pidgin? The answer is yes. How to use Google apps account for Google Talk in Pidgin will be introduced in this post.</p>
<p>Let&#8217;s use my email address as the exapmle: eric[at]zhiqiangma.info<br />
First add a new account in Pidgin. The configure the new account like this:<br />
Basic Tab:</p>
<pre>Protocol: XMPP
Username: eric (First half of Email address)
Domain: zhiqiangma.info (Second half of Email address)
Resource: gmail.com
</pre>
<p>Advanced Tab:</p>
<pre>Connect port: 5222
Connect server: talk.google.com
File transfer proxies: proxy.eu.jabber.org
</pre>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/1641/using-google-apps-account-for-gtalk-in-pidgin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnome Style: Shiki Colors+Gnome Colors</title>
		<link>http://fclose.com/b/linux/1522/gnome-style-shiki-colorsgnome-colors/</link>
		<comments>http://fclose.com/b/linux/1522/gnome-style-shiki-colorsgnome-colors/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 12:04:06 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>

		<guid isPermaLink="false">http://zhiqiangma.info/?p=1522</guid>
		<description><![CDATA[The Linux Gnome style that I like is Shiki-color + Gnome colors icon theme. It looks pretty and professional and it is fast. The screen shots: How to install them: Gtk engine: # yum install gtk-murrine-engine Icon theme: # yum install gnome-colors-icon-theme Theme: Dowload from here: http://gnome-look.org/content/show.php/Shiki-Colors?content=86717 Install it by Appearance Preference -&#62; Install. Configuration: [...]]]></description>
			<content:encoded><![CDATA[<p>The Linux Gnome style that I like is Shiki-color + Gnome colors icon theme. It looks pretty and professional and it is fast.</p>
<p>The screen shots:</p>
<p><a href="http://picasaweb.google.com/lh/photo/PiOYAasE39aXRw37E_y-fg?feat=embedwebsite"><img src="http://lh3.ggpht.com/_9GCSB4c6Upw/TAnhrGFxXxI/AAAAAAAAA8E/5MdZqtdLffE/s400/shiki-color.png" alt="" /></a></p>
<p><a href="http://picasaweb.google.com/lh/photo/MTjtyhn4a9dBLe5Eu-slUA?feat=embedwebsite"><img src="http://lh4.ggpht.com/_9GCSB4c6Upw/TAnh8kmo0fI/AAAAAAAAA8Q/pxvHYkScH9k/s400/shiki-color-2.png" alt="" /></a></p>
<h3>How to install them:</h3>
<h3>Gtk engine:</h3>
<pre># yum install gtk-murrine-engine</pre>
<h3>Icon theme:</h3>
<pre># yum install gnome-colors-icon-theme</pre>
<h3>Theme:</h3>
<p>Dowload from here: <a href="http://gnome-look.org/content/show.php/Shiki-Colors?content=86717" target="_blank">http://gnome-look.org/content/show.php/Shiki-Colors?content=86717</a></p>
<p>Install it by<em> Appearance Preference -&gt; Install</em>.</p>
<h3>Configuration:</h3>
<p>Appearance <em>Preference -&gt; Customize</em>:</p>
<p>Controls: Shiki-Wise</p>
<p>Window Border: Shiki-Colors-Metacity</p>
<p>Icons: GNOME-Colors-Wise</p>
<p>Pointer: Bluecurve-inverse</p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/1522/gnome-style-shiki-colorsgnome-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guake: An Excellent Quake Like Drop-down Terminal for Gnome</title>
		<link>http://fclose.com/b/linux/1358/guake-an-excellent-quake-like-drop-down-terminal-for-gnome/</link>
		<comments>http://fclose.com/b/linux/1358/guake-an-excellent-quake-like-drop-down-terminal-for-gnome/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:09:30 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[guake]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://zhiqiangma.info/?p=1358</guid>
		<description><![CDATA[Guake is very fast while stable enough for using! It&#8217;s the excelent quqke like drop-down terminal for gnome. I used yakuake on KDE. It&#8217;s professional but a bit slow. I used tilda also on gnome. But unfortunately, there are too many bugs. Then after I find Guake, I am happy. Guake is invoked with a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://picasaweb.google.com/lh/photo/4q0iY8YmWcn7rYjQqRLfhA?feat=embedwebsite"><img class="alignright" src="http://lh6.ggpht.com/_9GCSB4c6Upw/TAnhhuiG3aI/AAAAAAAAA7w/7aM6aLcU1FA/s400/guake-screenshot2.png" alt="" /></a></p>
<p>Guake is very fast while stable enough for using! It&#8217;s the excelent quqke like drop-down terminal for gnome.</p>
<p>I used yakuake on KDE. It&#8217;s professional but a bit slow. I used tilda also on gnome. But unfortunately, there are too many bugs. Then after I find Guake, I am happy.</p>
<p>Guake is invoked with a single keystroke (F12 as default), and hidden by pressing the same keystroke again. Its design was inspired from consoles in computer games such as Quake and OpenArena which slide down from the top of the screen when a key is pressed, and slide back up when the key is pressed again.</p>
<p>There are three features that I like very much:<br />
1) Fast. It&#8217;s for improving productivity, so the fast the better.<br />
2) Stable. It has bugs. But from my experience of using Guake, It never crash.<br />
3) It does not have a lot of function now. But the functions in 0.4.1 is enough for regular use. I can make it full screen by F11. I can create tabs by Ctrl+Shift+T. I can change tabs by keystroke.</p>
<p>Transparent background is cool. But efficiency is better. A screenshot of my style:</p>
<p><a href="http://picasaweb.google.com/lh/photo/gPQNg735kyF1bqZpdigHkw?feat=embedwebsite"><img src="http://lh6.ggpht.com/_9GCSB4c6Upw/TAnhhc0jOmI/AAAAAAAAA7s/SPG0VG6UnW0/s400/guake-screenshot1.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/1358/guake-an-excellent-quake-like-drop-down-terminal-for-gnome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beautiful Desktop &#8211; Gnome of OSX style on Linux</title>
		<link>http://fclose.com/b/linux/150/beautiful-desktop-gnome-of-osx-style-on-linux/</link>
		<comments>http://fclose.com/b/linux/150/beautiful-desktop-gnome-of-osx-style-on-linux/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 10:18:38 +0000</pubDate>
		<dc:creator>Zhiqiang Ma</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Client config]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[gnome]]></category>

		<guid isPermaLink="false">http://zhiqiangma.info/beautiful-desktop-gnome-of-osx-style-on-linux/</guid>
		<description><![CDATA[Screenshots of the desktop: Metacity theme: Humanoid-OSX-Blend GTK 2.x theme: OSX-theme-mod 0.9 GNOME Icon: OSX 3.3 X11 Mouse theme: MacOSX PantherX Mouse Theme[For Baghira] 1.1 Wallpaper: Elementary The system: Fedora 10 Gnome 2.24.3 Updated on 6 Mar. 2010. Screenshots added.]]></description>
			<content:encoded><![CDATA[<p><strong>Screenshots of the desktop:</strong><br />
<a href="http://picasaweb.google.com/lh/photo/BmotYPN-3cZhvOo8_aRQoA?feat=embedwebsite"><img src="http://lh3.ggpht.com/_9GCSB4c6Upw/SiZLzLaQFVI/AAAAAAAAANM/vVZIcxjyjEk/s400/osx_linux_window.png" alt="" /></a></p>
<p><a href="http://picasaweb.google.com/lh/photo/ng_vQyZPbGHU1qlgM998ug?feat=embedwebsite"><img src="http://lh5.ggpht.com/_9GCSB4c6Upw/SiZQnbqJw1I/AAAAAAAAANg/8rElTmBnQyE/s400/osx_linux_firefox.png" alt="" /></a></p>
<p>Metacity theme: <a href="http://www.gnome-look.org/content/show.php/Humanoid-OSX-Blend?content=85650">Humanoid-OSX-Blend </a></p>
<p>GTK 2.x theme: <a href="http://www.gnome-look.org/content/show.php/OSX-theme-mod?content=63126">OSX-theme-mod 0.9 </a></p>
<p>GNOME Icon: <a href="http://www.gnome-look.org/content/show.php/OSX?content=31618">OSX 3.3 </a></p>
<p>X11 Mouse theme: <a href="http://www.gnome-look.org/content/show.php/MacOSX+PantherX+Mouse+Theme%5BFor+Baghira%5D?content=13524">MacOSX PantherX Mouse Theme[For Baghira] 1.1 </a></p>
<p>Wallpaper: <a href="http://interfacelift.com/wallpaper_beta/downloads/date/any/">Elementary </a></p>
<p><strong>The system:</strong><br />
Fedora 10<br />
Gnome 2.24.3</p>
<p><span style="font-size: x-small">Updated on 6 Mar. 2010. Screenshots added.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://fclose.com/b/linux/150/beautiful-desktop-gnome-of-osx-style-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

