<?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>Quick Tweaks &#187; xorg</title>
	<atom:link href="http://www.quicktweaks.com/tag/xorg/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quicktweaks.com</link>
	<description>Quick Tweaks For Your System</description>
	<lastBuildDate>Fri, 27 Nov 2009 22:29:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Run your virtual OS directly from GDM in Ubuntu</title>
		<link>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/</link>
		<comments>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 16:12:46 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[xorg]]></category>
		<category><![CDATA[xserver]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=154</guid>
		<description><![CDATA[If you regularly run a couple of OS from your VirtualBox and want to login to those OS directly from GDM session, here is a quick way to do it. For this to work you should have already set up your VirtualBox. Here we won't be talking about how to setup VirtualBox but only how to login to a virtual OS from GDM session. 


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you regularly run a couple of OS from your VirtualBox and want to login to those OS directly from GDM session, here is a quick way to do it. For this to work you should have already set up your VirtualBox. Here we won&#8217;t be talking about how to setup VirtualBox but only how to login to a virtual OS from GDM session.</p>
<p><span id="more-154"></span></p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_187" class="wp-caption aligncenter" style="width: 472px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-187" title="windowsgdm" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/windowsgdm.png" alt="Windows XP GDM" width="462" height="384" /></dt>
<dd class="wp-caption-dd">Windows XP GDM</dd>
<dt class="wp-caption-dt"></dt>
</dl>
</div>
<p><span style="color: #ff6600;">1. Create a bash script with the following contents</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><code>#!/bin/bash<br />
VirtualBox -startvm <strong><span style="color: #000000;"><em>NameOfYourVirtualOS</em></span></strong></code></p>
<p>Replace <em><strong><span style="text-decoration: line-through;">y</span><span style="text-decoration: line-through;">ourSUPassword</span></strong></em><span style="text-decoration: line-through;"> with your password, and </span><em><strong>NameOfYourVirtualOS</strong></em> with the name that you have given to your virtual OS in VirtualBox.</p>
<p><span style="color: #ff6600;">2. Name it something like <strong><em>windowsXPGDM</em></strong> (if you want to run Windows XP), make it executable, and then copy it to /usr/bin.</span></p>
<p><code>$ chmod 755 windowsXP</code>GDM<br />
<code>$ sudo cp windowsXPGDM /usr/bin</code></p>
<p><span style="color: #ff6600;">2. Go to <strong><em>/usr/share/xsessions</em></strong> and create a new file with the following contents:</span></p>
<p><code>[Desktop Entry]<br />
Encoding=UTF-8<br />
Name=WindowsXP<br />
Comment=My Virtual WindowsXP<br />
Exec=/usr/bin/windowsXPGDM<br />
Icon=<br />
Type=Application </code></p>
<p><span style="color: #ff6600;">3. Save it with a name something like <em><strong>windowsXP.desktop</strong></em>.</span></p>
<p><span style="color: #ff6600;">4. Log out and you will see a new entry WindowsXP in your GDM session. You can now directly open VirtualBox session without even logging in to your Ubuntu machine.</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Fixing XServer After Hardy Updates</title>
		<link>http://www.quicktweaks.com/2008/04/15/fixing-xserver-after-hardy-updates/</link>
		<comments>http://www.quicktweaks.com/2008/04/15/fixing-xserver-after-hardy-updates/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 19:12:14 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[xserver]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[graphics card]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=10</guid>
		<description><![CDATA[Since I loaded Hardy into my system a month ago, it has been my routine job to fix xserver after nearly every updates. After many desperate attempts to fix the things, I&#8217;ve found a way to fix it. I don&#8217;t claim that whatever I&#8217;ve done should work for others but it is better to give [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Since I loaded Hardy into my system a month ago, it has been my routine job to fix xserver after nearly every updates. After many desperate attempts to fix the things, I&#8217;ve found a way to fix it. I don&#8217;t claim that whatever I&#8217;ve done should work for others but it is better to give it a try once rather than ending up with reinstalling Ubuntu. Here is what I do:<br />
<span id="more-12"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<ol>
<li>I always backup my <em>/etc/X11/xorg.conf </em>file to something like <em>/etc/X11/xorg.conf.bckup</em></li>
<li>When something is broken, I often find that my <em>xorg.conf</em> file has been modified. To find out whether there is any modification, I issue:<br />
<em><strong>stat /etc/X11/xorg.conf</strong></em></li>
<li>If there is any, I list the changes:<br />
<strong><em>diff /etc/X11/xorg.conf /etc/X11/xorg.conf.bckup -y &#8211;suppress-common-lines</em></strong></li>
<li>I then undo the modifications. Those who aren&#8217;t comfortable with command lines can try <em><a title="Meld Home Page" href="http://meld.sourceforge.net/" target="_blank">meld</a></em>. It is a graphical frontend for <em>diff</em> command. It couldn&#8217;t be more easier to merge/remove changes in two versions of same file. It is in the Universe repository so you should get it by issuing:<br />
<em><strong>sudo apt-get install meld</strong></em></li>
<li>After the modifications have been undone, I restart Hardy. Most of the time I get my xserver fixed with everything working fine &#8211; color depth, screen resolution etc.</li>
<li>If restarting the system does nothing other than greeting with that dialog box &#8211; Ubuntu is running in low graphics mode, then i try to reconfigure xserver by issuing:<br />
<em><strong>sudo dpkg reconfigure xserver-org</strong></em><br />
It will ask you a couple of questions, clicking on default option will be OK</li>
<li>After it gives a &#8217;successful&#8217; message, time to restart. I can see the changes immediately &#8211; login screen spanning to my whole screen.</li>
<li>I need to enable the drivers for my card by going to <em>System&gt;Administration&gt;Hardware Drivers</em></li>
<li>Finally, enabling my nvidia card, restarting once again and going to <em>System&gt;Preference&gt;Screen Resolution</em> to set the correct resolution, gives my pretty looking xserver back again.</li>
<li>The next important task is to create the backup of my <em>/etc/X11/xorg.conf</em> file again.</li>
</ol>
<p></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/04/15/fixing-xserver-after-hardy-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Accidental Touchpad Tapping While Typing</title>
		<link>http://www.quicktweaks.com/2008/04/08/disable-accidental-touchpad-tapping-while-typing/</link>
		<comments>http://www.quicktweaks.com/2008/04/08/disable-accidental-touchpad-tapping-while-typing/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 19:02:29 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[touchpad]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[SHMConfig]]></category>
		<category><![CDATA[synaptics]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=4</guid>
		<description><![CDATA[Often when you are typing, your thumb touches the touchpad and the typing start from another position. Follow these steps to disable accidental touchpad tapping:





Enable SHMConfig in your xorg.conf file. Press Alt+F2. It will bring you the Run Application dialog box.
Type following and hit enter:
gksu gedit /etc/X11/xorg.conf
It will ask you for your super user password. [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Often when you are typing, your thumb touches the touchpad and the typing start from another position. Follow these steps to disable accidental touchpad tapping:<br />
<span id="more-6"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<ol>
<li>Enable SHMConfig in your xorg.conf file. Press Alt+F2. It will bring you the Run Application dialog box.</li>
<li>Type following and hit enter:<br />
<strong><em>gksu gedit /etc/X11/xorg.conf</em></strong></li>
<li>It will ask you for your super user password. Give it!</li>
<li><em>xorg.conf </em>should open in <em>gedit</em> file editor</li>
<li>Look for following lines:<br />
<em>Section &#8220;InputDevice&#8221;<br />
Identifier    &#8220;Synaptics Touchpad&#8221;&#8230;<br />
&#8230;<br />
EndSection</em></li>
<li>Add the following line just before the line EndSection<br />
<strong><em>Option        &#8220;SHMConfig&#8221;    &#8220;true&#8221;</em></strong></li>
<li>Save the file</li>
<li>Open a Terminal</li>
<li>Type the following command<br />
<strong><em>syndaemon -d -t -i 5</em></strong><br />
<em>-d </em>runs the command in background<br />
<em>-t </em>disables only tapping and scrolling but not mouse movements<br />
<em>-i </em>sets the idle time in seconds after the last key has been pressed. The default is 2 seconds. I was convenient with 5 secs. It means if I don&#8217;t press any key for 5 secs, the touchpad will be enabled.</li>
</ol>
<p>Now to run make the command as a startup command follow the following steps:</p>
<ol>
<li>Go to <em>System&gt;Preference&gt;Sessions</em></li>
<li>Click on <em>Add</em> button.</li>
<li>Fill up the following data in the dialog box that appears:<br />
<em>Name: { Name of the command such as: Disable Touchpad }<br />
Command: syndaemon -d -t -i 5<br />
Comment: { Any comments such as: Disables touchpad&#8217;s tapping functionality while typing }</em></li>
<li>Click on OK and Close the Sessions dialog box</li>
</ol>
<p>Enjoy tapping less typing <img src='http://www.quicktweaks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/04/08/disable-accidental-touchpad-tapping-while-typing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.978 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-01-08 22:20:20 -->
<!-- Compression = gzip -->