<?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>Alex Amiryan's Linux Blog &#187; howtos</title>
	<atom:link href="http://www.amiryan.org/category/howtos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amiryan.org</link>
	<description>Just sharing my experiance in linux</description>
	<lastBuildDate>Tue, 10 Nov 2009 19:56:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>VirtualBox init.d service autostart script</title>
		<link>http://www.amiryan.org/2009/11/04/virtualbox-init-d-service-autostart-script/</link>
		<comments>http://www.amiryan.org/2009/11/04/virtualbox-init-d-service-autostart-script/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:38:34 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=246</guid>
		<description><![CDATA[I&#8217;ve just installed started using VirtualBox on my Fedora 11 x86_64 and it works just perfectly. I&#8217;ve migrated from VMWare when it figured out that it is unable to work with latest kernel version. So I need to start some virtual machines in the background with system startup. I&#8217;ve made a lot of googling and [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>I&#8217;ve just installed started using VirtualBox on my Fedora 11 x86_64 and it works just perfectly. I&#8217;ve migrated from VMWare when it figured out that it is unable to work with latest kernel version. So I need to start some virtual machines in the background with system startup. I&#8217;ve made a lot of googling and found some dirty scripts that were not meeting my criterias. I&#8217;ve decided to write my own system startup service.</p>
<p>You need to create file named <strong>vbox</strong> in <strong>/etc/sysconfig/</strong> to list the virtual machine names that you want to start with system. Also when shutting down this service will save state to all running VMs. Here is the script:</p>
<p><em><strong>/etc/init.d/vbox</strong></em></p>
<pre class="brush: bash">
#!&#47;bin&#47;sh
#
# chkconfig: - 91 35
# description: Starts and stops vbox autostart VMs.

### BEGIN INIT INFO
# Provides: vbox
# Required-Start: $network $named $vboxdrv
# Required-Stop: $network $named
# Default-Start:
# Default-Stop: 0 1 2 3 4 5 6
# Short-Description: Autostart some Virtual Box VMs
# Description: Autostart some Virtual Box VMs that are mentioned in /etc/sysconfig/vbox file
### END INIT INFO

. /etc/rc.d/init.d/functions

MANAGE_CMD=VBoxManage

[ -r /etc/sysconfig/vbox ] &amp;&amp; . /etc/sysconfig/vbox

prog=$"Virtual Box Machines"

start()
{
	echo -n $"Starting $prog: "
	RETVAL=0

	for vbox_name in ${VBOX_AUTOSTART}
	do
	    SERVS=1
	    echo -n "${vbox_name} "
	    daemon $MANAGE_CMD startvm "${vbox_name}" -type vrdp &gt;/dev/null 2&gt;&amp;1
	    RETVAL=$?
	    [ "$RETVAL" -eq 0 ] || break
	done
	if [ -z "$SERVS" ]; then
	    echo -n "no virtual machines configured "
	    failure
	    RETVAL=6
	else
	    if [ "$RETVAL" -eq 0 ]; then
		success $"vbox startup"
		touch /var/lock/subsys/vbox
	    else
		failure $"vbox start"
	    fi
	fi
	echo
	return "$RETVAL"
}

stop()
{
	echo -n $"Shutting down $prog: "
	for vbox_name in ${VBOX_AUTOSTART}
	do
	    echo -n "${vbox_name} "
	    runuser root -c "$MANAGE_CMD -q controlvm "${vbox_name}" savestate" &gt;/dev/null 2>&#038;1
	done
	RETVAL=$?
	[ "$RETVAL" -eq 0 ] &amp;&amp; success $"vbox shutdown" || \
	    failure $"vbox shutdown"
	echo
	[ "$RETVAL" -eq 0 ] &amp;&amp; rm -f /var/lock/subsys/vbox
	return "$RETVAL"
}

status()
{
	for vbox_name in ${VBOX_AUTOSTART}
	do
	    echo -n "${vbox_name} "
	    $MANAGE_CMD showvminfo "${vbox_name}"|grep "^State:\s*.*$"
	done
}

case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart|force-reload)
	stop
	start
	;;
  status)
	status
	;;
  *)
	echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&#038;2
	exit 3
	;;
esac

:</pre>
<p>And here is configuration file:</p>
<p><em><strong>/etc/sysconfig/vbox</strong></em></p>
<pre class="brush:bash"># Virtual box machines to autostart
# Example to start 2 machines
#	VBOX_AUTOSTART = "MachineName1 MachineName2"

# VBOX_AUTOSTART=""</pre>
<p>Thats it. If you have any questions do not hesitate to contact me.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/11/04/virtualbox-init-d-service-autostart-script/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>SOLVED: Adobe AIR installation problem on Fedora 10 x86_64</title>
		<link>http://www.amiryan.org/2009/05/25/adobe-air-installation-problem-on-fedora-10-x86-64/</link>
		<comments>http://www.amiryan.org/2009/05/25/adobe-air-installation-problem-on-fedora-10-x86-64/#comments</comments>
		<pubDate>Mon, 25 May 2009 14:40:31 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=238</guid>
		<description><![CDATA[Adobe AIR installation fails on Fedora 10 x86_64 without any explanations. It just says: An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator. The reason is some missing i386 packages. You just have to run following command: yum install gtk2-devel.i386 nss.i386 libxml2-devel.i386 libxslt.i386 gnome-keyring.i386 rpm-devel.i386 [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>Adobe AIR installation fails on Fedora 10 x86_64 without any explanations. It just says:</p>
<pre class="brush: text">An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator.</pre>
<p>The reason is some missing i386 packages. You just have to run following command:</p>
<pre class="brush: bash">yum install gtk2-devel.i386 nss.i386 libxml2-devel.i386 libxslt.i386 gnome-keyring.i386 rpm-devel.i386</pre>
<p>You may already have some these packages. Don&#8217;t worry about that, yum will skip them. After yum finishes, retry installation of AIR, it should work now.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/05/25/adobe-air-installation-problem-on-fedora-10-x86-64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto delete all .svn folders from SVN working directory</title>
		<link>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/</link>
		<comments>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:53:14 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=233</guid>
		<description><![CDATA[To delete all .svn folders from SVN working directory for releasing folder from SVN just do this simple steps. Create new file in /usr/local/bin with name svnrm with following content #!&#47;bin&#47;sh find . -name .svn -print0 &#124; xargs -0 rm -rf Save it. From now on you can execute svnrm command in your working directory [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>To delete all <em><strong>.svn</strong></em> folders from SVN working directory for releasing folder from SVN just do this simple steps.<br />
Create new file in <em>/usr/local/bin</em> with name <strong><em>svnrm</em></strong> with following content</p>
<pre class="brush: bash">#!&#47;bin&#47;sh
find . -name .svn -print0 | xargs -0 rm -rf</pre>
<p>Save it. From now on you can execute <strong><em>svnrm</em></strong> command in your working directory and it will delete all .svn folders at once.<br />
Have fun!</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugfix: Howto turn off gpg-agent usage in Enigmail in Thunderbird</title>
		<link>http://www.amiryan.org/2009/04/22/bugfix-howto-turn-off-gpg-agent-usage-in-enigmail-thunderbird/</link>
		<comments>http://www.amiryan.org/2009/04/22/bugfix-howto-turn-off-gpg-agent-usage-in-enigmail-thunderbird/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 13:08:22 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[enigmail]]></category>
		<category><![CDATA[gpg]]></category>
		<category><![CDATA[gpg-agent]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=192</guid>
		<description><![CDATA[There is some bug in Enigmail v0.95.7 for Thunderbird. If you untick the checkbox &#8220;Use gpg-agent for passphrases&#8221; in Advanced tab of Advanced settings menu, Thunderbird in anyway will try to use gpg-agent if GPG_AGENT_INFO environment variable is set. The reason is some little bug in Enigmail source code. To fix it, first close Thunderbird, [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>There is some bug in Enigmail v0.95.7 for Thunderbird. If you untick the checkbox &#8220;Use gpg-agent for passphrases&#8221; in Advanced tab of Advanced settings menu, Thunderbird in anyway will try to use gpg-agent if <strong>GPG_AGENT_INFO</strong> environment variable is set.  The reason is some little bug in Enigmail source code. To fix it, first close Thunderbird, then just open <strong><em>.thunderbird</em></strong> folder in your home directory, search for <strong><em>enigmail.js</em></strong> file. It have to be in <strong><em>extensions</em></strong> folder in one of the random name folders. When you have found the <strong><em>enigmail.js</em></strong> file open it with your favorite text editor and find line number <strong>1368</strong>. It have to be this:</p>
<pre class="brush: javascript">useAgent= (this.gpgAgentInfo.envStr.length&gt;0 || this.prefBranch.getBoolPref("useGpgAgent"));</pre>
<p>Change the <strong>||</strong> sign to <strong>&amp;&amp;</strong>. After change this line have to look like this:</p>
<pre class="brush: javascript">useAgent= (this.gpgAgentInfo.envStr.length&gt;0 &amp;&amp; this.prefBranch.getBoolPref("useGpgAgent"));</pre>
<p>Save file. Now open Thunderbird and enjoy.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/22/bugfix-howto-turn-off-gpg-agent-usage-in-enigmail-thunderbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto recursively add unversioned files into SVN repository</title>
		<link>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/</link>
		<comments>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:29:02 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=189</guid>
		<description><![CDATA[Because svn add command does not support recursive addition of unversioned files you can use this little script to do it. Create new file in /usr/local/bin with name svnadd with following content #!&#47;bin&#47;sh svn status &#124; perl -ne 's/^\?\s+(\S.+)$/\1/g;chomp;system("svn add \"$_\"");' Save it. From now on you can execute svnadd command in your working directory.]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>Because <em>svn add</em> command does not support recursive addition of unversioned files you can use this little script to do it.<br />
Create new file in <em>/usr/local/bin</em> with name <strong><em>svnadd</em></strong> with following content</p>
<pre class="brush: bash">#!&#47;bin&#47;sh
svn status | perl -ne 's/^\?\s+(\S.+)$/\1/g;chomp;system("svn add \"$_\"");'</pre>
<p>Save it. From now on you can execute <strong><em>svnadd</em></strong> command in your working directory.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Howto run Gajim with root privileges</title>
		<link>http://www.amiryan.org/2009/04/16/howto-run-gajim-with-root-privileges/</link>
		<comments>http://www.amiryan.org/2009/04/16/howto-run-gajim-with-root-privileges/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:53:05 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[gajim]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=185</guid>
		<description><![CDATA[Gajim 0.12.1 says that he can&#8217;t run with root privileges. This is new feature that appeared in Fedora 10. In earlier versions it was normaly running under root. Anyway let&#8217;s turn off this feature in case that you need to run Gajim under root. Open /usr/bin/gajim with your favorite text editor, find 24th line and [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>Gajim 0.12.1 says that he can&#8217;t run with root privileges. This is new feature that appeared in Fedora 10. In earlier versions it was normaly running under root. Anyway let&#8217;s turn off this feature in case that you need to run Gajim under root.</p>
<p>Open /usr/bin/gajim with your favorite text editor, find 24th line and just comment out this part of code:</p>
<pre class="brush: bash">if test $(id -u) -eq 0; then
echo "You must not launch Gajim as root, it is INSECURE"
exit 1
fi</pre>
<p>After commenting it should look like</p>
<pre class="brush: bash">#if test $(id -u) -eq 0; then
#	echo "You must not launch Gajim as root, it is INSECURE"
#	exit 1
#fi</pre>
<p>Save file. Thats it.<br />
Happy chatting <img src='http://www.amiryan.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/16/howto-run-gajim-with-root-privileges/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SOLVED: Linux software RAID 5 too slow</title>
		<link>http://www.amiryan.org/2009/04/10/solved-linux-software-raid-5-too-slow/</link>
		<comments>http://www.amiryan.org/2009/04/10/solved-linux-software-raid-5-too-slow/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 21:02:09 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://alexamiryan.wordpress.com/?p=155</guid>
		<description><![CDATA[In this article I am going to tell about my experience with Linux software RAID. So I had a ASUS P6T motherboard which has Intel ICH10R raid controller, 3x 1 Tb SATA 2 HDDs and Intel Core i7 920 processor. So I wanted to install Fedora 10 on that machine. After configuring RAID 5 in [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>In this article I am going to tell about my experience with Linux software RAID.<br />
So I had a ASUS P6T motherboard which has Intel ICH10R raid controller, 3x 1 Tb SATA 2 HDDs and Intel Core i7 920 processor. So I wanted to install Fedora 10 on that machine.<br />
After configuring RAID 5 in the BIOS I booted the Fedora 10 installation DVD to start the installation. BUT! Suddenly I saw that Anaconda see 3 separate hard drives instead of 1 RAID device. After some googleing I figured out that my motherboard don&#8217;t have real RAID controller. Instead it is fakeraid controller. It is just software raid which software is located in BIOS. So I decided to use linux software raid, because it is definitely better than the from ASUS.<br />
So installed Fedora 10 with linux software RAID 5 with LUKS encryption. After installation machine started to work very slowly. I thought it so because of the encryption, but after some googleing I understood that the encryption can&#8217;t slow down the machine that way. The thing was when you newly create RAID 5 array it needs to build the 3rd hard drive and it take a lot of time. It took from me approximately 4 hours to finish that operation on 1 Tb hard drives. You can check the rebuild status at any time invoking one of the following commands:</p>
<pre class="brush: bash"># cat /proc/mdstat</pre>
<p>or</p>
<pre class="brush: bash"># mdadm --detail /dev/md0</pre>
<p>After rebuild was over and after some tunings (see tuning parameters below) I had ~90 Mb/s write and ~200 Mb/s read.</p>
<p>My tuning parameters was:</p>
<pre class="brush: bash">echo 32768 &gt; /sys/block/md0/md/stripe_cache_size</pre>
<pre class="brush: bash">blockdev --setra 65536 /dev/md0</pre>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/10/solved-linux-software-raid-5-too-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Workstation 6.5 segfault on Fedora 10 x86_64</title>
		<link>http://www.amiryan.org/2009/03/22/vmware-workstation-65-segfault-on-fedora-10-x86_64/</link>
		<comments>http://www.amiryan.org/2009/03/22/vmware-workstation-65-segfault-on-fedora-10-x86_64/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 21:27:44 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://alexamiryan.wordpress.com/?p=167</guid>
		<description><![CDATA[VMWare Workdstation 6.5 is causing segmentation fault on Fedora 10 x86_64 when trying to execute it. The message is: /usr/lib/vmware/bin/launcher.sh: line 231: 13748 Segmentation fault "$binary" "$@" To solve the problem you need to do this: # mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old # vmware-modconfig --console --install-all After build is over start VMWare, it should work now. Taken [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>VMWare Workdstation 6.5 is causing segmentation fault on Fedora 10 x86_64 when trying to execute it. The message is:</p>
<pre class="brush: bash">/usr/lib/vmware/bin/launcher.sh: line 231: 13748 Segmentation fault      "$binary" "$@"</pre>
<p>To solve the problem you need to do this:</p>
<pre class="brush: bash"># mv /usr/lib/vmware/modules/binary /usr/lib/vmware/modules/binary.old
# vmware-modconfig --console --install-all</pre>
<p>After build is over start VMWare, it should work now.</p>
<address>Taken from <a href="http://www.jerrypau.ca/?p=63">http://www.jerrypau.ca/?p=63</a></address>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/03/22/vmware-workstation-65-segfault-on-fedora-10-x86_64/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GDM root login in Fedora 10</title>
		<link>http://www.amiryan.org/2009/03/16/gdm-root-login-in-fedora-10/</link>
		<comments>http://www.amiryan.org/2009/03/16/gdm-root-login-in-fedora-10/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 16:25:10 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>

		<guid isPermaLink="false">http://alexamiryan.wordpress.com/?p=157</guid>
		<description><![CDATA[To enable logging in with root user on fedora 10 system simply edit file /etc/pam.d/gdm and comment out line: auth required pam_succeed_if.so user != root quiet Thats it]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>To enable logging in with root user on fedora 10 system simply edit file <strong>/etc/pam.d/gdm</strong> and comment out line:</p>
<pre class="brush: bash">auth required pam_succeed_if.so user != root quiet</pre>
<p>Thats it <img src='http://www.amiryan.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/03/16/gdm-root-login-in-fedora-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 10 mouse pointer problem</title>
		<link>http://www.amiryan.org/2009/03/13/fedora-10-mouse-pointer-problem/</link>
		<comments>http://www.amiryan.org/2009/03/13/fedora-10-mouse-pointer-problem/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 12:53:18 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[howtos]]></category>
		<category><![CDATA[anaconda]]></category>
		<category><![CDATA[cursor]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://alexamiryan.wordpress.com/?p=150</guid>
		<description><![CDATA[I&#8217;ve just discovered that when intalling Fedora 10 on some computer causes this problem. Problem start from instalation: there is no pointer for mouse in Anaconda and further in the system. It is a little bit dificult but install system with keaboard only, then when system installed and running do the following steps to fix [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>I&#8217;ve just discovered that when intalling Fedora 10 on some computer causes this problem. Problem start from instalation: there is no pointer for mouse in Anaconda and further in the system. It is a little bit dificult but install system with keaboard only, then when system installed and running do the following steps to fix this issue:</p>
<pre class="brush: bash"># yum install system-config-display</pre>
<p>Open system-config-display and just press &#8220;OK&#8221; button. It will generate xorg.conf file in /etc/X11.<br />
Then open /etc/X11/xorg.conf and in section &#8220;Device&#8221; add following two lines</p>
<pre class="brush: bash">
Option     "HWCursor"     "off"
Option     "SWcursor"     "True"</pre>
<p>Save file and restart your X server. It have to work now.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/03/13/fedora-10-mouse-pointer-problem/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
